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 = "#ced4df",
darker_black = "#1a1a24",
black = "#20202A", -- nvim bg
@ -32,4 +34,25 @@ local colors = {
folder_bg = "#b8dceb",
}
return colors
M.base_16 = {
base00 = "#20202A",
base01 = "#2c2e3e",
base02 = "#3D4059",
base03 = "#313449",
base04 = "#63718b",
base05 = "#ced4df",
base06 = "#414560",
base07 = "#63718b",
base08 = "#ebb9b9",
base09 = "#e8cca7",
base0A = "#e6dfb8",
base0B = "#b1dba4",
base0C = "#b8dceb",
base0D = "#a3b8ef",
base0E = "#f6bbe7",
base0F = "#eAc1c1",
}
M = require("base16").override_theme(M, "aquarium")
return M