diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-12-03 12:58:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-03 12:58:50 -0500 |
commit | 7699e6d67c8c30e0ed219bca4ffb31c1439a1f0d (patch) | |
tree | eb53c1b5f2f4ccf9c90d4efe640b5df391654a18 /config.h | |
parent | 15c6321d87dc875134d34342fd2f5cc2d8bbd914 (diff) | |
parent | 313ecfec8129a1416c4d31c7656b28477a7331ba (diff) |
Merge pull request #24 from terriblephrases/master
Correct gruvbox defaultfg and cursor colors
Diffstat (limited to 'config.h')
-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 |