From 132f1fb4939bf80a06c3d5d9701708958a60e33f Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Sun, 8 Oct 2023 15:34:43 -0400 Subject: [PATCH] Update the colors --- config.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index ebb3224..13ae0fd 100644 --- a/config.h +++ b/config.h @@ -20,15 +20,17 @@ static const char col_gray4[] = "#928374"; static const char col_cyan[] = "#458588"; static const char col_green[] = "#b8bb26"; static const char col_red[] = "#fb4934"; -static const char col_yellow[] = "#fabd2f"; +static const char col_yellow[] = "#fabd2f"; +static const char col_teal[] = "#8ec07c"; +static const char col_purple[] = "#b16286"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray4, col_gray1, "#000000" }, [SchemeSel] = { col_gray3, col_cyan, col_cyan }, [SchemeStatus] = { col_gray4, col_gray1, "#000000" }, // Statusbar right {text,background,not used but cannot be empty} - [SchemeTagsSel] = { col_gray3, col_cyan, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} - [SchemeTagsNorm] = { col_gray4, col_gray1, "#000000" }, // Tagbar left unselected {text,background,not used but cannot be empty} - [SchemeInfoSel] = { col_gray3, col_gray1, "#000000" }, // infobar middle selected {text,background,not used but cannot be empty} + [SchemeTagsSel] = { col_cyan, col_gray1, col_gray1 }, // Tagbar left selected {text,background,not used but cannot be empty} + [SchemeTagsNorm] = { col_gray4, col_gray1, col_gray1 }, // Tagbar left unselected {text,background,not used but cannot be empty} + [SchemeInfoSel] = { col_teal, col_gray1, col_gray1 }, // infobar middle selected {text,background,not used but cannot be empty} [SchemeInfoNorm] = { col_green, col_gray1, col_gray1}, // infobar middle unselected {text,background,not used but cannot be empty} [SchemeWarn] = { col_yellow, col_gray1, col_gray1 }, [SchemeUrgent]= { col_red, col_gray1, col_gray1},