aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-27 15:05:27 +0300
committereug-vs <eug-vs@keemail.me>2021-03-27 15:05:27 +0300
commite65c6c005034c2deebaf4e942ffd66b4498f379a (patch)
treeba4a2b0ea9dfad753c93e826c8785213b9dc9c09
parent7985c39e7f767fbdcc835c13c24455c96ba8e8d6 (diff)
downloaddwm-e65c6c005034c2deebaf4e942ffd66b4498f379a.tar.gz
feat: make border yellow
-rw-r--r--config.def.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 623895f..7d91fdc 100644
--- a/config.def.h
+++ b/config.def.h
@@ -13,10 +13,11 @@ 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_yellow[] = "#d79921";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+ [SchemeSel] = { col_gray4, col_cyan, col_yellow },
};
/* tagging */