Border size + color.

This commit is contained in:
Bartek Stalewski 2022-03-07 19:00:15 +01:00
parent f9fe3327a0
commit f9559a2fb1

View File

@ -1,7 +1,7 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
static const unsigned int borderpx = 7; /* border pixel of windows */
static const unsigned int borderpx = 5; /* border pixel of windows */
static const int startwithgaps = 1; /* 1 means gaps are used by default */
static const unsigned int gappx = 15; /* default gap between windows in pixels */
static const unsigned int snap = 32; /* snap pixel */
@ -20,7 +20,7 @@ static const char col_bg[] = "#c7c7c7";
static const char col_bd[] = "#161616";
static const char col_fg_sel[] = "#ffffff";
static const char col_bg_sel[] = "#005577";
static const char col_bd_sel[] = "#005577";
static const char col_bd_sel[] = "#ffffff";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_fg, col_bg, col_bd },