a little prettier

This commit is contained in:
tavo-wasd 2023-06-02 15:14:38 -06:00
parent 54e9fbd8ea
commit e9dbf0c6dd

View file

@ -3,12 +3,12 @@
/* appearance */ /* appearance */
static const unsigned int borderpx = 2; /* 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 = 15, .gappx = 15};
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 */
static const int showbar = 1; /* 0 means no bar */ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 0; /* 0 means bottom bar */ static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "SourceCodePro:size=10" }; static const char *fonts[] = { "SourceCodePro:semibold:size=10" };
static const char dmenufont[] = "SourceCodePro:size=10"; static const char dmenufont[] = "SourceCodePro:size=10";
static const char col_gray1[] = "#222222"; static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444"; static const char col_gray2[] = "#444444";
@ -16,13 +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_main[] = "#ebdbb2"; static const char col_main[] = "#ffffff";
static const char col_second[] = "#121212"; static const char col_second[] = "#121212";
static const char *colors[][3] = { static const char *colors[][3] = {
/* --------------- */ /* --------------- */
/* fg bg border */ /* fg bg border */
[SchemeNorm] = { col_main, col_second,col_second }, [SchemeNorm] = { col_second,col_main, col_second },
[SchemeSel] = { col_second,col_main, col_main }, [SchemeSel] = { col_main, col_second,col_main },
}; };
/* tagging */ /* tagging */