Skip to content

Commit 92e74ca

Browse files
committed
add vesper theme #379
1 parent 3993c7d commit 92e74ca

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

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

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
-- Inspired by the VSCode Vesper++ theme :: https://github.com/ObstinateM/vesperpp
2+
3+
local M = {}
4+
5+
M.base_30 = {
6+
white = "#FFFFFF",
7+
darker_black = "#0a0a0a",
8+
black = "#101010",
9+
black2 = "#1C1C1C",
10+
one_bg = "#232323",
11+
one_bg2 = "#282828",
12+
one_bg3 = "#343434",
13+
grey = "#505050",
14+
grey_fg = "#595959",
15+
grey_fg2 = "#6e6e6e",
16+
light_grey = "#7E7E7E",
17+
red = "#FF8080",
18+
baby_pink = "#FFC799",
19+
pink = "#FBADFF",
20+
line = "#282828",
21+
green = "#99FFE4",
22+
vibrant_green = "#99FFE4",
23+
blue = "#FFC799",
24+
nord_blue = "#FFC799",
25+
yellow = "#FFC799",
26+
sun = "#FFCFA8",
27+
purple = "#FBADFF",
28+
dark_purple = "#FBADFF",
29+
teal = "#99FFE4",
30+
orange = "#FFC799",
31+
cyan = "#99FFE4",
32+
statusline_bg = "#1C1C1C",
33+
lightbg = "#282828",
34+
pmenu_bg = "#FFC799",
35+
folder_bg = "#FFC799",
36+
}
37+
38+
M.base_16 = {
39+
base00 = "#101010",
40+
base01 = "#1C1C1C",
41+
base02 = "#232323",
42+
base03 = "#595959",
43+
base04 = "#A0A0A0",
44+
base05 = "#FFFFFF",
45+
base06 = "#FFFFFF",
46+
base07 = "#FFFFFF",
47+
base08 = "#FFC799",
48+
base09 = "#FFC799",
49+
base0A = "#FBADFF",
50+
base0B = "#99FFE4",
51+
base0C = "#838383",
52+
base0D = "#FFC799",
53+
base0E = "#FBADFF",
54+
base0F = "#FF8080",
55+
}
56+
57+
M.type = "dark"
58+
59+
M = require("base46").override_theme(M, "vesper")
60+
61+
return M

0 commit comments

Comments
 (0)