aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/menu
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-08 16:00:33 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-08 16:00:45 -0700
commit8b679a2e892310e461c3f5028dfaf60b25eea37f (patch)
treebc19c732b9ca6e552ce37ef3c036529a1f4c981f /sys/cmd/menu
parent61158de7bb2575cd594472584b7c2b90dd8da8a5 (diff)
fix(theme): consistent theme
Diffstat (limited to 'sys/cmd/menu')
-rw-r--r--sys/cmd/menu/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cmd/menu/config.h b/sys/cmd/menu/config.h
index 1e14aa9..fb1614d 100644
--- a/sys/cmd/menu/config.h
+++ b/sys/cmd/menu/config.h
@@ -11,8 +11,8 @@ static const char *fonts[] = {
static const char *prompt = "cmds"; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
- [SchemeNorm] = { "#bbbbbb", "#323232" },
- [SchemeSel] = { "#eeeeee", "#24aed8" },
+ [SchemeNorm] = { "#fbf1c7", "#504945" },
+ [SchemeSel] = { "#504945", "#83a598" },
[SchemeOut] = { "#000000", "#00ffff" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */