mirror of
https://github.com/gabehf/base46.git
synced 2026-03-10 16:00:30 -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 = "#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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue