Change theme to crimson red

This commit is contained in:
Alex 2020-05-11 20:52:48 +02:00 committed by Alex Denes
parent 34923852da
commit 6add83d93d
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] = { "#FFB000", "#000000" },
[SchemeSel] = { "#101010", "#FFCC00" },
[SchemeOut] = { "#000000", "#FFB000" },
[SchemeNorm] = { "#CC3333", "#000000" },
[SchemeSel] = { "#101010", "#B40011" },
[SchemeOut] = { "#000000", "#ED0017" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;