index.md - sites - public wiki contents of suckless.org
(HTM) git clone git://git.suckless.org/sites
(DIR) Log
(DIR) Files
(DIR) Refs
---
index.md (1129B)
---
1 # june scheme
2
3 ## Description
4
5 Color scheme created by June on [causal.agency](https://causal.agency)
6
7 
8
9 ## Colors
10
11 ```
12 /* Terminal colors (16 first used in escape sequence) */
13 static const char *colorname[] = {
14 /* 8 normal colors */
15 [0] = "#161510", /* black */
16 [1] = "#a32810", /* red */
17 [2] = "#727a18", /* green */
18 [3] = "#a37720", /* yellow */
19 [4] = "#3d6266", /* blue */
20 [5] = "#7a4955", /* magenta */
21 [6] = "#557a55", /* cyan */
22 [7] = "#998d6b", /* white */
23
24 /* 8 bright colors */
25 [8] = "#4c4635", /* black */
26 [9] = "#cc3214", /* red */
27 [10] = "#8e991e", /* green */
28 [11] = "#cc9528", /* yellow */
29 [12] = "#4c7b7f", /* blue */
30 [13] = "#995b6b", /* magenta */
31 [14] = "#6b996b", /* cyan */
32 [15] = "#ccbc8e", /* white */
33
34 [255] = 0,
35 [256] = "#14130e",
36 [257] = "#b7a980",
37 [258] = "#7a7155",
38 [259] = "#a34110"
39 };
40
41 /*
42 * Default colors (colorname index)
43 * foreground, background, cursor, reverse cursor
44 */
45 unsigned int defaultfg = 257;
46 unsigned int defaultbg = 256;
47 unsigned int defaultcs = 258;
48 static unsigned int defaultrcs = 259;
49 ```