From a7263e45fd33786614b4b05067a672818f94b3e1 Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Tue, 14 Feb 2023 20:59:40 -0500 Subject: Switch to gruvbox-dark colorscheme --- config.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index fab08c9..7600dc4 100644 --- a/config.h +++ b/config.h @@ -15,11 +15,16 @@ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "monospace:size=10"}; static const char dmenufont[] = "monospace:size=10"; -#include "colors.h" +static const char col_gray1[] = "#282828"; +static const char col_gray2[] = "#3c3836"; +static const char col_gray3[] = "#ebdbb2"; +static const char col_gray4[] = "#fdf1c7"; +static const char col_cyan[] = "#d79921"; + static const char *colors[][3] = { - /* fg bg border */ - [SchemeNorm] = { ad_fg, ad_bg, ad_base }, - [SchemeSel] = { ad_sel_fg, ad_sel_bg, ad_hlght }, + /* fg bg border */ + [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, + [SchemeSel] = { col_gray4, col_cyan, col_cyan }, }; /* tagging */ -- cgit v1.2.3