summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2022-02-12 10:18:14 -0600
committerzachir <zachir@librem.one>2022-02-12 10:18:14 -0600
commitda847c69d538d38e975bbeeec2b76084d8245850 (patch)
tree3303ee73732f8fea52d5c97f9f1432456de416d2
parent80c95c6601984010d0a97a5a57005a6b29f5534e (diff)
dmenu: fix colors
-rw-r--r--config.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.h b/config.h
index d09e825..2eaf800 100644
--- a/config.h
+++ b/config.h
@@ -13,10 +13,10 @@ static const char *fonts[] = {
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][10] = {
/* fg bg */
- [SchemeNorm] = { "#bbbbbb", "#000000", "#000000" },
- [SchemeSel] = { "#bbbbbb", "#151219", "#151219" },
- [SchemeNormHighlight] = { "#ffffff", "#000000", "#000000" },
- [SchemeSelHighlight] = { "#ffffff", "#151219", "#151219" },
+ [SchemeNorm] = { "#c5c3bc", "#151219", "#151219" },
+ [SchemeSel] = { "#c5c3bc", "#6e6f6c", "#6e6f6c" },
+ [SchemeNormHighlight] = { "#c5c3bc", "#151219", "#151219" },
+ [SchemeSelHighlight] = { "#c5c3bc", "#6e6f6c", "#6e6f6c" },
[SchemeOut] = { "#000000", "#00ffff", "#00ffff" },
[SchemeHighlight] = {"#f1fa8c", "#596377", "#3E485B"},
[SchemeHover] = {"#ffffff", "#353D4B", "#3E485B"},