tUse gray instead of cyan for selection hints - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 96b05cc5b69853df7bc1a73df7734be6ce75a1b9
(DIR) parent 1ee9a958cafd6263615b28f563760b062fb6742c
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Thu, 9 Jul 2020 23:07:39 +0200
Use gray instead of cyan for selection hints
Diffstat:
M config.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
---
(DIR) diff --git a/config.h b/config.h
t@@ -10,11 +10,10 @@ static const char col_gray1[] = "#1d1f21";
static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#c5c8c6";
static const char col_gray4[] = "#1d1f21";
-static const char col_cyan[] = "#8abeb7";
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_gray3, col_gray3 },
};
/* tagging */