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 = "#D9E0EE",
darker_black = "#191828",
black = "#1E1D2D", -- nvim bg
@ -32,4 +34,25 @@ local colors = {
folder_bg = "#96CDFB",
}
return colors
M.base_16 = {
base00 = "#1E1D2D",
base01 = "#282737",
base02 = "#2f2e3e",
base03 = "#383747",
base04 = "#414050",
base05 = "#bfc6d4",
base06 = "#ccd3e1",
base07 = "#D9E0EE",
base08 = "#DDB6F2",
base09 = "#89DCEB",
base0A = "#F8BD96",
base0B = "#ABE9B3",
base0C = "#F5C2E7",
base0D = "#96CDFB",
base0E = "#F28FAD",
base0F = "#E8A2AF",
}
M = require("base16").override_theme(M, "catppuccin")
return M