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 = "#F8F8F2",
|
|
darker_black = "#232531",
|
|
black = "#282A36", -- nvim bg
|
|
black2 = "#303341",
|
|
one_bg = "#373844", -- real bg of onedark
|
|
one_bg2 = "#44475a",
|
|
one_bg3 = "#565761",
|
|
grey = "#41434f",
|
|
grey_fg = "#5a5c68",
|
|
grey_fg2 = "#5a5c68",
|
|
light_grey = "#636571",
|
|
red = "#E95678",
|
|
baby_pink = "#DE8C92",
|
|
pink = "#FF79C6",
|
|
line = "#373844", -- for lines like vertsplit
|
|
green = "#69ff94",
|
|
vibrant_green = "#69FF94",
|
|
nord_blue = "#b389ef",
|
|
blue = "#BD93F9",
|
|
yellow = "#F1FA8C",
|
|
sun = "#FFFFA5",
|
|
purple = "#BD93F9",
|
|
dark_purple = "#BD93F9",
|
|
teal = "#0088cc",
|
|
orange = "#FFB86C",
|
|
cyan = "#8BE9FD",
|
|
statusline_bg = "#2b2d39",
|
|
lightbg = "#343642",
|
|
lightbg2 = "#2f313d",
|
|
pmenu_bg = "#b389ef",
|
|
folder_bg = "#BD93F9",
|
|
}
|
|
|
|
return colors
|