summaryrefslogtreecommitdiff
path: root/cfg.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'cfg.def.h')
-rw-r--r--cfg.def.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/cfg.def.h b/cfg.def.h
index dd9c317..3da0cbd 100644
--- a/cfg.def.h
+++ b/cfg.def.h
@@ -21,17 +21,20 @@ static const char *fonts[] = {
"Monospace:size=14"
};
/* static const char *prompt = NULL; /\* -p option; prompt to the left of input field *\/ */
+
+#define scheme_bg "#222222"
+
static struct scheme schemes[SchemeLast] = {
- [SchemeNorm] = { .bg = "#222222",
+ [SchemeNorm] = { .bg = scheme_bg,
.bind = "#D19A66",
.arrow = "#888",
.name = "#bbbbbb"
},
- [SchemePrefix] = { .bg = "#005577",
- .bind = "#eeeeee",
- .arrow = "#666666",
- .name = "#eeeeee"
+ [SchemePrefix] = { .bg = scheme_bg,
+ .bind = "#eeeeee",
+ .arrow = "#888",
+ .name = "#c678dd"
},
};