commit 0dc1e821923f9ba9fc028b98cf9190d6d1796e99
parent f3c6ffa503b89205ed3101a581afdeea46cfd390
Author: Cem Keylan <cem@ckyln.com>
Date: Thu, 6 Aug 2020 11:40:07 +0300
dwm: change border and colours
Diffstat:
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -1,7 +1,7 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
-static const unsigned int borderpx = 1; /* border pixel of windows */
+static const unsigned int borderpx = 0; /* border pixel of windows */
static const unsigned int gappx = 10; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
@@ -14,12 +14,12 @@ static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
static const char col_gray4[] = "#eeeeee";
static const char col_cyan[] = "#005577";
-static char normbgcolor[] = "#222222";
+static char normbgcolor[] = "#282A36";
static char normbordercolor[] = "#444444";
-static char normfgcolor[] = "#bbbbbb";
-static char selfgcolor[] = "#eeeeee";
-static char selbordercolor[] = "#005577";
-static char selbgcolor[] = "#005577";
+static char normfgcolor[] = "#BFBFBF";
+static char selfgcolor[] = "#F8F8F2";
+static char selbordercolor[] = "#9D638A";
+static char selbgcolor[] = "#9D638A";
static const char col_black[] = "#000000";
static const char col_red[] = "#ff0000";
static const char col_yellow[] = "#ffff00";
@@ -61,7 +61,6 @@ static const Layout layouts[] = {
{ "[\\]", dwindle },
};
-
/* key definitions */
#define MODKEY Mod1Mask
#define WINKEY Mod4Mask