From fe25961075ecd16d54714dea6dae44b14c98ee3e Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 5 Jan 2025 20:56:28 +0100 Subject: [PATCH] gui: Switch to white foreground for command output. The new color scheme is easier to read, and is more pleasant on the eye. --- gui_theme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui_theme.c b/gui_theme.c index ab5e4292..aa1f1522 100644 --- a/gui_theme.c +++ b/gui_theme.c @@ -76,7 +76,7 @@ static void init_theme_colorful_blackness(struct gui_theme *t) t->cmd.bg = COLOR_BLACK; t->cmd.fg = COLOR_YELLOW; t->output.bg = COLOR_BLACK; - t->output.fg = COLOR_CYAN; + t->output.fg = COLOR_WHITE; t->msg.bg = COLOR_BLACK; t->msg.fg = COLOR_WHITE; t->err_msg.bg = COLOR_RED; -- 2.39.5