Change color to green

This commit is contained in:
Marco Thomas
2021-06-03 13:42:15 +02:00
parent a1418d5a0e
commit 40b4faa69d

View File

@@ -9,18 +9,15 @@ static const char *fonts[] = {
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char nord_fg[] = "#D8DEE9";
static const char nord_bg[] = "#2E3440";
static const char nord_blue[] = "#81A1C1";
static const char gruv_fg[] = "#282828";
static const char gruv_bg[] = "#f2e5bc";
static const char gruv_yellow[] = "#d79921";
static const char gruv_green[] = "#98971a";
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { gruv_fg, gruv_bg },
[SchemeSel] = { gruv_bg, gruv_yellow },
[SchemeSel] = { gruv_bg, gruv_green },
[SchemeOut] = { gruv_fg, gruv_bg },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */