final reverse color scheme

This commit is contained in:
cptbbVM 2023-12-12 12:10:50 +01:00
parent a8778135d1
commit 9caf861f1d
4 changed files with 14 additions and 14 deletions

View File

@ -1,22 +1,22 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
static const unsigned int borderpx = 3; /* border pixel of windows */
static const unsigned int borderpx = 4; /* border pixel of windows */
static const unsigned int gappx = 10; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=12" };
static const char dmenufont[] = "monospace:size=12";
static const char col_gray1[] = "#7FB414";
static const char col_gray2[] = "#7FB414";
static const char col_gray3[] = "#E5F9BD";
static const char col_gray1[] = "#A0E418";
static const char col_gray2[] = "#E5F9BD";
static const char col_gray3[] = "#505250";
static const char col_gray4[] = "#505250";
static const char col_cyan[] = "#A0E418";
static const char col_cyan[] = "#7FB414";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_cyan, "#E5F9BD" },
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
};
/* tagging */

View File

@ -1,22 +1,22 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
static const unsigned int borderpx = 3; /* border pixel of windows */
static const unsigned int borderpx = 4; /* border pixel of windows */
static const unsigned int gappx = 10; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=12" };
static const char dmenufont[] = "monospace:size=12";
static const char col_gray1[] = "#7FB414";
static const char col_gray2[] = "#7FB414";
static const char col_gray3[] = "#E5F9BD";
static const char col_gray1[] = "#A0E418";
static const char col_gray2[] = "#E5F9BD";
static const char col_gray3[] = "#505250";
static const char col_gray4[] = "#505250";
static const char col_cyan[] = "#A0E418";
static const char col_cyan[] = "#7FB414";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_cyan, "#E5F9BD" },
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
};
/* tagging */

View File

@ -120,7 +120,7 @@ static const char *colorname[] = {
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
"gray90", /* default foreground colour */
"white", /* default foreground colour */
"#161d16", /* default background colour */
};

View File

@ -120,7 +120,7 @@ static const char *colorname[] = {
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
"gray90", /* default foreground colour */
"white", /* default foreground colour */
"#161d16", /* default background colour */
};