Skip to content

Commit

Permalink
Changed default colors
Browse files Browse the repository at this point in the history
  • Loading branch information
andmarti1424 committed Mar 19, 2021
1 parent 19b0c16 commit f29d660
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/color.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f29d660

Please sign in to comment.