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 = "#F0f0f0",
darker_black = "#090909",
black = "#0f0f0f", -- nvim bg
@ -32,4 +34,25 @@ local colors = {
folder_bg = "#A39EC4",
}
return colors
M.base_16 = {
base00 = "#0f0f0f",
base01 = "#151515",
base02 = "#191919",
base03 = "#222222",
base04 = "#535353",
base05 = "#f0f0f0",
base06 = "#d8d8d8",
base07 = "#414141",
base08 = "#ac8a8c",
base09 = "#d3d0ad",
base0A = "#ACA98A",
base0B = "#8aac8b",
base0C = "#9EC3C4",
base0D = "#8fb4b5",
base0E = "#C49EC4",
base0F = "#9d9a7b",
}
M = require("base16").override_theme(M, "mountain")
return M