diff options
author | Luke Smith <luke@lukesmith.xyz> | 2019-05-09 07:30:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-09 07:30:37 -0400 |
commit | be3ea162793f4a6c1efc5a003e2db89af78e2ac8 (patch) | |
tree | 358c2e00929ade77130f9723f705174d9e38e27c /config.h | |
parent | da13ef12463d1870caed94584db464d68c6b3182 (diff) | |
parent | e0005c695e339c08bda2910b36efe026489adab1 (diff) |
Merge pull request #72 from rjl6789/master
correct colorname declaration
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -107,6 +107,7 @@ static const char *colorname[] = { /* more colors can be added after 255 to use with DefaultXX */ "black", /* 256 -> bg */ "white", /* 257 -> fg */ + "#add8e6", /* 258 -> cursor */ }; @@ -114,8 +115,8 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 15; -unsigned int defaultbg = 0; +unsigned int defaultfg = 257; +unsigned int defaultbg = 256; static unsigned int defaultcs = 15; static unsigned int defaultrcs = 0; |