diff options
author | Luke Smith <luke@lukesmith.xyz> | 2019-05-12 09:14:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-12 09:14:18 -0400 |
commit | 6c0c86191cf55765b8be07bed9bdf67e1d4d8e96 (patch) | |
tree | 1df4c610b378a24d54ece6bdc36096a55378d7c1 | |
parent | da823282959c03d5351b1707214e7cd3ab82980f (diff) | |
parent | 55405e17f1ae0d46e2a1547ca34d22395cb36b78 (diff) |
Merge pull request #79 from rjl6789/virgin
default fg, bg and cursor - modified so works with .Xresources
-rw-r--r-- | config.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -105,8 +105,8 @@ static const char *colorname[] = { "#ebdbb2", [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ - "black", /* 256 -> bg */ - "white", /* 257 -> fg */ + "#282828", /* 256 -> bg */ + "#ebdbb2", /* 257 -> fg */ "#add8e6", /* 258 -> cursor */ }; @@ -115,9 +115,9 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 15; -unsigned int defaultbg = 0; -static unsigned int defaultcs = 15; +unsigned int defaultfg = 257; +unsigned int defaultbg = 256; +static unsigned int defaultcs = 258; static unsigned int defaultrcs = 0; /* |