summaryrefslogtreecommitdiffstats
path: root/src/color.c
diff options
context:
space:
mode:
authorAndrés <andmarti@gmail.com>2021-03-19 09:06:50 -0300
committerAndrés <andmarti@gmail.com>2021-03-19 09:06:50 -0300
commitf29d6605c8170febcec0dea7bda9613bee3b7011 (patch)
tree129b4126412e20c6bc83786c97c5b4250b5edaa6 /src/color.c
parent19b0c16164cd9a9908f61feab9e5be251d802a72 (diff)
Changed default colors
Diffstat (limited to 'src/color.c')
-rw-r--r--src/color.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/color.c b/src/color.c
index 325f6d0..500d4c0 100644
--- a/src/color.c
+++ b/src/color.c
@@ -98,23 +98,23 @@ void start_default_ucolors() {
ucolors[ DEFAULT ].fg = WHITE;
ucolors[ DEFAULT ].bg = DEFAULT_COLOR;
ucolors[ HEADINGS ].bg = YELLOW;
- ucolors[ HEADINGS ].fg = WHITE;
- ucolors[ HEADINGS ].bold = 1;
+ ucolors[ HEADINGS ].fg = BLACK;
+ ucolors[ HEADINGS ].dim = 1;
ucolors[ HEADINGS_ODD ].bg = YELLOW;
- ucolors[ HEADINGS_ODD ].fg = WHITE;
- ucolors[ HEADINGS_ODD ].bold = 1;
+ 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;
ucolors[ GRID_ODD ].bg = DEFAULT_COLOR;
- ucolors[ WELCOME ].fg = WHITE;
+ ucolors[ WELCOME ].fg = YELLOW;
ucolors[ WELCOME ].bg = DEFAULT_COLOR;
- ucolors[ WELCOME ].bold = 1;
- ucolors[ CELL_SELECTION ].bg = BLUE; // cell selection in headings
- ucolors[ CELL_SELECTION ].fg = WHITE;
- ucolors[ CELL_SELECTION ].bold = 1;
- ucolors[ CELL_SELECTION_SC ].fg = DEFAULT_COLOR; // cell selection in spreadsheet
- ucolors[ CELL_SELECTION_SC ].bg = BLUE;
+ ucolors[ WELCOME ].dim = 1;
+ ucolors[ CELL_SELECTION ].bg = BLACK; // cell selection in headings
+ 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[ NUMB ].fg = CYAN;
ucolors[ NUMB ].bg = DEFAULT_COLOR;
ucolors[ STRG ].fg = BLACK;