From 5c942bd5972afee9a68cb15c14aa83b4b0aaf82d Mon Sep 17 00:00:00 2001 From: Tudor Brindus Date: Sat, 23 May 2020 11:13:11 -0400 Subject: [PATCH] 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. --- util/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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[] = {