Small changes in color

This commit is contained in:
Przemek Grondek 2022-09-03 11:52:50 +02:00
parent 8e7c4d64d2
commit 57b595556c

View File

@ -17,7 +17,7 @@
#define XF86AudioPause 0x1008ff31
/* appearance */
static const unsigned int borderpx = 2; /* border pixel of windows */
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int gappx = 5; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
@ -28,15 +28,16 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "emojione:size=10", "monospace:size=10"};
static const char dmenufont[] = "monospace:size=10";
static const char col_gray1[] = "#232323";
static const char col_gray0[] = "#111111";
static const char col_gray1[] = "#212121";
static const char col_gray2[] = "#303030";
static const char col_gray3[] = "#404040";
static const char col_gray3[] = "#424242";
static const char col_gray4[] = "#b1b1b1";
static const char col_gray5[] = "#c0c0c0";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray4, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_gray2, col_gray5 },
[SchemeNorm] = { col_gray4, col_gray0, col_gray1 },
[SchemeSel] = { col_gray4, col_gray2, col_gray3 },
};
/* tagging */