From e03542f3097d5f85315c3e3f8351ffc6c32fe3e3 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Fri, 23 Jul 2021 22:32:33 +0300 Subject: feat!: replace yellow with foreground --- config.def.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.def.h b/config.def.h index a19d21f..88dfa2e 100644 --- a/config.def.h +++ b/config.def.h @@ -15,15 +15,15 @@ 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_yellow[] = "#d79921"; +static const char col_primary[] = "#ebdbb2"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_foreground, col_background, col_background }, - [SchemeSel] = { col_foreground, col_yellow, col_yellow }, + [SchemeSel] = { col_foreground, col_primary, col_primary }, [SchemeStatus] = { col_foreground, col_background, "#000000" }, // Statusbar right {text,background,not used but cannot be empty} - [SchemeTagsSel] = { col_background, col_yellow, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} + [SchemeTagsSel] = { col_background, col_primary, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} [SchemeTagsNorm] = { col_foreground, col_background, "#000000" }, // Tagbar left unselected {text,background,not used but cannot be empty} [SchemeInfoSel] = { col_foreground, col_background, "#000000" }, // infobar middle selected {text,background,not used but cannot be empty} -- cgit v1.2.3