-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathxresources.tera
52 lines (44 loc) · 917 Bytes
/
xresources.tera
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
---
whiskers:
version: "2.2.0"
matrix:
- flavor
filename: "themes/{{ flavor.identifier }}.Xresources"
---
*background: #{{ base.hex }}
*foreground: #{{ text.hex }}
*cursorColor: #{{ rosewater.hex }}
! black
{%- if flavor.dark %}
*color0: #{{ surface1.hex }}
*color8: #{{ surface2.hex }}
{%- else %}
*color0: #{{ subtext1.hex }}
*color8: #{{ subtext0.hex }}
{%- endif %}
! red
*color1: #{{ red.hex }}
*color9: #{{ red.hex }}
! green
*color2: #{{ green.hex }}
*color10: #{{ green.hex }}
! yellow
*color3: #{{ yellow.hex }}
*color11: #{{ yellow.hex }}
! blue
*color4: #{{ blue.hex }}
*color12: #{{ blue.hex }}
! magenta
*color5: #{{ pink.hex }}
*color13: #{{ pink.hex }}
! cyan
*color6: #{{ teal.hex }}
*color14: #{{ teal.hex }}
! white
{%- if flavor.dark %}
*color7: #{{ subtext1.hex }}
*color15: #{{ subtext0.hex }}
{%- else %}
*color7: #{{ surface2.hex }}
*color15: #{{ surface1.hex }}
{%- endif %}