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=fe25961075ecd16d54714dea6dae44b14c98ee3e;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..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;