This commit is contained in:
tavo-wasd 2023-04-07 17:18:48 -06:00
parent e120f1ab55
commit 677cfaf0f3

View file

@ -2,7 +2,7 @@
#include <X11/XF86keysym.h>
/* 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 unsigned int snap = 5; /* snap pixel */
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_cyan[] = "#005577";
/* custom colors */
static const char col_orange[] = "#fe8019";
static const char col_red[] = "#fb4934";
static const char col_ggrey[] = "#121212";
static const char col_ggrey2[] = "#282828";
static const char *colors[][3] = {
/* --------------- */
/* fg bg border */
[SchemeNorm] = { col_ggrey2,col_ggrey, col_ggrey },
[SchemeSel] = { col_ggrey2,col_orange,col_orange },
[SchemeNorm] = { col_red, col_ggrey, col_ggrey },
[SchemeSel] = { col_ggrey, col_red, col_red },
};
/* tagging */