From a1418d5a0e5d8e85595abc7f2aa9ec591a6b5858 Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Tue, 25 May 2021 11:24:36 +0200 Subject: [PATCH] Add gruv --- config.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index e609e9f..fbded7b 100644 --- a/config.h +++ b/config.h @@ -13,11 +13,15 @@ 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 *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { nord_fg, nord_bg }, - [SchemeSel] = { nord_bg, nord_blue }, - [SchemeOut] = { nord_fg, nord_bg }, + [SchemeNorm] = { gruv_fg, gruv_bg }, + [SchemeSel] = { gruv_bg, gruv_yellow }, + [SchemeOut] = { gruv_fg, gruv_bg }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 6;