1Xft.dpi: 96
 2Xft.autohint: 0
 3Xft.lcdfilter: lcddefault
 4Xft.hintstyle: hintfull
 5Xft.hinting: 1
 6Xft.antialias: 1
 7Xft.rgba: rgb
 8
 9! Xresources has a base colour and a bright variant. The first of each colour
10! pair is "dark" and the second is "bright". In the context of most shell
11! themes, "dark" variants seem to be used as foreground accents, while "light"
12! variants are highlights behind the default foreground colour.
13
14{{ if eq .theme_variant "dark" -}}
15! Everforest hard dark
16! https://github.com/sainnhe/everforest/blob/master/palette.md
17
18*background: #272E33
19*foreground: #D3C6AA
20
21! black
22*color0: #1E2326
23*color8: #7A8478
24
25! red
26*color1: #E67E80
27*color9: #E67E80
28
29! green
30*color2: #A7C080
31*color10: #A7C080
32
33! yellow
34*color3: #DBBC7F
35*color11: #DBBC7F
36
37! blue
38*color4: #7FBBB3
39*color12: #7FBBB3
40
41! magenta
42*color5: #D699B6
43*color13: #D699B6
44
45! cyan
46*color6: #7FBBB3
47*color14: #7FBBB3
48
49! white
50*color7: #D3C6AA
51*color15: #D3C6AA
52{{- end }}
53{{ if eq .theme_variant "light" -}}
54! Everforest soft light
55! https://github.com/sainnhe/everforest/blob/master/palette.md
56
57*background: #F3EAD3
58*foreground: #5C6A72
59
60! black
61*color0: #5C5F77
62*color8: #939f91
63
64! red
65*color1: #F85552
66*color9: #F85552
67
68! green
69*color2: #8DA101
70*color10: #8DA101
71
72! yellow
73*color3: #DFA000
74*color11: #DFA000
75
76! blue
77*color4: #3A94C5
78*color12: #3A94C5
79
80! magenta
81*color5: #DF69BA
82*color13: #DF69BA
83
84! cyan
85*color6: #3A94C5
86*color14: #3A94C5
87
88! white
89*color7: #708089
90*color15: #708089
91{{- end }}