update base16 colors
This commit is contained in:
parent
e511497dbd
commit
86d9cd33de
26
config.def.h
26
config.def.h
|
@ -15,23 +15,20 @@ static const char *fonts[] = { "monospace:size=14", "NotoColorEmoji:pix
|
||||||
|
|
||||||
// base 16 scheme: "Kanagawa"
|
// base 16 scheme: "Kanagawa"
|
||||||
static char col_base00[] = "#1F1F28";
|
static char col_base00[] = "#1F1F28";
|
||||||
static char col_base01[] = "#2A2A37";
|
static char col_base03[] = "#54546D";
|
||||||
static char col_base02[] = "#223249";
|
static char col_base04[] = "#727169";
|
||||||
static char col_base03[] = "#727169";
|
|
||||||
static char col_base04[] = "#C8C093";
|
|
||||||
static char col_base05[] = "#DCD7BA";
|
static char col_base05[] = "#DCD7BA";
|
||||||
static char col_base07[] = "#363646";
|
|
||||||
static char col_base08[] = "#C34043";
|
static char col_base08[] = "#C34043";
|
||||||
static char col_base0D[] = "#7E9CD8";
|
static char col_base0B[] = "#76946A";
|
||||||
static char *colors[][3] = {
|
static char *colors[][3] = {
|
||||||
/* fg bg border */
|
/* fg bg border */
|
||||||
[SchemeNorm] = { col_base04, col_base01, col_base03 },
|
[SchemeNorm] = { col_base05, col_base00, col_base04 },
|
||||||
[SchemeSel] = { col_base05, col_base00, col_base08 },
|
[SchemeSel] = { col_base05, col_base00, col_base08 },
|
||||||
[SchemeStatus] = { col_base05, col_base07, "#000000" }, // Statusbar right {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_base0D, "#000000" }, // Tagbar left selected {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_base07, "#000000" }, // Tagbar left unselected {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}
|
[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
|
// Scratchpads
|
||||||
|
@ -96,7 +93,7 @@ static const Layout layouts[] = {
|
||||||
|
|
||||||
/* commands */
|
/* commands */
|
||||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
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 *dmenuwifi[] = { "dmenu-wifi.sh", NULL };
|
||||||
static const char *termcmd[] = { "st", NULL };
|
static const char *termcmd[] = { "st", NULL };
|
||||||
|
|
||||||
|
@ -105,14 +102,11 @@ static const char *termcmd[] = { "st", NULL };
|
||||||
*/
|
*/
|
||||||
ResourcePref resources[] = {
|
ResourcePref resources[] = {
|
||||||
{ "col_base00", STRING, &col_base00 },
|
{ "col_base00", STRING, &col_base00 },
|
||||||
{ "col_base01", STRING, &col_base01 },
|
|
||||||
{ "col_base02", STRING, &col_base02 },
|
|
||||||
{ "col_base03", STRING, &col_base03 },
|
{ "col_base03", STRING, &col_base03 },
|
||||||
{ "col_base04", STRING, &col_base04 },
|
{ "col_base04", STRING, &col_base04 },
|
||||||
{ "col_base05", STRING, &col_base05 },
|
{ "col_base05", STRING, &col_base05 },
|
||||||
{ "col_base07", STRING, &col_base07 },
|
|
||||||
{ "col_base08", STRING, &col_base08 },
|
{ "col_base08", STRING, &col_base08 },
|
||||||
{ "col_base0D", STRING, &col_base0D },
|
{ "col_base0B", STRING, &col_base0B },
|
||||||
{ "borderpx", INTEGER, &borderpx },
|
{ "borderpx", INTEGER, &borderpx },
|
||||||
{ "snap", INTEGER, &snap },
|
{ "snap", INTEGER, &snap },
|
||||||
{ "showbar", INTEGER, &showbar },
|
{ "showbar", INTEGER, &showbar },
|
||||||
|
|
Loading…
Reference in New Issue