-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtemplate.patch
More file actions
24 lines (23 loc) · 1.07 KB
/
template.patch
File metadata and controls
24 lines (23 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- a/config.def.h
+++ b/config.def.h
@@ -7,15 +7,15 @@
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10";
-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[] = "$base"; /* base */
+static const char col_gray2[] = "$surface"; /* surface */
+static const char col_gray3[] = "$subtle"; /* subtle */
+static const char col_gray4[] = "$text"; /* text */
+static const char col_cyan[] = "$accent"; /* $accentname */
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+ [SchemeSel] = { "$onaccent", col_cyan, col_cyan },
};
/* tagging */