From 86d9cd33de59758d439e7f222ae6c10d3150256f Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 15 Jun 2024 13:39:07 +0100 Subject: [PATCH] update base16 colors --- config.def.h | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/config.def.h b/config.def.h index 3c01783..e7237f7 100644 --- a/config.def.h +++ b/config.def.h @@ -15,23 +15,20 @@ static const char *fonts[] = { "monospace:size=14", "NotoColorEmoji:pix // base 16 scheme: "Kanagawa" static char col_base00[] = "#1F1F28"; -static char col_base01[] = "#2A2A37"; -static char col_base02[] = "#223249"; -static char col_base03[] = "#727169"; -static char col_base04[] = "#C8C093"; +static char col_base03[] = "#54546D"; +static char col_base04[] = "#727169"; static char col_base05[] = "#DCD7BA"; -static char col_base07[] = "#363646"; static char col_base08[] = "#C34043"; -static char col_base0D[] = "#7E9CD8"; +static char col_base0B[] = "#76946A"; static char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_base04, col_base01, col_base03 }, + [SchemeNorm] = { col_base05, col_base00, col_base04 }, [SchemeSel] = { col_base05, col_base00, col_base08 }, - [SchemeStatus] = { col_base05, col_base07, "#000000" }, // Statusbar right {text,background,not used but cannot be empty} - [SchemeTagsSel] = { col_base00, col_base0D, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} - [SchemeTagsNorm] = { col_base05, col_base07, "#000000" }, // Tagbar left unselected {text,background,not used but cannot be empty} + [SchemeStatus] = { col_base05, col_base03, "#000000" }, // Statusbar right {text,background,not used but cannot be empty} + [SchemeTagsSel] = { col_base00, col_base0B, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} + [SchemeTagsNorm] = { col_base05, col_base03, "#000000" }, // Tagbar left unselected {text,background,not used but cannot be empty} [SchemeInfoSel] = { col_base05, col_base00, "#000000" }, // infobar middle selected {text,background,not used but cannot be empty} - [SchemeInfoNorm] = { col_base03, col_base00, "#000000" }, // infobar middle unselected {text,background,not used but cannot be empty} + [SchemeInfoNorm] = { col_base05, col_base00, "#000000" }, // infobar middle unselected {text,background,not used but cannot be empty} }; // Scratchpads @@ -96,7 +93,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_base01, "-nf", col_base04, "-sb", col_base0D, "-sf", col_base00, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_base03, "-nf", col_base05, "-sb", col_base0B, "-sf", col_base00, NULL }; static const char *dmenuwifi[] = { "dmenu-wifi.sh", NULL }; static const char *termcmd[] = { "st", NULL }; @@ -105,14 +102,11 @@ static const char *termcmd[] = { "st", NULL }; */ ResourcePref resources[] = { { "col_base00", STRING, &col_base00 }, - { "col_base01", STRING, &col_base01 }, - { "col_base02", STRING, &col_base02 }, { "col_base03", STRING, &col_base03 }, { "col_base04", STRING, &col_base04 }, { "col_base05", STRING, &col_base05 }, - { "col_base07", STRING, &col_base07 }, { "col_base08", STRING, &col_base08 }, - { "col_base0D", STRING, &col_base0D }, + { "col_base0B", STRING, &col_base0B }, { "borderpx", INTEGER, &borderpx }, { "snap", INTEGER, &snap }, { "showbar", INTEGER, &showbar },