final reverse color scheme
This commit is contained in:
parent
a8778135d1
commit
9caf861f1d
|
@ -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 */
|
||||
|
|
12
dwm/config.h
12
dwm/config.h
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
};
|
||||
|
||||
|
|
|
@ -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 */
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue