st-moonfly-0.8.2.diff - sites - public wiki contents of suckless.org | |
git clone git://git.suckless.org/sites | |
Log | |
Files | |
Refs | |
--- | |
st-moonfly-0.8.2.diff (1447B) | |
--- | |
1 diff --color -up st-0.8.4/config.def.h st-0.8.4-modified/config.def.h | |
2 --- st-0.8.4/config.def.h 2020-06-19 14:59:45.000000000 +0530 | |
3 +++ st-0.8.4-modified/config.def.h 2021-07-09 19:31:14.512632819 … | |
4 @@ -96,30 +96,35 @@ unsigned int tabspaces = 8; | |
5 /* Terminal colors (16 first used in escape sequence) */ | |
6 static const char *colorname[] = { | |
7 /* 8 normal colors */ | |
8 - "black", | |
9 - "red3", | |
10 - "green3", | |
11 - "yellow3", | |
12 - "blue2", | |
13 - "magenta3", | |
14 - "cyan3", | |
15 - "gray90", | |
16 + | |
17 + [0] = "#323437", | |
18 + [1] = "#ff5454", | |
19 + [2] = "#8cc85f", | |
20 + [3] = "#e3c78a", | |
21 + [4] = "#80a0ff", | |
22 + [5] = "#d183e8", | |
23 + [6] = "#79dac8", | |
24 + [7] = "#a1aab8", | |
25 | |
26 /* 8 bright colors */ | |
27 - "gray50", | |
28 - "red", | |
29 - "green", | |
30 - "yellow", | |
31 - "#5c5cff", | |
32 - "magenta", | |
33 - "cyan", | |
34 - "white", | |
35 + | |
36 + [8] = "#7c8f8f", | |
37 + [9] = "#ff5189", | |
38 + [10] = "#36c692", | |
39 + [11] = "#bfbf97", | |
40 + [12] = "#74b2ff", | |
41 + [13] = "#ae81ff", | |
42 + [14] = "#85dc85", | |
43 + [15] = "#e2637f", | |
44 | |
45 [255] = 0, | |
46 | |
47 /* more colors can be added after 255 to use with DefaultXX */ | |
48 - "#cccccc", | |
49 - "#555555", | |
50 + | |
51 + [256] = "#282a36", | |
52 + [257] = "#f8f8f2", | |
53 + [258] = "#080808", | |
54 + [259]= "#eeeeee", | |
55 }; | |
56 | |
57 | |
58 @@ -127,8 +132,8 @@ static const char *colorname[] = { | |
59 * Default colors (colorname index) | |
60 * foreground, background, cursor, reverse cursor | |
61 */ | |
62 -unsigned int defaultfg = 7; | |
63 -unsigned int defaultbg = 0; | |
64 +unsigned int defaultfg = 259; | |
65 +unsigned int defaultbg = 258; | |
66 static unsigned int defaultcs = 256; | |
67 static unsigned int defaultrcs = 257; | |
68 |