Change colors for dmenu to match my dwm configuration.

This commit is contained in:
2024-10-24 14:29:30 +01:00
parent 0ee43b8855
commit 8d4ecb5af3

View File

@@ -10,9 +10,9 @@ 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] = { "#22d30e", "#4f4c4c" },
[SchemeNorm] = { "#77aafc", "#000000" },
[SchemeSel] = { "#eeeeee", "#000000" },
[SchemeSelHighlight] = { "#22d30e", "#225599" },
[SchemeNormHighlight] = { "#22d30e", "#222222" },
[SchemeOut] = { "#000000", "#00ffff" },
};