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 = "#685c56",
darker_black = "#e5dedb",
black = "#ede6e3", -- nvim bg
@ -32,4 +34,25 @@ local colors = {
folder_bg = "#817a77",
}
return colors
M.base_16 = {
base00 = "#ede6e3",
base01 = "#dad3d0",
base02 = "#b6b0a6",
base03 = "#938d8a",
base04 = "#afabaa",
base05 = "#6c605a",
base06 = "#938680",
base07 = "#ede6e3",
base08 = "#978e81",
base09 = "#9c7b9c",
base0A = "#b6b0a6",
base0B = "#c99385",
base0C = "#ce9c85",
base0D = "#a09c80",
base0E = "#A3BE8C",
base0F = "#887c76",
}
M = require("base16").override_theme(M, "blossom")
return M