1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
-- autogenerated from palette.json
local M = {}
local function tone_set(colors)
return setmetatable(colors, {
__call = function(self)
return self[1]
end,
})
end
M.palette = {
bg = tone_set {
high = "#171c22",
highest = "#1d2228",
low = "#0c1116",
lowest = "#070c11",
"#12161c",
},
blue = tone_set {
bright = "#abe4ff",
"#8bc3fc",
},
border = tone_set {
"#323b46",
variant = "#262f39",
},
cyan = tone_set {
bright = "#8ef4e2",
"#6dd3c2",
},
fg = tone_set {
high = "#e8eff8",
low = "#a8afb7",
"#c8ced7",
},
green = tone_set {
bright = "#abf3b3",
"#8bd294",
},
orange = tone_set {
bright = "#ffc08e",
"#ff9f6f",
},
pink = tone_set {
bright = "#ffccd4",
"#e5acb4",
},
purple = tone_set {
bright = "#e4d1ff",
"#c4b1f6",
},
red = tone_set {
bright = "#ffb2a9",
"#ff928a",
},
yellow = tone_set {
bright = "#ffd278",
"#ecb256",
},
transparent = "#00000000",
}
return M
|