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
836 B
Lua
36 lines
836 B
Lua
local colors = {
|
|
white = "#54555b",
|
|
darker_black = "#f5f5f5",
|
|
black = "#fafafa", -- nvim bg
|
|
black2 = "#f1f1f1",
|
|
one_bg = "#f0f0f0", -- real bg of onedark
|
|
one_bg2 = "#ececec",
|
|
one_bg3 = "#e7e7e7",
|
|
grey = "#cbcbcb",
|
|
grey_fg = "#c6c6c6",
|
|
grey_fg2 = "#b7b7b7",
|
|
light_grey = "#b7b7b7",
|
|
red = "#e6676e",
|
|
baby_pink = "#F07178",
|
|
pink = "#ff75a0",
|
|
line = "#e9e9e9", -- for lines like vertsplit
|
|
green = "#7b90c7",
|
|
vibrant_green = "#7eca9c",
|
|
nord_blue = "#5e5f65",
|
|
blue = "#28a2f4",
|
|
yellow = "#7e7e7e",
|
|
sun = "#dea95f",
|
|
purple = "#a28dcd",
|
|
dark_purple = "#8e79b9",
|
|
teal = "#519ABA",
|
|
orange = "#FF6A00",
|
|
cyan = "#a3b8ef",
|
|
statusline_bg = "#f0f0f0",
|
|
lightbg = "#d6d6d6",
|
|
lightbg2 = "#5e5f65",
|
|
pmenu_bg = "#5e5f65",
|
|
folder_bg = "#6C6C6C",
|
|
}
|
|
|
|
return colors
|