mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-06 15:20:25 +00:00
36 lines
814 B
Lua
36 lines
814 B
Lua
local colors = {
|
|
white = "#685c56",
|
|
darker_black = "#e5dedb",
|
|
black = "#ede6e3", -- nvim bg
|
|
black2 = "#e0d9d6",
|
|
one_bg = "#e2dbd8",
|
|
one_bg2 = "#d1cac7",
|
|
one_bg3 = "#cac3c0",
|
|
grey = "#bab3b0",
|
|
grey_fg = "#aea7a4",
|
|
grey_fg2 = "#a29b98",
|
|
light_grey = "#958e8b",
|
|
red = "#c99780",
|
|
baby_pink = "#ce9c85",
|
|
pink = "#ce9c85",
|
|
line = "#d9d2cf", -- for lines like vertsplit
|
|
green = "#839773",
|
|
vibrant_green = "#899d79",
|
|
blue = "#6c8aa8",
|
|
nord_blue = "#5e5f65",
|
|
yellow = "#a9a29f",
|
|
sun = "#eaa18a",
|
|
purple = "#a685a6",
|
|
dark_purple = "#9c7b9c",
|
|
teal = "#62809e",
|
|
orange = "#e39a83",
|
|
cyan = "#75998e",
|
|
statusline_bg = "#e4ddda",
|
|
lightbg = "#cac3c0",
|
|
lightbg2 = "#dbd4d1",
|
|
pmenu_bg = "#857e7b",
|
|
folder_bg = "#817a77",
|
|
}
|
|
|
|
return colors
|