diff options
-rw-r--r-- | config.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -102,9 +102,10 @@ static const char *colorname[] = { "#d3869b", "#8ec07c", "#ebdbb2", + [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ "black", /* 256 -> bg */ - "brwhite", /* 257 -> fg */ + "white", /* 257 -> fg */ }; @@ -112,10 +113,10 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 12; +unsigned int defaultfg = 15; unsigned int defaultbg = 0; -static unsigned int defaultcs = 14; -static unsigned int defaultrcs = 15; +static unsigned int defaultcs = 15; +static unsigned int defaultrcs = 0; /* * Default shape of cursor |