mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 07:51:28 +00:00
common/log: use bright black rather than black for SWAY_DEBUG
On some terminals under default settings, black is truly rendered as `#000`, making it unreadable when the background is also black. Closes #5141.
This commit is contained in:
parent
848a6fdb21
commit
c632d47bf8
|
@ -42,7 +42,7 @@ static const char *verbosity_colors[] = {
|
||||||
[SWAY_SILENT] = "",
|
[SWAY_SILENT] = "",
|
||||||
[SWAY_ERROR ] = "\x1B[1;31m",
|
[SWAY_ERROR ] = "\x1B[1;31m",
|
||||||
[SWAY_INFO ] = "\x1B[1;34m",
|
[SWAY_INFO ] = "\x1B[1;34m",
|
||||||
[SWAY_DEBUG ] = "\x1B[1;30m",
|
[SWAY_DEBUG ] = "\x1B[1;90m",
|
||||||
};
|
};
|
||||||
|
|
||||||
static void timespec_sub(struct timespec *r, const struct timespec *a,
|
static void timespec_sub(struct timespec *r, const struct timespec *a,
|
||||||
|
|
Loading…
Reference in a new issue