mirror of
https://github.com/gabehf/base46.git
synced 2026-03-10 07:50:31 -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 = "#abb2bf",
|
||||
darker_black = "#2a303c",
|
||||
black = "#2E3440", -- nvim bg
|
||||
|
|
@ -32,4 +34,25 @@ local colors = {
|
|||
folder_bg = "#7797b7",
|
||||
}
|
||||
|
||||
return colors
|
||||
M.base_16 = {
|
||||
base00 = "#2E3440",
|
||||
base01 = "#3B4252",
|
||||
base02 = "#434C5E",
|
||||
base03 = "#4C566A",
|
||||
base04 = "#D8DEE9",
|
||||
base05 = "#E5E9F0",
|
||||
base06 = "#ECEFF4",
|
||||
base07 = "#8FBCBB",
|
||||
base08 = "#88C0D0",
|
||||
base09 = "#81A1C1",
|
||||
base0A = "#88C0D0",
|
||||
base0B = "#A3BE8C",
|
||||
base0C = "#81A1C1",
|
||||
base0D = "#81A1C1",
|
||||
base0E = "#81A1C1",
|
||||
base0F = "#B48EAD",
|
||||
}
|
||||
|
||||
M = require("base16").override_theme(M, "nord")
|
||||
|
||||
return M
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue