aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2020-05-23 11:11:50 -0400
committerFurkan Sahin <furkan-dev@proton.me>2020-05-23 11:11:50 -0400
commitdfc02f676301604ee680a33c884e70d8311c5a81 (patch)
tree72de04850ac1dd80ecf036557ee3806cde182203
parent34e076cef634a2254cfc49af430f87bff668f05a (diff)
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.
-rw-r--r--common/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/log.c b/common/log.c
index 9e79c4e6..2acf2e57 100644
--- a/common/log.c
+++ b/common/log.c
@@ -42,7 +42,7 @@ static const char *verbosity_colors[] = {
[SWAY_SILENT] = "",
[SWAY_ERROR ] = "\x1B[1;31m",
[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,