Update colors

This commit is contained in:
Alex 2020-05-17 15:13:59 +02:00 committed by Alex Denes
parent 6add83d93d
commit 45d20ba43d
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,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] = { "#CC3333", "#000000" },
[SchemeSel] = { "#101010", "#B40011" },
[SchemeOut] = { "#000000", "#ED0017" },
[SchemeNorm] = { "#2E4372", "#000000" },
[SchemeSel] = { "#101010", "#2E4372" },
[SchemeOut] = { "#000000", "#152A55" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;