summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLignum Crucis2026-04-13 23:27:13 -0300
committerLignum Crucis2026-04-13 23:27:13 -0300
commit6ec15df4e48b7d4de5674d9686090749b7a16e2d (patch)
tree72eaf820eea580b63cc1e92e76be563f1a52b13f
parent1c5a381605504f43a521b5d23c4b18dc42d6f6be (diff)
config: gruvbox colors
-rw-r--r--config.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/config.h b/config.h
index 2cd8e29..b87e641 100644
--- a/config.h
+++ b/config.h
@@ -13,11 +13,11 @@ static const int topbar = 1; /* 0 means bottom bar */
static const int user_bh = 4; /* 2 is the default spacing around the bar's font */
static const char *fonts[] = { "monospace:size=11" };
static const char dmenufont[] = "monospace:size=11";
-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_gray1[] = "#3c3836";
+static const char col_gray2[] = "#504945";
+static const char col_gray3[] = "#bdae93";
+static const char col_gray4[] = "#ebdbb2";
+static const char col_cyan[] = "#458588";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
@@ -32,9 +32,9 @@ static const unsigned int fti_ptop = 0; /* top padding
static const unsigned int fti_pbot = 0; /* bottom padding */
static const unsigned int fti_plef = 0; /* left padding */
static const unsigned int fti_prig = 0; /* right padding */
-static const char fti_color_nor[] = "#444444"; /* indicator color (not selected tag) */
-static const char fti_color_sel[] = "#eeeeee"; /* indicator color (selected tag) */
-static const char fti_color_nor_inv[] = "#bbbbbb"; /* inverse indicator color (not selected tag) */
+static const char *fti_color_nor = col_gray2; /* indicator color (not selected tag) */
+static const char *fti_color_sel = col_gray4; /* indicator color (selected tag) */
+static const char *fti_color_nor_inv = col_gray3; /* inverse indicator color (not selected tag) */
static const char fti_color_sel_inv[] = "#005577"; /* inverse indicator color (selected tag) */