re-write whole plugin

added features to have local nvchad themes, override specific colors aka variables in nvchad themes
This commit is contained in:
siduck 2022-05-03 00:07:51 +05:30
parent dbd746da1b
commit 1db5a6eda8
76 changed files with 1592 additions and 1284 deletions

View file

@ -1,4 +1,6 @@
local colors = {
local M = {}
M.base_30 = {
white = "#c0caf5",
darker_black = "#16161e",
black = "#1a1b26", -- nvim bg
@ -32,4 +34,23 @@ local colors = {
folder_bg = "#7aa2f7",
}
return colors
M.base_16 = {
base0A = "#e0af68",
base04 = "#565c64",
base07 = "#c0caf5",
base05 = "#a9b1d6",
base0E = "#9d7cd8",
base0D = "#7aa2f7",
base0C = "#2ac3de",
base0B = "#9ece6a",
base02 = "#3b4261",
base0F = "#9abdf5",
base03 = "#545c7e",
base08 = "#f7768e",
base01 = "#3b4261",
base00 = "#1A1B26",
base09 = "#ff9e64",
base06 = "#bbc5f0",
}
return M