Colorscheme.

This commit is contained in:
Bartek Stalewski 2021-11-26 16:23:00 +01:00
parent ecc7e94f84
commit a7fac0b08f
3 changed files with 16 additions and 15 deletions

View file

@ -11,10 +11,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" },
[SchemeOut] = { "#000000", "#00ffff" },
/* fg bg */
[SchemeNorm] = { "#161616", "#c7c7c7" },
[SchemeSel] = { "#161616", "#00bdff" },
[SchemeOut] = { "#000000", "#00ffff" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;