Skip to content

Commit d2106bb

Browse files
A-Lamiamehalter
authored andcommitted
feat(palettes): add astromars
1 parent 56c8bf2 commit d2106bb

File tree

3 files changed

+73
-0
lines changed

3 files changed

+73
-0
lines changed

colors/astromars.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require("astrotheme").load "astromars"

lua/astrotheme/lib/config.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ M.default = {
1515
global = {},
1616
astrodark = {},
1717
astrolight = {},
18+
astromars = {},
1819
},
1920
highlights = {
2021
global = {},
2122
astrodark = {},
2223
astrolight = {},
24+
astromars = {},
2325
},
2426
plugin_default = "auto",
2527
plugins = {},
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
local colors = {
2+
none = "NONE",
3+
-------------------
4+
red = "#D05E60",
5+
blue = "#81A3AF",
6+
green = "#7EA857",
7+
yellow = "#F99600",
8+
purple = "#CF85BD",
9+
cyan = "#78BBA1",
10+
orange = "#DF8663",
11+
-------------------
12+
dark_red = "#E77777",
13+
light_blue = "#9CBDC9",
14+
light_green = "#9AC374",
15+
dark_yellow = "#FFA31A",
16+
light_purple = "#E8A1D7",
17+
light_cyan = "#88C3AB",
18+
dark_orange = "#FAA27F",
19+
-------------------
20+
base = "#0E0507",
21+
crust = "#12070A", -- neo-tree
22+
mantle = "#18090E", -- inactive
23+
-------------------
24+
overlay0 = "#3E222A",
25+
overlay1 = "#301B21", -- status
26+
overlay2 = "#231418",
27+
-------------------
28+
surface0 = "#17060A", -- current line
29+
surface1 = "#211014",
30+
surface2 = "#2E1B20",
31+
-------------------
32+
text = "#92757B", -- carrot
33+
subtext0 = "#3B2329",
34+
subtext1 = "#644B50", -- headings
35+
-------------------
36+
-- icon colors
37+
-------------------
38+
c = "#519aba",
39+
css = "#61afef",
40+
deb = "#a1b7ee",
41+
docker = "#384d54",
42+
html = "#de8c92",
43+
jpeg = "#c882e7",
44+
jpg = "#c882e7",
45+
js = "#ebcb8b",
46+
jsx = "#519ab8",
47+
kt = "#7bc99c",
48+
lock = "#c4c720",
49+
lua = "#51a0cf",
50+
mp3 = "#d39ede",
51+
mp4 = "#9ea3de",
52+
out = "#abb2bf",
53+
png = "#c882e7",
54+
py = "#a3b8ef",
55+
rb = "#ff75a0",
56+
robots = "#abb2bf",
57+
rpm = "#fca2aa",
58+
rs = "#dea584",
59+
toml = "#39bf39",
60+
ts = "#519aba",
61+
ttf = "#abb2bf",
62+
vue = "#7bc99c",
63+
woff = "#abb2bf",
64+
woff2 = "#abb2bf",
65+
zip = "#f9d71c",
66+
md = "#519aba",
67+
pkg = "#d39ede",
68+
}
69+
70+
return colors

0 commit comments

Comments
 (0)