summaryrefslogtreecommitdiffstats
path: root/src/color.c
diff options
context:
space:
mode:
authorandmarti1424 <andmarti@gmail.com>2017-03-28 23:36:14 -0300
committerandmarti1424 <andmarti@gmail.com>2017-03-28 23:36:14 -0300
commite095c82be82550c6dc8895e1b7cca9e17ecfaf0a (patch)
tree3b61307d7c857c6a9881b3ee2e600a86cd56cd3e /src/color.c
parente46c361296e7073a81f556821a413a5651c5fa52 (diff)
Clean some code
Diffstat (limited to 'src/color.c')
-rw-r--r--src/color.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/color.c b/src/color.c
index bbb8eab..2c243e9 100644
--- a/src/color.c
+++ b/src/color.c
@@ -39,10 +39,11 @@ void start_default_ucolors() {
// Set some colors attributes
ucolors[ DEFAULT ].fg = WHITE;
ucolors[ DEFAULT ].bg = BLACK;
- ucolors[ HEADINGS ].fg = BLACK;
- ucolors[ HEADINGS ].bg = CYAN;
- ucolors[ WELCOME ].fg = MAGENTA;
+ ucolors[ HEADINGS ].fg = WHITE;
+ ucolors[ HEADINGS ].bg = RED;
+ ucolors[ WELCOME ].fg = RED;
ucolors[ WELCOME ].bg = BLACK;
+ ucolors[ WELCOME ].bold = 1;
ucolors[ CELL_SELECTION ].fg = BLUE; // cell selection in headings
ucolors[ CELL_SELECTION ].bg = WHITE;
@@ -65,9 +66,8 @@ void start_default_ucolors() {
ucolors[ INFO_MSG ].fg = CYAN;
ucolors[ INFO_MSG ].bg = BLACK;
ucolors[ INFO_MSG ].bold = 1;
- ucolors[ ERROR_MSG ].fg = RED;
- ucolors[ ERROR_MSG ].bg = WHITE;
- ucolors[ ERROR_MSG ].reverse = 1;
+ ucolors[ ERROR_MSG ].bg = RED;
+ ucolors[ ERROR_MSG ].fg = WHITE;
ucolors[ ERROR_MSG ].bold = 1;
ucolors[ MODE ].fg = WHITE;