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 = "#c7b89d",
|
|
darker_black = "#1e2122",
|
|
black = "#222526", -- nvim bg
|
|
black2 = "#26292a",
|
|
one_bg = "#2b2e2f",
|
|
one_bg2 = "#3b3e3f",
|
|
one_bg3 = "#313435",
|
|
grey = "#46494a",
|
|
grey_fg = "#5d6061",
|
|
grey_fg2 = "#5b5e5f",
|
|
light_grey = "#585b5c",
|
|
red = "#ec6b64",
|
|
baby_pink = "#ce8196",
|
|
pink = "#ff75a0",
|
|
line = "#2c2f30", -- for lines like vertsplit
|
|
green = "#89b482",
|
|
vibrant_green = "#a9b665",
|
|
nord_blue = "#6f8faf",
|
|
blue = "#6d8dad",
|
|
yellow = "#d6b676",
|
|
sun = "#d1b171",
|
|
purple = "#b4bbc8",
|
|
dark_purple = "#cc7f94",
|
|
teal = "#749689",
|
|
orange = "#e78a4e",
|
|
cyan = "#82b3a8",
|
|
statusline_bg = "#252829",
|
|
lightbg = "#2d3139",
|
|
lightbg2 = "#262a32",
|
|
pmenu_bg = "#89b482",
|
|
folder_bg = "#6d8dad",
|
|
}
|
|
|
|
return colors
|