mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 23:48:16 -07:00
re-write whole plugin
added features to have local nvchad themes, override specific colors aka variables in nvchad themes
This commit is contained in:
parent
dbd746da1b
commit
1db5a6eda8
76 changed files with 1592 additions and 1284 deletions
|
|
@ -1,4 +1,6 @@
|
|||
local colors = {
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
white = "#c6c6c6",
|
||||
darker_black = "#030303",
|
||||
black = "#080808",
|
||||
|
|
@ -32,4 +34,25 @@ local colors = {
|
|||
folder_bg = "#87afff",
|
||||
}
|
||||
|
||||
return colors
|
||||
M.base_16 = {
|
||||
base00 = "#080808",
|
||||
base01 = "#1c1c1c",
|
||||
base02 = "#292929",
|
||||
base03 = "#87875f",
|
||||
base04 = "#857b6f",
|
||||
base05 = "#c6c6c6",
|
||||
base06 = "#d2d2d2",
|
||||
base07 = "#dedede",
|
||||
base08 = "#c6c6c6",
|
||||
base09 = "#d7875f",
|
||||
base0A = "#d7ff87",
|
||||
base0B = "#87d75f",
|
||||
base0C = "#ffd7af",
|
||||
base0D = "#d7ff87",
|
||||
base0E = "#87afff",
|
||||
base0F = "#dc8c64",
|
||||
}
|
||||
|
||||
M = require("base16").override_theme(M, "wombat")
|
||||
|
||||
return M
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue