alacritty theme catppuccin mocha
dblume

dblume commited on 2025-05-07 20:02:07
Showing 2 changed files, with 69 additions and 0 deletions.


https://github.com/catppuccin/alacritty
... ...
@@ -1,3 +1,7 @@
1
+general.import = [
2
+  "~/.config/alacritty/catppuccin-mocha.toml"
3
+]
4
+
1 5
 [font.normal]
2 6
 family = "DejaVu Sans Mono for Powerline"
3 7
 
... ...
@@ -0,0 +1,65 @@
1
+[colors.primary]
2
+background = "#1e1e2e"
3
+foreground = "#cdd6f4"
4
+dim_foreground = "#7f849c"
5
+bright_foreground = "#cdd6f4"
6
+
7
+[colors.cursor]
8
+text = "#1e1e2e"
9
+cursor = "#f5e0dc"
10
+
11
+[colors.vi_mode_cursor]
12
+text = "#1e1e2e"
13
+cursor = "#b4befe"
14
+
15
+[colors.search.matches]
16
+foreground = "#1e1e2e"
17
+background = "#a6adc8"
18
+
19
+[colors.search.focused_match]
20
+foreground = "#1e1e2e"
21
+background = "#a6e3a1"
22
+
23
+[colors.footer_bar]
24
+foreground = "#1e1e2e"
25
+background = "#a6adc8"
26
+
27
+[colors.hints.start]
28
+foreground = "#1e1e2e"
29
+background = "#f9e2af"
30
+
31
+[colors.hints.end]
32
+foreground = "#1e1e2e"
33
+background = "#a6adc8"
34
+
35
+[colors.selection]
36
+text = "#1e1e2e"
37
+background = "#f5e0dc"
38
+
39
+[colors.normal]
40
+black = "#45475a"
41
+red = "#f38ba8"
42
+green = "#a6e3a1"
43
+yellow = "#f9e2af"
44
+blue = "#89b4fa"
45
+magenta = "#f5c2e7"
46
+cyan = "#94e2d5"
47
+white = "#bac2de"
48
+
49
+[colors.bright]
50
+black = "#585b70"
51
+red = "#f38ba8"
52
+green = "#a6e3a1"
53
+yellow = "#f9e2af"
54
+blue = "#89b4fa"
55
+magenta = "#f5c2e7"
56
+cyan = "#94e2d5"
57
+white = "#a6adc8"
58
+
59
+[[colors.indexed_colors]]
60
+index = 16
61
+color = "#fab387"
62
+
63
+[[colors.indexed_colors]]
64
+index = 17
65
+color = "#f5e0dc"
0 66