summaryrefslogtreecommitdiffstats
path: root/src/color.c
diff options
context:
space:
mode:
authorAndrés <andmarti@gmail.com>2021-03-20 12:18:35 -0300
committerAndrés <andmarti@gmail.com>2021-03-20 12:18:35 -0300
commite3e6e1d6e1818dfa9ca74d6f686f8bd7ccb65462 (patch)
tree1e3933b9998d4e1a3f5151697273cd60c7fb2cd3 /src/color.c
parentc12c527424e9d57a79674bb6edc4f4a7de10327e (diff)
Changed headings fg to black. Cursor bg to yellow
Diffstat (limited to 'src/color.c')
-rw-r--r--src/color.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/color.c b/src/color.c
index ff370c5..5509018 100644
--- a/src/color.c
+++ b/src/color.c
@@ -99,10 +99,8 @@ void start_default_ucolors() {
ucolors[ DEFAULT ].bg = DEFAULT_COLOR;
ucolors[ HEADINGS ].bg = YELLOW;
ucolors[ HEADINGS ].fg = BLACK;
- ucolors[ HEADINGS ].dim = 1;
ucolors[ HEADINGS_ODD ].bg = YELLOW;
ucolors[ HEADINGS_ODD ].fg = BLACK;
- ucolors[ HEADINGS_ODD ].dim = 1;
ucolors[ GRID_PAIR ].fg = WHITE;
ucolors[ GRID_PAIR ].bg = DEFAULT_COLOR;
ucolors[ GRID_ODD ].fg = WHITE;
@@ -114,7 +112,7 @@ void start_default_ucolors() {
ucolors[ CELL_SELECTION ].fg = YELLOW;
ucolors[ CELL_SELECTION ].bold = 0;
ucolors[ CELL_SELECTION_SC ].fg = BLACK; // cell selection in spreadsheet
- ucolors[ CELL_SELECTION_SC ].bg = WHITE;
+ ucolors[ CELL_SELECTION_SC ].bg = YELLOW;
ucolors[ NUMB ].fg = CYAN;
ucolors[ NUMB ].bg = DEFAULT_COLOR;
ucolors[ STRG ].fg = MAGENTA;