Skip to content

Commit 49269f7

Browse files
authored
feat: add Catppuccin themes (#562)
* feat: add catppuccin mocha theme * feat(catppuccin mocha): use a slightly lighter shade of black for the background * fix(catppuccin mocha): fixed the mainBackgroundColor being too dark * feat: add Catppuccin Frappé * feat: add Catppuccin Macchiato * feat: add Catppuccin Latte * fix(catppuccin latte): use dark mode so colors are applied properly * fix(themes/catppuccin latte): made it a light theme and changed colors thanks @diced for information regarding this in my pr
1 parent 129ba0c commit 49269f7

File tree

4 files changed

+129
-0
lines changed

4 files changed

+129
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "Catppuccin Frappé",
3+
"colorScheme": "dark",
4+
"colors": {
5+
"blue": [
6+
"#FFFFFF",
7+
"#b8caf4",
8+
"#a2baf1",
9+
"#7599ea",
10+
"#5f89e7",
11+
"#8c99ee",
12+
"#8ca1ee",
13+
"#8cb2ee",
14+
"#8cbaee",
15+
"#8caaee"
16+
],
17+
"dark": [
18+
"#c6d0f5",
19+
"#949cbb",
20+
"#838ba7",
21+
"#737994",
22+
"#626880",
23+
"#51576d",
24+
"#414559",
25+
"#303446",
26+
"#292c3c",
27+
"#232634"
28+
]
29+
},
30+
"primaryColor": "blue",
31+
"mainBackgroundColor": "var(--mantine-color-dark-9)"
32+
}

themes/catppuccin_latte.theme.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "Catppuccin Latte",
3+
"colorScheme": "light",
4+
"colors": {
5+
"blue": [
6+
"#FFFFFF",
7+
"#3676f6",
8+
"#0a57ee",
9+
"#094ed6",
10+
"#1d42f5",
11+
"#1d54f5",
12+
"#1d65f5",
13+
"#1d77f5",
14+
"#1d89f5",
15+
"#1e66f5"
16+
],
17+
"gray": [
18+
"#ccd0da",
19+
"#ccd0da",
20+
"#9ca0b0",
21+
"#ccd0da",
22+
"#acb0be",
23+
"#bcc0cc",
24+
"#5c5f77",
25+
"#eff1f5",
26+
"#e6e9ef",
27+
"#dce0e8"
28+
]
29+
},
30+
"white": "#eff1f5",
31+
"primaryColor": "blue",
32+
"mainBackgroundColor": "#e6e9ef"
33+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "Catppuccin Macchiato",
3+
"colorScheme": "dark",
4+
"colors": {
5+
"blue": [
6+
"#FFFFFF",
7+
"#a1bdf6",
8+
"#729cf1",
9+
"#5b8cef",
10+
"#899bf4",
11+
"#89a4f4",
12+
"#89acf4",
13+
"#89b5f4",
14+
"#89bef4",
15+
"#8aadf4"
16+
],
17+
"dark": [
18+
"#cad3f5",
19+
"#8087a2",
20+
"#8087a2",
21+
"#6e738d",
22+
"#5b6078",
23+
"#494d64",
24+
"#363a4f",
25+
"#24273a",
26+
"#1e2030",
27+
"#181926"
28+
]
29+
},
30+
"primaryColor": "blue",
31+
"mainBackgroundColor": "var(--mantine-color-dark-9)"
32+
}

themes/catppuccin_mocha.theme.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "Catppuccin Mocha",
3+
"colorScheme": "dark",
4+
"colors": {
5+
"blue": [
6+
"#FFFFFF",
7+
"#b9d3fc",
8+
"#a1c3fb",
9+
"#70a4f8",
10+
"#5894f7",
11+
"#89a1fa",
12+
"#89aafa",
13+
"#89b4fa",
14+
"#89bdfa",
15+
"#89c6fa"
16+
],
17+
"dark": [
18+
"#cdd6f4",
19+
"#9399b2",
20+
"#7f849c",
21+
"#6c7086",
22+
"#585b70",
23+
"#45475a",
24+
"#313244",
25+
"#1e1e2e",
26+
"#181825",
27+
"#11111b"
28+
]
29+
},
30+
"primaryColor": "blue",
31+
"mainBackgroundColor": "var(--mantine-color-dark-9)"
32+
}

0 commit comments

Comments
 (0)