Skip to content

Commit

Permalink
Changed default bg color from DEFAULT_COLOR to BLACK.
Browse files Browse the repository at this point in the history
  • Loading branch information
charlespax committed Jul 20, 2017
1 parent 973e899 commit 216b8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/color.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ void color_cell(int r, int c, int rf, int cf, char * str) {
if (n->ucolor == NULL) {
n->ucolor = (struct ucolor *) malloc(sizeof(struct ucolor));
n->ucolor->fg = WHITE;
n->ucolor->bg = DEFAULT_COLOR;
n->ucolor->bg = BLACK;
n->ucolor->bold = 0;
n->ucolor->dim = 0;
n->ucolor->reverse = 0;
Expand Down

0 comments on commit 216b8d8

Please sign in to comment.