From 40b4faa69d04bdd9057e29e97a02b7e9a24b320b Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Thu, 3 Jun 2021 13:42:15 +0200 Subject: [PATCH] Change color to green --- config.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/config.h b/config.h index fbded7b..abb2c29 100644 --- a/config.h +++ b/config.h @@ -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 */