summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h22
1 files changed, 13 insertions, 9 deletions
diff --git a/config.h b/config.h
index 3d6a419..3a0334a 100644
--- a/config.h
+++ b/config.h
@@ -12,15 +12,16 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "TerminessTTF Nerd Font Mono:size=19", "monospace:size=15" };
static const char dmenufont[] = "monospace:size=15";
-static const char col_gray1[] = "#222222";
-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 const char col_norm_fg[] = "#ebdbb2";
+static const char col_norm_bg[] = "#282828";
+static const char col_norm_brd[] = "#282828";
+static const char col_sel_fg[] = "#282828";
+static const char col_sel_bg[] = "#d5c4a1";
+static const char col_sel_brd[] = "#a89984";
static const char *colors[][3] = {
- /* fg bg border */
- [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+ /* fg bg border */
+ [SchemeNorm] = { col_norm_fg, col_norm_bg, col_norm_brd },
+ [SchemeSel] = { col_sel_fg, col_sel_bg, col_sel_brd },
};
typedef struct {
@@ -75,7 +76,10 @@ static const Layout layouts[] = {
/* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
-static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
+static const char *dmenucmd[] = {
+ "dmenu_run", "-m", dmenumon, "-fn", dmenufont,
+ "-nb", col_norm_bg, "-nf", col_norm_fg,
+ "-sb", col_sel_bg, "-sf", col_sel_fg, NULL };
static const char *termcmd[] = { "st", NULL };
#include <X11/XF86keysym.h>