]> git.tue.mpg.de Git - paraslash.git/commitdiff
gui: Switch to white foreground for command output.
authorAndre Noll <maan@tuebingen.mpg.de>
Sun, 5 Jan 2025 19:56:28 +0000 (20:56 +0100)
committerAndre Noll <maan@tuebingen.mpg.de>
Wed, 22 Jan 2025 20:11:50 +0000 (21:11 +0100)
The new color scheme is easier to read, and is more pleasant on the eye.

gui_theme.c

index ab5e4292e971b41ac0ea72648629dd96120869af..7899eeee1e2a9df5e7236ba17c3c606dfe90bb13 100644 (file)
@@ -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 */