diff options
| author | William Casarin <jb55@jb55.com> | 2018-07-09 16:08:12 -0700 |
|---|---|---|
| committer | William Casarin <jb55@jb55.com> | 2018-07-09 16:08:12 -0700 |
| commit | 2b4429778db5162857ae335ac0b7e36b765e3492 (patch) | |
| tree | 5a2612d7d37fa7dcfdc74107fcc628fca7ae5449 /cfg.def.h | |
| parent | 0206052b5660cb77cdd0a0ac3c83dd4c3d996007 (diff) | |
prefix names
Diffstat (limited to 'cfg.def.h')
| -rw-r--r-- | cfg.def.h | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -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" }, }; |
