summaryrefslogtreecommitdiffstats
path: root/src/color.c
diff options
context:
space:
mode:
authorandmarti1424 <andmarti@gmail.com>2017-02-10 19:24:09 -0300
committerandmarti1424 <andmarti@gmail.com>2017-02-10 19:24:09 -0300
commitb1903a2fe627031d360d55bdceb0fe438c4f2d86 (patch)
tree46c970582c685f9152a0273a8e95482e8d53c967 /src/color.c
parentf1596a0628503acf85e2694a1ddad15ecbda89cf (diff)
Change default color of headings
Diffstat (limited to 'src/color.c')
-rw-r--r--src/color.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/color.c b/src/color.c
index d49c7aa..ee2bd5e 100644
--- a/src/color.c
+++ b/src/color.c
@@ -39,8 +39,8 @@ void start_default_ucolors() {
// Set some colors attributes
ucolors[ DEFAULT ].fg = WHITE;
ucolors[ DEFAULT ].bg = BLACK;
- ucolors[ HEADINGS ].fg = WHITE;
- ucolors[ HEADINGS ].bg = RED;
+ ucolors[ HEADINGS ].fg = BLACK;
+ ucolors[ HEADINGS ].bg = CYAN;
ucolors[ WELCOME ].fg = CYAN;
ucolors[ WELCOME ].bg = BLACK;
ucolors[ CELL_SELECTION ].fg = BLUE; // cell selection in headings
@@ -74,10 +74,10 @@ void start_default_ucolors() {
ucolors[ MODE ].bg = BLACK;
ucolors[ MODE ].bold = 1;
- ucolors[ CELL_ID ].fg = BLUE;
+ ucolors[ CELL_ID ].fg = RED;
ucolors[ CELL_ID ].bg = BLACK;
ucolors[ CELL_ID ].bold = 1;
- ucolors[ CELL_FORMAT ].fg = GREEN;
+ ucolors[ CELL_FORMAT ].fg = RED;
ucolors[ CELL_FORMAT ].bg = BLACK;
ucolors[ CELL_CONTENT ].fg = CYAN;
ucolors[ CELL_CONTENT ].bg = BLACK;