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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Elbaite
My custom colorscheme
Xresources:
```
! special
*.foreground: #bfbbb6
*.background: #181411
*.cursorColor: #bfbbb6
! black
*.color0: #181411
*.color8: #2b2722
! red
*.color1: #a63221
*.color9: #a63221
! green
*.color2: #768948
*.color10: #768948
! yellow
*.color3: #d6a22e
*.color11: #d6a22e
! blue
*.color4: #33658a
*.color12: #33658a
! magenta
*.color5: #585481
*.color13: #7473a3
! cyan
*.color6: #599a82
*.color14: #599a82
! white
*.color7: #9a9a9a
*.color15: #bfbbb6
```
Simple/Suckless Terminal:
```c
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
[0] = "#181411", /* black */
[1] = "#a63221", /* red */
[2] = "#768948", /* green */
[3] = "#d6a22e", /* yellow */
[4] = "#33658a", /* blue */
[5] = "#585481", /* magenta */
[6] = "#599a82", /* cyan */
[7] = "#9a9a9a", /* white */
/* 8 bright colors */
[8] = "#2b2722", /* black */
[9] = "#a63221", /* red */
[10] = "#768948", /* green */
[11] = "#d6a22e", /* yellow */
[12] = "#33658a", /* blue */
[13] = "#7473a3", /* magenta */
[14] = "#599a82", /* cyan */
[15] = "#bfbbb6", /* white */
/* special colors */
[256] = "#181411", /* background */
[257] = "#bfbbb6", /* foreground */
};
```
|