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 = "#D3C6AA",
darker_black = "#272f35",
black = "#2b3339", -- nvim bg
@ -32,4 +34,25 @@ local colors = {
folder_bg = "#7393b3",
}
return colors
M.base_16 = {
base00 = "#2b3339",
base01 = "#323c41",
base02 = "#3a4248",
base03 = "#868d80",
base04 = "#d3c6aa",
base05 = "#d3c6aa",
base06 = "#e9e8d2",
base07 = "#fff9e8",
base08 = "#7fbbb3",
base09 = "#d699b6",
base0A = "#83c092",
base0B = "#dbbc7f",
base0C = "#e69875",
base0D = "#a7c080",
base0E = "#e67e80",
base0F = "#d699b6",
}
M = require("base16").override_theme(M, "everforest")
return M