diff options
author | zachir <zachir@librem.one> | 2022-02-12 10:18:14 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-02-12 10:18:14 -0600 |
commit | da847c69d538d38e975bbeeec2b76084d8245850 (patch) | |
tree | 3303ee73732f8fea52d5c97f9f1432456de416d2 /config.h | |
parent | 80c95c6601984010d0a97a5a57005a6b29f5534e (diff) |
dmenu: fix colors
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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"}, |