Skip to content

Commit 5956688

Browse files
feat: scaryforest theme
1 parent e2ccd9c commit 5956688

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

Diff for: lua/base46/themes/scaryforest.lua

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
local M = {}
2+
3+
M.base_30 = {
4+
white = "#dde5e0",
5+
darker_black = "#0d1917",
6+
black = "#121f1d",
7+
black2 = "#182724",
8+
one_bg = "#1d2b28",
9+
one_bg2 = "#243531",
10+
one_bg3 = "#2b3e39",
11+
grey = "#3a4d47",
12+
grey_fg = "#455952",
13+
grey_fg2 = "#50645c",
14+
light_grey = "#5c7068",
15+
red = "#3ec195",
16+
baby_pink = "#ab7d7d",
17+
pink = "#c993b5",
18+
line = "#1c2926",
19+
green = "#83aa7c",
20+
vibrant_green = "#78b573",
21+
nord_blue = "#6ba89f",
22+
blue = "#77beb4",
23+
yellow = "#c0b283",
24+
sun = "#d0c191",
25+
purple = "#8c9f87",
26+
dark_purple = "#7f9279",
27+
teal = "#88bdaa",
28+
orange = "#c2a97d",
29+
cyan = "#7ebdae",
30+
statusline_bg = "#162420",
31+
lightbg = "#22312e",
32+
lightbg2 = "#1b2926",
33+
pmenu_bg = "#83aa7c",
34+
folder_bg = "#77beb4",
35+
}
36+
37+
M.base_16 = {
38+
base00 = "#121f1d",
39+
base01 = "#1d2b28",
40+
base02 = "#263632",
41+
base03 = "#2e403b",
42+
base04 = "#3a4d47",
43+
base05 = "#dde5e0",
44+
base06 = "#e8f0eb",
45+
base07 = "#ecf4ef",
46+
base08 = "#9d6d6d",
47+
base09 = "#c2a97d",
48+
base0A = "#c0b283",
49+
base0B = "#83aa7c",
50+
base0C = "#7ebdae",
51+
base0D = "#77beb4",
52+
base0E = "#8c9f87",
53+
base0F = "#7a8d76",
54+
}
55+
56+
M.type = "dark"
57+
58+
M = require("base46").override_theme(M, "scaryforest")
59+
60+
return M

0 commit comments

Comments
 (0)