|
|
|
|
@ -1,32 +1,34 @@
|
|
|
|
|
return {
|
|
|
|
|
base_16 = {
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
|
|
M.base_16 = {
|
|
|
|
|
base00 = "#13121F", -- default bg
|
|
|
|
|
base01 = "#312C5E", -- Lighter bg, line num, status bar, etc
|
|
|
|
|
base02 = "#2d294a", -- selection bg
|
|
|
|
|
base03 = "#222222", -- comments, line highlight
|
|
|
|
|
base03 = "#826aed", -- comments, line highlight
|
|
|
|
|
base04 = "#25233C", -- dark foreground (status bar)
|
|
|
|
|
base05 = "#ffffff", -- Default foreground, caret, delimeters, ops
|
|
|
|
|
base05 = "#f8f8f2", -- Default foreground, caret, delimeters, ops
|
|
|
|
|
base06 = "#000000", -- Light foreground
|
|
|
|
|
base07 = "#aaaaaa", -- light background
|
|
|
|
|
base08 = "#F066EC", -- vars, xml tag, markup links, diff delete
|
|
|
|
|
base09 = "#38F0E8", -- booleans, constants, ints
|
|
|
|
|
base0A = "#999999", -- classes, markup bold, search text bg
|
|
|
|
|
base09 = "#38F0E8", -- booleans, constants, ints, search text current
|
|
|
|
|
base0A = "#00FFAB", -- classes, markup bold, search text bg
|
|
|
|
|
base0B = "#42F032", -- strings, inherited class, markup code, diff insert
|
|
|
|
|
base0C = "#C9ECF5", -- support, regex, escape chars, markup quotes
|
|
|
|
|
base0D = "#555555", -- funcs, methods, attr ids, headings, html inner text
|
|
|
|
|
base0C = "#C9ECF5", -- support, regex, escape chars, markup quotes, lua {}
|
|
|
|
|
base0D = "#0CECDD", -- funcs, methods, attr ids, headings, html inner text
|
|
|
|
|
base0E = "#ffe405", -- keywords, markup italic, diff changed
|
|
|
|
|
base0F = "#ffffff", -- lua comma, golang delimeter
|
|
|
|
|
},
|
|
|
|
|
base_30 = {
|
|
|
|
|
white = "#F8F8F2",
|
|
|
|
|
base0F = "#E3F6FF", -- lua comma, golang delimeter
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
M.base_30 = {
|
|
|
|
|
white = "#F8F8F2", -- active line num
|
|
|
|
|
darker_black = "#19192c",
|
|
|
|
|
black = "#141423",
|
|
|
|
|
black2 = "#1c1c31",
|
|
|
|
|
one_bg = "#23233d",
|
|
|
|
|
one_bg2 = "#2b2b4c",
|
|
|
|
|
one_bg3 = "#373760",
|
|
|
|
|
grey = "#414171", -- line numbers
|
|
|
|
|
grey_fg = "#4b4b83", -- comments
|
|
|
|
|
grey = M.base_16.base01, -- line numbers (STOP USING BASE30 FOR STUFF THAT BASE16 ALREADY DEFINED!!)
|
|
|
|
|
grey_fg = M.base_16.base03, -- comments (NVCHAD SHOULD REALLY NOT USE THIS SHIT FOR BASIC SYNTAX HL)
|
|
|
|
|
grey_fg2 = "#555594",
|
|
|
|
|
light_grey = "#6060a4",
|
|
|
|
|
red = "#FF5ff5", -- changed git files,
|
|
|
|
|
@ -51,5 +53,8 @@ return {
|
|
|
|
|
violet = "#9A86FD",
|
|
|
|
|
darkgreen = "#1B312E",
|
|
|
|
|
brownred = "#5D2932",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
M.type = "dark"
|
|
|
|
|
|
|
|
|
|
return M
|
|
|
|
|
|