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 = "#9198B6", -- custom
darker_black = "#232738",
black = "#292D3E", -- nvim bg
@ -29,7 +31,28 @@ local colors = {
lightbg = "#363a4b",
lightbg2 = "#303445",
pmenu_bg = "#89ffe6", -- custom
folder_bg = "#82aaff"
folder_bg = "#82aaff",
}
return colors
M.base_16 = {
base00 = "#292d3e",
base01 = "#444267",
base02 = "#32374d",
base03 = "#676e95",
base04 = "#8796b0",
base05 = "#959dcb",
base06 = "#959dcb",
base07 = "#ffffff",
base08 = "#f07178",
base09 = "#f78c6c",
base0A = "#ffcb6b",
base0B = "#c3e88d",
base0C = "#89ddff",
base0D = "#82aaff",
base0E = "#c792ea",
base0F = "#ff5370",
}
M = require("base16").override_theme(M, "palenight")
return M