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 = "#b0b0b0",
darker_black = "#171d23",
black = "#1a2026", -- nvim bg
@ -32,4 +34,25 @@ local colors = {
folder_bg = "#6b8bab",
}
return colors
M.base_16 = {
base00 = "#1a2026",
base01 = "#242a30",
base02 = "#292f35",
base03 = "#2e343a",
base04 = "#42484e",
base05 = "#d3d3d3",
base06 = "#d8d8d8",
base07 = "#b0b0b0",
base08 = "#c49ea0",
base09 = "#b89294",
base0A = "#ccc9aa",
base0B = "#8aac8b",
base0C = "#8aabac",
base0D = "#6b8bab",
base0E = "#8f8aac",
base0F = "#8b6567",
}
M = require("base16").override_theme(M, "chadtain")
return M