-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathish.tera
37 lines (35 loc) · 972 Bytes
/
ish.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
---
whiskers:
version: 2.1.0
matrix:
- flavor
filename: "themes/catppuccin-{{ flavor.identifier }}.json"
---
{%- set palette = flavor.colors -%}
{
"name": "Catppuccin {{ flavor.name }}",
"version": 1,
"shared": {
"backgroundColor": "#{{ palette.base.hex }}",
"colorPaletteOverrides": [
"#{{ palette.surface1.hex }}",
"#{{ palette.red.hex }}",
"#{{ palette.green.hex }}",
"#{{ palette.yellow.hex }}",
"#{{ palette.blue.hex }}",
"#{{ palette.pink.hex }}",
"#{{ palette.teal.hex }}",
"#{{ palette.subtext1.hex }}",
"#{{ palette.surface2.hex }}",
"#{{ palette.red.hex }}",
"#{{ palette.green.hex }}",
"#{{ palette.yellow.hex }}",
"#{{ palette.blue.hex }}",
"#{{ palette.pink.hex }}",
"#{{ palette.teal.hex }}",
"#{{ palette.subtext0.hex }}"
],
"cursorColor": "#{{ palette.rosewater.hex }}",
"foregroundColor": "#{{ palette.text.hex }}"
}
}