From ae65f5eb76224be746268c4c870cb0efd705fd2c 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui_theme.c b/gui_theme.c index ab5e4292..7899eeee 100644 --- a/gui_theme.c +++ b/gui_theme.c @@ -76,9 +76,9 @@ 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->msg.fg = COLOR_CYAN; t->err_msg.bg = COLOR_RED; t->err_msg.fg = COLOR_WHITE; t->sep.bg = COLOR_BLACK; /* color of the separator */ -- 2.39.5