mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
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:
parent
7bbcb67892
commit
1d348b131d
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user