From cad1f11826b0f4a7fe4ee2f8e9328367e10a6140 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Thu, 31 Mar 2022 17:59:22 +0300 Subject: feat: remove accent color --- config.def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index 2d2af1a..41cfc16 100644 --- a/config.def.h +++ b/config.def.h @@ -13,11 +13,11 @@ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "fira code nerd font:pixelsize=12:antialias=true:autohint=true" }; static const char col_background[] = "#1d2021"; static const char col_foreground[] = "#ebdbb2"; -static const char col_primary[] = "#689d6a"; +static const char col_primary[] = "#928374"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_foreground, col_background, "#000000" }, - [SchemeSel] = { col_foreground, col_primary, col_primary }, + [SchemeSel] = { col_foreground, col_primary, "#000000" }, [SchemeStatus] = { col_foreground, col_background, "#000000" }, }; -- cgit v1.2.3