red
This commit is contained in:
parent
e120f1ab55
commit
677cfaf0f3
1 changed files with 4 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
||||||
#include <X11/XF86keysym.h>
|
#include <X11/XF86keysym.h>
|
||||||
|
|
||||||
/* appearance */
|
/* appearance */
|
||||||
static const unsigned int borderpx = 1; /* border pixel of windows */
|
static const unsigned int borderpx = 2; /* border pixel of windows */
|
||||||
static const Gap default_gap = {.isgap = 1, .realgap = 5, .gappx = 5};
|
static const Gap default_gap = {.isgap = 1, .realgap = 5, .gappx = 5};
|
||||||
static const unsigned int snap = 5; /* snap pixel */
|
static const unsigned int snap = 5; /* snap pixel */
|
||||||
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
|
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
|
||||||
|
@ -16,14 +16,13 @@ static const char col_gray3[] = "#bbbbbb";
|
||||||
static const char col_gray4[] = "#eeeeee";
|
static const char col_gray4[] = "#eeeeee";
|
||||||
static const char col_cyan[] = "#005577";
|
static const char col_cyan[] = "#005577";
|
||||||
/* custom colors */
|
/* custom colors */
|
||||||
static const char col_orange[] = "#fe8019";
|
static const char col_red[] = "#fb4934";
|
||||||
static const char col_ggrey[] = "#121212";
|
static const char col_ggrey[] = "#121212";
|
||||||
static const char col_ggrey2[] = "#282828";
|
|
||||||
static const char *colors[][3] = {
|
static const char *colors[][3] = {
|
||||||
/* --------------- */
|
/* --------------- */
|
||||||
/* fg bg border */
|
/* fg bg border */
|
||||||
[SchemeNorm] = { col_ggrey2,col_ggrey, col_ggrey },
|
[SchemeNorm] = { col_red, col_ggrey, col_ggrey },
|
||||||
[SchemeSel] = { col_ggrey2,col_orange,col_orange },
|
[SchemeSel] = { col_ggrey, col_red, col_red },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* tagging */
|
/* tagging */
|
||||||
|
|
Loading…
Reference in a new issue