summaryrefslogtreecommitdiff
path: root/cfg.def.h
diff options
context:
space:
mode:
authorWilliam Casarin <jb55@jb55.com>2018-07-09 16:08:12 -0700
committerWilliam Casarin <jb55@jb55.com>2018-07-09 16:08:12 -0700
commit2b4429778db5162857ae335ac0b7e36b765e3492 (patch)
tree5a2612d7d37fa7dcfdc74107fcc628fca7ae5449 /cfg.def.h
parent0206052b5660cb77cdd0a0ac3c83dd4c3d996007 (diff)
prefix names
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"
},
};