client: fix colors to make grey really grey

\e[1;30m is bold black, often, but not always displayed bright black or
bold bright black. In case it is displayed as real black it is
invisible. \e[1;90m is explicit bold bright black.

\e[37m is white, therefore it is not suitable to be labeled as GREY,
which is \e[90m
This commit is contained in:
Vladimír Dudr 2022-03-16 10:06:33 +01:00 committed by Denis Kenzior
parent 7bbcb67892
commit 1d348b131d
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@
struct command;
struct command_family;
#define COLOR_BOLDGRAY "\x1B[1;30m"
#define COLOR_GRAY "\x1b[37m"
#define COLOR_BOLDGRAY "\x1B[1;90m"
#define COLOR_GRAY "\x1b[90m"
#define COLOR_GREEN "\x1b[32m"
#define COLOR_RED "\x1B[0;91m"
#define COLOR_BLUE "\x1B[94m"