Skip to content

Commit 63ee2b7

Browse files
jpweijerssiduck
andauthored
feat: catppuccin-latte theme
* added catppuccin latte theme * Update color definitions in catppuccin-latte theme --------- Co-authored-by: Jean-Paul Weijers <jpweijers@users.noreply.github.com> Co-authored-by: Sidhanth Rathod <siduck@tutanota.com>
1 parent 45b336e commit 63ee2b7

1 file changed

Lines changed: 66 additions & 0 deletions

File tree

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
local M = {}
2+
3+
M.base_30 = {
4+
white = "#7287FD",
5+
darker_black = "#E6E9EF",
6+
black = "#EFF1F5",
7+
black2 = "#dbdfe9",
8+
one_bg = "#d1d6e3",
9+
one_bg2 = "#c7cddd",
10+
one_bg3 = "#bdc4d7",
11+
grey = "#b3bbd1",
12+
grey_fg = "#a9b2cb",
13+
grey_fg2 = "#9fa9c5",
14+
light_grey = "#8b97b9",
15+
red = "#E64553",
16+
baby_pink = "#DD7878",
17+
pink = "#EA76CB",
18+
line = "#d4d6dc",
19+
green = "#40A02B",
20+
vibrant_gree = "#179299",
21+
nord_blue = "#1E66F5",
22+
blue = "#04A5E5",
23+
yellow = "#DF8E1D",
24+
sun = "#DFAF1D",
25+
purple = "#8839EF",
26+
dark_purple = "#DD7878",
27+
teal = "#179299",
28+
orange = "#FE640B",
29+
cyan = "#209FB5",
30+
statusline_bg = "#DCE0E8",
31+
lightbg = "#d0d5df",
32+
pmenu_bg = "#6c6e83",
33+
folder_bg = "#666983",
34+
}
35+
36+
M.base_16 = {
37+
base00 = "#EFF1F5",
38+
base01 = "#e5e8ef",
39+
base02 = "#dbdfe9",
40+
base03 = "#c3c7d3",
41+
base04 = "#b3b7c5",
42+
base05 = "#4C4F69",
43+
base06 = "#5C5F77",
44+
base07 = "#6C6F85",
45+
base08 = "#E64553",
46+
base09 = "#FE640B",
47+
base0A = "#DF8E1D",
48+
base0B = "#40A02B",
49+
base0C = "#04A5E5",
50+
base0D = "#1E66F5",
51+
base0E = "#8839EF",
52+
base0F = "#FE640B",
53+
}
54+
55+
M.polish_hl = {
56+
treesitter = {
57+
["@property"] = { fg = M.base_30.teal },
58+
["@variable.builtin"] = { fg = M.base_30.red },
59+
},
60+
}
61+
62+
M.type = "light"
63+
64+
M = require("base46").override_theme(M, "catppuccin_latte")
65+
66+
return M

0 commit comments

Comments
 (0)