summaryrefslogtreecommitdiff
path: root/colors.h
diff options
context:
space:
mode:
Diffstat (limited to 'colors.h')
-rw-r--r--colors.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/colors.h b/colors.h
index 4c7c806..d9ea3b5 100644
--- a/colors.h
+++ b/colors.h
@@ -25,7 +25,8 @@ static const char *colorname[] = {
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
- "black",
+ "gray90", /* default foreground colour */
+ "black", /* default background colour */
};
@@ -33,7 +34,7 @@ static const char *colorname[] = {
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
-unsigned int defaultfg = 7;
-unsigned int defaultbg = 0;
-static unsigned int defaultcs = 256;
+unsigned int defaultfg = 258;
+unsigned int defaultbg = 259;
+unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;