1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* dwm color configuration */
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[] = "#4B4E74";
/* st config */
float alpha = 0.6; /* some themes may have this lighter or stronger then others */
static const char *colorname[] = {
/* 8 normal colors */
"#050704", /* black */
"#d80e0e", /* red */
"#06f115", /* green */
"#d8ff00", /* yellow */
"#0050d2", /* blue */
"#802bee", /* magenta */
"#23f0f2", /* cyan */
"#cfcfcf", /* white */
/* 8 bright colors */
"#cfcfcf", /* black */
"#ff2857", /* red */
"#79fc6a", /* green */
"#d7ff62", /* yellow */
"#698eff", /* blue */
"#a461fb", /* magenta */
"#91fff5", /* cyan */
"#ffffff", /* white */
[255] = 0,
/* special colors */
"#cccccc",
"#555555",
"#000000", /* background */
"#cfcfcf", /* foreground */
};
|