From 45d20ba43d478367ef6c500ee933f15446d1d2f8 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 17 May 2020 15:13:59 +0200 Subject: [PATCH] Update colors --- config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index 39ae1fc..1f80702 100644 --- a/config.h +++ b/config.h @@ -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;