From 576ede526105d4f214a2331066411efcb76aa02c Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Sun, 10 Nov 2024 21:08:54 -0500 Subject: [PATCH] Make dwm zenbones colors --- config.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/config.h b/config.h index 76a50f9..94409ff 100644 --- a/config.h +++ b/config.h @@ -20,14 +20,14 @@ static const char *fonts[] = { "FiraCode Nerd Font:size=11:antialias=true:autohint=true"}; static const char dmenufont[] = "SauceCodePro Nerd Font:size=10:antialias=true:autohint=true"; -static const char col_gray1[] = "#282828"; +static const char col_gray1[] = "#1c1917"; static const char col_gray2[] = "#444444"; -static const char col_gray3[] = "#ebdbb2"; -static const char col_gray4[] = "#928374"; -static const char col_cyan[] = "#458588"; -static const char col_green[] = "#98971a"; -static const char col_red[] = "#fb4934"; -static const char col_yellow[] = "#fabd2f"; +static const char col_gray3[] = "#B4bdc3"; +static const char col_gray4[] = "#61676B"; +static const char col_cyan[] = "#6099C0"; +static const char col_green[] = "#819b69"; +static const char col_red[] = "#de6e76"; +static const char col_yellow[] = "#d68c67"; static const char col_teal[] = "#8ec07c"; static const char col_purple[] = "#b16286"; static const unsigned int baralpha = 175; @@ -36,7 +36,7 @@ static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = {col_gray3, col_gray1, "#000000"}, [SchemeSel] = {col_gray3, col_cyan, col_cyan}, - [SchemeStatus] = {col_gray4, col_gray1, "#000000"}, + [SchemeStatus] = {col_gray3, col_gray1, "#000000"}, [SchemeTagsSel] = {col_gray3, col_gray1, col_gray1}, // Tagbar left unselected {text,background,not used but cannot be empty} [SchemeTagsNorm] = {col_gray4, col_gray1, col_gray1}, @@ -77,7 +77,6 @@ static const Rule rules[] = { {"Sxiv", NULL, NULL, 0, 1, 0, 1, -1}, {"matplotlib", NULL, NULL, 0, 1, 0, 1, -1}, {"Matplotlib", NULL, NULL, 0, 1, 0, 1, -1}, - {"inscryption.exe", NULL, NULL, 0, 1, 0, 1, -1}, {NULL, NULL, "Figure 1", 0, 1, 0, 1, -1}, {NULL, NULL, "Figure 2", 0, 1, 0, 1, -1}, {NULL, NULL, "Figure 3", 0, 1, 0, 1, -1},