Files
Astrobox/lua/astrobox/colors.lua
Niverton b4d05200d3 Now standalone plugin
First impl of standalone colorscheme
2023-12-09 23:20:15 +01:00

132 lines
3.0 KiB
Lua

return {
none = nil,
bg = {
dark = {
soft = "#32302f",
default = "#282828",
hard = "#1d2021",
},
light = {
soft = "#f2e5bc",
default = "#fbf1c7",
hard = "#f9f5d7",
},
harder = {
dark = {
soft = "#282828",
default = "#1d2021",
hard = "#171a1a",
},
light = {
soft = "#fbf1c7",
default = "#f9f5d7",
hard = "#faf7df",
},
},
softer = {
dark = {
soft = "#343230",
default = "#32302f",
hard = "#282828",
},
light = {
soft = "#f1e3ba",
default = "#f2e5bc",
hard = "#fbf1c7",
},
},
},
gray = "#928374",
grayscale = {
dark = {
"#3c3836",
"#504945",
"#665c54",
"#7c6f64",
},
light = {
"#ebdbb2",
"#d5c4a1",
"#bdae93",
"#a89984",
},
},
colors = {
dark = {
red = "#fb4934",
green = "#b8bb26",
yellow = "#fabd2f",
blue = "#83a598",
purple = "#d3869b",
aqua = "#8ec07c",
orange = "#fe8019",
},
light = {
red = "#9d0006",
green = "#79740e",
yellow = "#b57614",
blue = "#076678",
purple = "#8f3f71",
aqua = "#427b58",
orange = "#af3a03",
},
},
term_colors = {
red = "#cc241d",
green = "#98971a",
yellow = "#d79921",
blue = "#458588",
purple = "#b16286",
aqua = "#689d6a",
orange = "#d65d0e",
},
colored_backgrounds = {
dark = {
soft = {
red = "#5a3530",
green = "#4d4c2d",
yellow = "#6e5a2f",
blue = "#4a534f",
},
default = {
red = "#522f2a",
green = "#454528",
yellow = "#67552a",
blue = "#434e4a",
},
hard = {
red = "#492825",
green = "#3c3f22",
yellow = "#5f4f25",
blue = "#3c4845",
},
},
light = {
soft = {
red = "#d08973",
green = "#c2b876",
yellow = "#e0c48a",
blue = "#acbfa8",
},
default = {
red = "#d5917a",
green = "#c7bf7d",
yellow = "#e6cc91",
blue = "#b2c7af",
},
hard = {
red = "#d49383",
green = "#c6c187",
yellow = "#e5cf9d",
blue = "#b0cabb",
},
},
},
}