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
58
lua/hl_themes/doomchad.lua
Normal file
58
lua/hl_themes/doomchad.lua
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
white = "#bbc2cf",
|
||||
darker_black = "#22262e",
|
||||
black = "#282c34", -- nvim bg
|
||||
black2 = "#2e323a",
|
||||
one_bg = "#32363e", -- real bg of onedark
|
||||
one_bg2 = "#3c4048",
|
||||
one_bg3 = "#41454d",
|
||||
grey = "#494d55",
|
||||
grey_fg = "#53575f",
|
||||
grey_fg2 = "#5d6169",
|
||||
light_grey = "#676b73",
|
||||
red = "#ff6b5a",
|
||||
baby_pink = "#ff7665",
|
||||
pink = "#ff75a0",
|
||||
line = "#2f333b", -- for lines like vertsplit
|
||||
green = "#98be65",
|
||||
vibrant_green = "#a9cf76",
|
||||
nord_blue = "#47a5e5",
|
||||
blue = "#51afef",
|
||||
yellow = "#ECBE7B",
|
||||
sun = "#f2c481",
|
||||
purple = "#afa7e7",
|
||||
dark_purple = "#c678dd",
|
||||
teal = "#4db5bd",
|
||||
orange = "#ea9558",
|
||||
cyan = "#46D9FF",
|
||||
statusline_bg = "#2d3139",
|
||||
lightbg = "#3a3e46",
|
||||
lightbg2 = "#32363e",
|
||||
pmenu_bg = "#98be65",
|
||||
folder_bg = "#51afef",
|
||||
}
|
||||
|
||||
M.base_16 = {
|
||||
base00 = "#282c34",
|
||||
base01 = "#32363e",
|
||||
base02 = "#3c4048",
|
||||
base03 = "#4e525a",
|
||||
base04 = "#5a5e66",
|
||||
base05 = "#a7aebb",
|
||||
base06 = "#b3bac7",
|
||||
base07 = "#bbc2cf",
|
||||
base08 = "#ff6c6b",
|
||||
base09 = "#da8548",
|
||||
base0A = "#ECBE7B",
|
||||
base0B = "#98be65",
|
||||
base0C = "#66c4ff",
|
||||
base0D = "#48a6e6",
|
||||
base0E = "#9c94d4",
|
||||
base0F = "#c85a50",
|
||||
}
|
||||
|
||||
M = require("base16").override_theme(M, "doomchad")
|
||||
|
||||
return M
|
||||
Loading…
Add table
Add a link
Reference in a new issue