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 = "#ced4df",
|
|
darker_black = "#1a1a24",
|
|
black = "#20202A", -- nvim bg
|
|
black2 = "#25252f",
|
|
one_bg = "#2a2a34",
|
|
one_bg2 = "#34343e",
|
|
one_bg3 = "#3e3e48",
|
|
grey = "#484852",
|
|
grey_fg = "#4e4e58",
|
|
grey_fg2 = "#54545e",
|
|
light_grey = "#5a5a64",
|
|
red = "#ebb9b9",
|
|
baby_pink = "#EAC1C1",
|
|
pink = "#E9D1D1",
|
|
line = "#292933", -- for lines like vertsplit
|
|
green = "#b1dba4",
|
|
vibrant_green = "#BEE0A8",
|
|
blue = "#CDDBF9",
|
|
nord_blue = "#BCCAEB",
|
|
yellow = "#E6DFB8",
|
|
sun = "#EEE8BA",
|
|
purple = "#f6bbe7",
|
|
dark_purple = "#E8B6E9",
|
|
teal = "#AEDCB7",
|
|
orange = "#E8CCA7",
|
|
cyan = "#b8dceb",
|
|
statusline_bg = "#262630",
|
|
lightbg = "#2e2e38",
|
|
lightbg2 = "#2a2a34",
|
|
pmenu_bg = "#ebb9b9",
|
|
folder_bg = "#b8dceb",
|
|
}
|
|
|
|
return colors
|