From 38358e2e2a498bf37d118e32c882907b654f12a9 Mon Sep 17 00:00:00 2001 From: mwalker33 Date: Wed, 30 Sep 2020 07:28:05 +1000 Subject: [PATCH] Update cliparser.c Change white to default user color --- client/deps/cliparser/cliparser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/deps/cliparser/cliparser.c b/client/deps/cliparser/cliparser.c index 10055a420..16a276d72 100644 --- a/client/deps/cliparser/cliparser.c +++ b/client/deps/cliparser/cliparser.c @@ -24,8 +24,8 @@ #define _ExampleColor_(s) _YELLOW_(s) #define _CommandColor_(s) _RED_(s) #define _DescriptionColor_(s) _CYAN_(s) -#define _ArgColor_(s) _WHITE_(s) -#define _ArgHelpColor_(s) _WHITE_(s) +#define _ArgColor_(s) s +#define _ArgHelpColor_(s) s // End Custom Colors // Option width set to 30 to allow option descriptions to align. approx line 74 // Example width set to 50 to allow help descriptions to align. approx line 93