commit c4accbd0dc072364c5921993e0d06301c55313c4
parent a0e3fc35054be360de82c7aec748dc4f516ebd30
Author: Markus Hanetzok <markus@hanetzok.net>
Date: Sun, 30 Mar 2025 19:11:23 +0200
adjust colors
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -10,10 +10,10 @@ static const char *fonts[] = {
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
- [SchemeNorm] = { "#bbbbbb", "#222222" },
- [SchemeSel] = { "#eeeeee", "#005577" },
- [SchemeSelHighlight] = { "#ffc978", "#005577" },
- [SchemeNormHighlight] = { "#ffc978", "#222222" },
+ [SchemeNorm] = { "#ff79c6", "#282a36" },
+ [SchemeSel] = { "#282a36", "#ff79c6" },
+ [SchemeSelHighlight] = { "#282a36", "#FF5555" },
+ [SchemeNormHighlight] = { "#FF5555", "#282a36" },
[SchemeOut] = { "#000000", "#00ffff" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */