summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md73
1 files changed, 73 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f5c6481
--- /dev/null
+++ b/README.md
@@ -0,0 +1,73 @@
1# Elbaite
2My custom colorscheme
3
4Xresources:
5```
6! special
7*.foreground: #bfbbb6
8*.background: #181411
9*.cursorColor: #bfbbb6
10
11! black
12*.color0: #181411
13*.color8: #2b2722
14
15! red
16*.color1: #a63221
17*.color9: #a63221
18
19! green
20*.color2: #768948
21*.color10: #768948
22
23! yellow
24*.color3: #d6a22e
25*.color11: #d6a22e
26
27! blue
28*.color4: #33658a
29*.color12: #33658a
30
31! magenta
32*.color5: #585481
33*.color13: #7473a3
34
35! cyan
36*.color6: #599a82
37*.color14: #599a82
38
39! white
40*.color7: #9a9a9a
41*.color15: #bfbbb6
42```
43
44Simple/Suckless Terminal:
45```c
46/* Terminal colors (16 first used in escape sequence) */
47static const char *colorname[] = {
48
49 /* 8 normal colors */
50 [0] = "#181411", /* black */
51 [1] = "#a63221", /* red */
52 [2] = "#768948", /* green */
53 [3] = "#d6a22e", /* yellow */
54 [4] = "#33658a", /* blue */
55 [5] = "#585481", /* magenta */
56 [6] = "#599a82", /* cyan */
57 [7] = "#9a9a9a", /* white */
58
59 /* 8 bright colors */
60 [8] = "#2b2722", /* black */
61 [9] = "#a63221", /* red */
62 [10] = "#768948", /* green */
63 [11] = "#d6a22e", /* yellow */
64 [12] = "#33658a", /* blue */
65 [13] = "#7473a3", /* magenta */
66 [14] = "#599a82", /* cyan */
67 [15] = "#bfbbb6", /* white */
68
69 /* special colors */
70 [256] = "#181411", /* background */
71 [257] = "#bfbbb6", /* foreground */
72};
73```