From: Andre Noll Date: Sun, 5 Jan 2025 19:56:28 +0000 (+0100) Subject: gui: Switch to white foreground for command output. X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=ae65f5eb76224be746268c4c870cb0efd705fd2c;p=paraslash.git gui: Switch to white foreground for command output. The new color scheme is easier to read, and is more pleasant on the eye. --- 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 */