From 57b595556c36db8eb6e2ce812ee798341b44ed3f Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Sat, 3 Sep 2022 11:52:50 +0200 Subject: [PATCH] Small changes in color --- config.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/config.h b/config.h index 77570fd..3773fe1 100644 --- a/config.h +++ b/config.h @@ -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 */