aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorTudor Brindus <me@tbrindus.ca>2020-05-23 11:13:11 -0400
committerSimon Ser <contact@emersion.fr>2020-05-24 14:53:40 +0200
commit5c942bd5972afee9a68cb15c14aa83b4b0aaf82d (patch)
treee83fc17cd786f4c4a1307824b3e767ed8e0aae5e /util
parentaf2f69e6c1578f848d3e3222804444ff9cff83df (diff)
util/log: use bright black rather than black for WLR_DEBUG
On some terminals under default settings, black is truly rendered as `#000`, making it unreadable when the background is also black. Refs swaywm/sway#5141.
Diffstat (limited to 'util')
-rw-r--r--util/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/log.c b/util/log.c
index 7f27b5eb..17655d30 100644
--- a/util/log.c
+++ b/util/log.c
@@ -17,7 +17,7 @@ static const char *verbosity_colors[] = {
[WLR_SILENT] = "",
[WLR_ERROR] = "\x1B[1;31m",
[WLR_INFO] = "\x1B[1;34m",
- [WLR_DEBUG] = "\x1B[1;30m",
+ [WLR_DEBUG] = "\x1B[1;90m",
};
static const char *verbosity_headers[] = {