diff options
-rw-r--r-- | .config/kitty/kitty.conf | 2 | ||||
-rw-r--r-- | .config/kitty/mocha.conf | 80 |
2 files changed, 81 insertions, 1 deletions
diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index 1eb1ea4..9f06d30 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf | |||
@@ -74,7 +74,7 @@ inactive_tab_font_style normal | |||
74 | 74 | ||
75 | #: Color scheme {{{ | 75 | #: Color scheme {{{ |
76 | 76 | ||
77 | include rose-pine.conf | 77 | include mocha.conf |
78 | 78 | ||
79 | #: }}} | 79 | #: }}} |
80 | 80 | ||
diff --git a/.config/kitty/mocha.conf b/.config/kitty/mocha.conf new file mode 100644 index 0000000..3f48800 --- /dev/null +++ b/.config/kitty/mocha.conf | |||
@@ -0,0 +1,80 @@ | |||
1 | # vim:ft=kitty | ||
2 | |||
3 | ## name: Catppuccin Kitty Mocha | ||
4 | ## author: Catppuccin Org | ||
5 | ## license: MIT | ||
6 | ## upstream: https://github.com/catppuccin/kitty/blob/main/mocha.conf | ||
7 | ## blurb: Soothing pastel theme for the high-spirited! | ||
8 | |||
9 | |||
10 | |||
11 | # The basic colors | ||
12 | foreground #CDD6F4 | ||
13 | background #1E1E2E | ||
14 | selection_foreground #1E1E2E | ||
15 | selection_background #F5E0DC | ||
16 | |||
17 | # Cursor colors | ||
18 | cursor #F5E0DC | ||
19 | cursor_text_color #1E1E2E | ||
20 | |||
21 | # URL underline color when hovering with mouse | ||
22 | url_color #F5E0DC | ||
23 | |||
24 | # Kitty window border colors | ||
25 | active_border_color #B4BEFE | ||
26 | inactive_border_color #6C7086 | ||
27 | bell_border_color #F9E2AF | ||
28 | |||
29 | # OS Window titlebar colors | ||
30 | wayland_titlebar_color system | ||
31 | macos_titlebar_color system | ||
32 | |||
33 | # Tab bar colors | ||
34 | active_tab_foreground #11111B | ||
35 | active_tab_background #CBA6F7 | ||
36 | inactive_tab_foreground #CDD6F4 | ||
37 | inactive_tab_background #181825 | ||
38 | tab_bar_background #11111B | ||
39 | |||
40 | # Colors for marks (marked text in the terminal) | ||
41 | mark1_foreground #1E1E2E | ||
42 | mark1_background #B4BEFE | ||
43 | mark2_foreground #1E1E2E | ||
44 | mark2_background #CBA6F7 | ||
45 | mark3_foreground #1E1E2E | ||
46 | mark3_background #74C7EC | ||
47 | |||
48 | # The 16 terminal colors | ||
49 | |||
50 | # black | ||
51 | color0 #45475A | ||
52 | color8 #585B70 | ||
53 | |||
54 | # red | ||
55 | color1 #F38BA8 | ||
56 | color9 #F38BA8 | ||
57 | |||
58 | # green | ||
59 | color2 #A6E3A1 | ||
60 | color10 #A6E3A1 | ||
61 | |||
62 | # yellow | ||
63 | color3 #F9E2AF | ||
64 | color11 #F9E2AF | ||
65 | |||
66 | # blue | ||
67 | color4 #89B4FA | ||
68 | color12 #89B4FA | ||
69 | |||
70 | # magenta | ||
71 | color5 #F5C2E7 | ||
72 | color13 #F5C2E7 | ||
73 | |||
74 | # cyan | ||
75 | color6 #94E2D5 | ||
76 | color14 #94E2D5 | ||
77 | |||
78 | # white | ||
79 | color7 #BAC2DE | ||
80 | color15 #A6ADC8 | ||