mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 15:38:15 -07:00
36 lines
No EOL
849 B
Lua
36 lines
No EOL
849 B
Lua
local colors = {
|
|
white = "#e0d6bd",
|
|
darker_black = "#16171c",
|
|
black = "#18191f", -- nvim bg
|
|
black2 = "#2c2e38",
|
|
one_bg = "#404452",
|
|
one_bg2 = "#55596b",
|
|
one_bg3 = "#686d85",
|
|
grey = "#5f6378",
|
|
grey_fg = "#6c7189",
|
|
grey_fg2 = "#7b7f97",
|
|
light_grey = "#8b8fa4",
|
|
red = "#a67476",
|
|
baby_pink = "#f7eaed",
|
|
pink = "#d1a3b1",
|
|
line = "#2d2f2f", -- for lines like vertsplit
|
|
green = "#8c9383",
|
|
vibrant_green = "#909963",
|
|
nord_blue = "#8d9bb3",
|
|
blue = "#5a6986",
|
|
yellow = "#ccb89c",
|
|
sun = "#deb88a",
|
|
purple = "#958793",
|
|
dark_purple = "#cbc1e3",
|
|
teal = "#7fb1af",
|
|
orange = "#c8916d",
|
|
cyan = "#90a0a0",
|
|
statusline_bg = "#22242c",
|
|
lightbg = "#282c3c",
|
|
lightbg2 = "#2c2e38",
|
|
pmenu_bg = "#90a0a0",
|
|
folder_bg = "#90a0a0",
|
|
}
|
|
|
|
return colors
|
|
|