st-gruber-darker-0.9.2.diff - sites - public wiki contents of suckless.org
(HTM) git clone git://git.suckless.org/sites
(DIR) Log
(DIR) Files
(DIR) Refs
---
st-gruber-darker-0.9.2.diff (1315B)
---
1 diff --git a/config.def.h b/config.def.h
2 index 2cd740a..0d4fac3 100644
3 --- a/config.def.h
4 +++ b/config.def.h
5 @@ -95,33 +95,33 @@ unsigned int tabspaces = 8;
6
7 /* Terminal colors (16 first used in escape sequence) */
8 static const char *colorname[] = {
9 - /* 8 normal colors */
10 - "black",
11 - "red3",
12 - "green3",
13 - "yellow3",
14 - "blue2",
15 - "magenta3",
16 - "cyan3",
17 - "gray90",
18 -
19 - /* 8 bright colors */
20 - "gray50",
21 - "red",
22 - "green",
23 - "yellow",
24 - "#5c5cff",
25 - "magenta",
26 - "cyan",
27 - "white",
28 -
29 - [255] = 0,
30 -
31 - /* more colors can be added after 255 to use with DefaultXX */
32 - "#cccccc",
33 - "#555555",
34 - "gray90", /* default foreground colour */
35 - "black", /* default background colour */
36 + /* 8 normal colors */
37 + "#2e3436",
38 + "#a40000",
39 + "#4e9a06",
40 + "#c4a000",
41 + "#3465a4",
42 + "#75507b",
43 + "#34a0a4",
44 + "#babdb9",
45 +
46 + /* 8 bright colors */
47 + "#555753",
48 + "#ef2929",
49 + "#8ae234",
50 + "#fce94f",
51 + "#729fcf",
52 + "#ad7fa8",
53 + "#72d9cf",
54 + "#eeeeec",
55 +
56 + [255] = 0,
57 +
58 + /* more colors can be added after 255 to use with DefaultXX */
59 + "#cccccc",
60 + "#555555",
61 + "#e4e4ef", /* default foreground colour */
62 + "#181818", /* default background colour */
63 };
64
65