-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathalacritty.tera
73 lines (61 loc) · 1.84 KB
/
alacritty.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
whiskers:
version: 2.0.0
matrix:
- flavor
filename: "catppuccin-{{flavor.identifier}}.toml"
---
{%- set palette = flavor.colors -%}
[colors.primary]
background = "#{{ palette.base.hex }}"
foreground = "#{{ palette.text.hex }}"
dim_foreground = "#{{ palette.overlay1.hex }}"
bright_foreground = "#{{ palette.text.hex }}"
[colors.cursor]
text = "#{{ palette.base.hex }}"
cursor = "#{{ palette.rosewater.hex }}"
[colors.vi_mode_cursor]
text = "#{{ palette.base.hex }}"
cursor = "#{{ palette.lavender.hex }}"
[colors.search.matches]
foreground = "#{{ palette.base.hex }}"
background = "#{{ palette.subtext0.hex }}"
[colors.search.focused_match]
foreground = "#{{ palette.base.hex }}"
background = "#{{ palette.green.hex }}"
[colors.footer_bar]
foreground = "#{{ palette.base.hex }}"
background = "#{{ palette.subtext0.hex }}"
[colors.hints.start]
foreground = "#{{ palette.base.hex }}"
background = "#{{ palette.yellow.hex }}"
[colors.hints.end]
foreground = "#{{ palette.base.hex }}"
background = "#{{ palette.subtext0.hex }}"
[colors.selection]
text = "#{{ palette.base.hex }}"
background = "#{{ palette.rosewater.hex }}"
[colors.normal]
black = "#{{ palette.surface1.hex }}"
red = "#{{ palette.red.hex }}"
green = "#{{ palette.green.hex }}"
yellow = "#{{ palette.yellow.hex }}"
blue = "#{{ palette.blue.hex }}"
magenta = "#{{ palette.pink.hex }}"
cyan = "#{{ palette.teal.hex }}"
white = "#{{ palette.subtext1.hex }}"
[colors.bright]
black = "#{{ palette.surface2.hex }}"
red = "#{{ palette.red.hex }}"
green = "#{{ palette.green.hex }}"
yellow = "#{{ palette.yellow.hex }}"
blue = "#{{ palette.blue.hex }}"
magenta = "#{{ palette.pink.hex }}"
cyan = "#{{ palette.teal.hex }}"
white = "#{{ palette.subtext0.hex }}"
[[colors.indexed_colors]]
index = 16
color = "#{{ palette.peach.hex }}"
[[colors.indexed_colors]]
index = 17
color = "#{{ palette.rosewater.hex }}"