summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/config.h b/config.h
index 737be12..6f1b85a 100644
--- a/config.h
+++ b/config.h
@@ -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;