mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-06 15:20:25 +00:00
9ffddb6b52
* move teleacope files, updater and related utils to https://github.com/NvChad/core * restructure config file and directory structure * expose mappings for better escape * allow multiple mappings for some * improve merge table function for the same * move autocommands to a seperate file * rearrange everything alphabetically where sanely possible * rearrange packer plugin list on the basis of trigerred state config structure now . ├── init.lua ├── LICENSE ├── lua │ ├── chadrc.lua │ ├── colors │ │ ├── highlights.lua │ │ ├── init.lua │ │ └── themes │ │ ├── chadracula.lua │ │ ├── everforest.lua │ │ ├── gruvchad.lua │ │ ├── javacafe.lua │ │ ├── mountain.lua │ │ ├── norchad.lua │ │ ├── one-light.lua │ │ ├── onedark.lua │ │ ├── tokyonight.lua │ │ └── tomorrow-night.lua │ ├── core │ │ ├── autocmds.lua │ │ ├── init.lua │ │ ├── mappings.lua │ │ ├── options.lua │ │ └── utils.lua │ ├── default_config.lua │ └── plugins │ ├── configs │ │ ├── autopairs.lua │ │ ├── autosave.lua │ │ ├── bufferline.lua │ │ ├── chadsheet.lua │ │ ├── compe.lua │ │ ├── dashboard.lua │ │ ├── gitsigns.lua │ │ ├── icons.lua │ │ ├── lspconfig.lua │ │ ├── luasnip.lua │ │ ├── nvimtree.lua │ │ ├── others.lua │ │ ├── statusline.lua │ │ ├── telescope.lua │ │ ├── treesitter.lua │ │ └── zenmode.lua │ ├── init.lua │ └── packerInit.lua └── README.md
36 lines
814 B
Lua
36 lines
814 B
Lua
local colors = {
|
|
white = "#b5bcc9",
|
|
darker_black = "#10171e",
|
|
black = "#131a21", -- nvim bg
|
|
black2 = "#1a2128",
|
|
one_bg = "#1e252c",
|
|
one_bg2 = "#2a3138",
|
|
one_bg3 = "#363d44",
|
|
grey = "#363d44",
|
|
grey_fg = "#4e555c",
|
|
grey_fg2 = "#51585f",
|
|
light_grey = "#545b62",
|
|
red = "#ef8891",
|
|
baby_pink = "#fca2aa",
|
|
pink = "#fca2af",
|
|
line = "#20272e", -- for lines like vertsplit
|
|
green = "#9ce5c0",
|
|
vibrant_green = "#a5d4af",
|
|
blue = "#99aee5",
|
|
nord_blue = "#9aa8cf",
|
|
yellow = "#fbdf90",
|
|
sun = "#fbdf9a",
|
|
purple = "#d7c1ed",
|
|
dark_purple = "#ccaced",
|
|
teal = "#92dbb6",
|
|
orange = "#EDA685",
|
|
cyan = "#b5c3ea",
|
|
statusline_bg = "#181f26",
|
|
lightbg = "#222930",
|
|
lightbg2 = "#1d242b",
|
|
pmenu_bg = "#ef8891",
|
|
folder_bg = "#99aee5",
|
|
}
|
|
|
|
return colors
|