diff options
| -rw-r--r-- | config.h | 50 |
1 files changed, 23 insertions, 27 deletions
@@ -84,42 +84,38 @@ char *termname = "xterm-256color"; unsigned int tabspaces = 8; /* bg opacity */ -float alpha = 0.85; +float alpha = 0.95; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { - "#282a2e", - "#a54242", - "#8c9440", - "#de935f", - "#5f819d", - "#85678f", - "#5e8d87", - "#707880", - - "#373b41", - "#cc6666", - "#b5bd68", - "#f0c674", - "#81a2be", - "#b294bb", - "#8abeb7", - "#c5c8c6", - - [255] = 0, - - "#cccccc", - "#555555", - "#1d1f21", + /* 8 normal colors */ + "#32302f", + "#cc241d", + "#98971a", + "#d79921", + "#458588", + "#b16286", + "#689d6a", + "#a89984", + + /* 8 bright colors */ + "#928374", + "#fb4934", + "#b8bb26", + "#fabd2f", + "#83a598", + "#d3869b", + "#8ec07c", + "#ebdbb2", }; /* * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 256; -unsigned int defaultbg = 258; -static unsigned int defaultcs = 256; +unsigned int defaultfg = 15; +unsigned int defaultbg = 0; +static unsigned int defaultcs = 15; static unsigned int defaultrcs = 257; /* |