Color choice improvements

This commit is contained in:
hippoz 2020-12-19 21:09:14 +02:00
parent fc6af96710
commit 693c77d8aa
Signed by: hippoz
GPG key ID: 7C52899193467641

View file

@ -46,21 +46,21 @@ static const char col_nord15_light[] = "#8e5783";
static const char *colors[][3] = { static const char *colors[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = { col_nord5, col_nord0, col_gray2 }, [SchemeNorm] = { col_nord5, col_nord0, col_nord0 },
[SchemeSel] = { col_nord6, col_nord15_light, col_nord15_light }, [SchemeSel] = { col_nord6, col_nord3, col_nord3 },
// text, bg, unused // text, bg, unused
[SchemeStatus] = { col_nord5, col_nord15, "#000000" }, // Statusbar right [SchemeStatus] = { col_nord5, col_nord2, "#000000" }, // Statusbar right
[SchemeTagsSel] = { col_nord6, col_nord15, "#000000" }, // Tagbar left selected [SchemeTagsSel] = { col_nord6, col_nord2, "#000000" }, // Tagbar left selected
[SchemeTagsNorm] = { col_nord5, col_nord0, "#000000" }, // Tagbar left unselected [SchemeTagsNorm] = { col_nord5, col_nord0, "#000000" }, // Tagbar left unselected
[SchemeInfoSel] = { col_nord6, col_nord15_light, "#000000" }, // infobar middle selected [SchemeInfoSel] = { col_nord6, col_nord3, "#000000" }, // infobar middle selected
[SchemeInfoNorm] = { col_nord5, col_nord0, "#000000" }, // infobar middle unselected [SchemeInfoNorm] = { col_nord5, col_nord0, "#000000" }, // infobar middle unselected
}; };
/* tagging */ /* tagging */
static const char *tags[] = { "", "", "", "", "", "", "", "", "" }; static const char *tags[] = { "", "", "", "", "", "", "" };
static const Rule rules[] = { static const Rule rules[] = {
/* xprop(1): /* xprop(1):
@ -79,8 +79,8 @@ static const int resizehints = 1; /* 1 means respect size hints in tiled resi
static const Layout layouts[] = { static const Layout layouts[] = {
/* symbol arrange function */ /* symbol arrange function */
{ "", tile }, /* first entry is default */ { "- ", tile }, /* first entry is default */
{ "", NULL }, /* no layout function means floating behavior */ { "- ", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle }, { "[M]", monocle },
}; };
@ -97,7 +97,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_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_nord0, "-nf", col_nord5, "-sb", col_nord3, "-sf", col_nord6, NULL };
static const char *termcmd[] = { "st", NULL }; static const char *termcmd[] = { "st", NULL };
static Key keys[] = { static Key keys[] = {
@ -131,8 +131,8 @@ static Key keys[] = {
TAGKEYS( XK_5, 4) TAGKEYS( XK_5, 4)
TAGKEYS( XK_6, 5) TAGKEYS( XK_6, 5)
TAGKEYS( XK_7, 6) TAGKEYS( XK_7, 6)
TAGKEYS( XK_8, 7) //TAGKEYS( XK_8, 7)
TAGKEYS( XK_9, 8) //TAGKEYS( XK_9, 8)
{ MODKEY|ShiftMask, XK_q, quit, {0} }, { MODKEY|ShiftMask, XK_q, quit, {0} },
}; };