mirror of https://github.com/gabehf/nvim-conf.git
parent
0d0df12d82
commit
b83b0f27a9
@ -1,55 +1,60 @@
|
|||||||
return {
|
local M = {}
|
||||||
base_16 = {
|
|
||||||
base00 = "#13121F", -- default bg
|
M.base_16 = {
|
||||||
base01 = "#312C5E", -- Lighter bg, line num, status bar, etc
|
base00 = "#13121F", -- default bg
|
||||||
base02 = "#2d294a", -- selection bg
|
base01 = "#312C5E", -- Lighter bg, line num, status bar, etc
|
||||||
base03 = "#222222", -- comments, line highlight
|
base02 = "#2d294a", -- selection bg
|
||||||
base04 = "#25233C", -- dark foreground (status bar)
|
base03 = "#826aed", -- comments, line highlight
|
||||||
base05 = "#ffffff", -- Default foreground, caret, delimeters, ops
|
base04 = "#25233C", -- dark foreground (status bar)
|
||||||
base06 = "#000000", -- Light foreground
|
base05 = "#f8f8f2", -- Default foreground, caret, delimeters, ops
|
||||||
base07 = "#aaaaaa", -- light background
|
base06 = "#000000", -- Light foreground
|
||||||
base08 = "#F066EC", -- vars, xml tag, markup links, diff delete
|
base07 = "#aaaaaa", -- light background
|
||||||
base09 = "#38F0E8", -- booleans, constants, ints
|
base08 = "#F066EC", -- vars, xml tag, markup links, diff delete
|
||||||
base0A = "#999999", -- classes, markup bold, search text bg
|
base09 = "#38F0E8", -- booleans, constants, ints, search text current
|
||||||
base0B = "#42F032", -- strings, inherited class, markup code, diff insert
|
base0A = "#00FFAB", -- classes, markup bold, search text bg
|
||||||
base0C = "#C9ECF5", -- support, regex, escape chars, markup quotes
|
base0B = "#42F032", -- strings, inherited class, markup code, diff insert
|
||||||
base0D = "#555555", -- funcs, methods, attr ids, headings, html inner text
|
base0C = "#C9ECF5", -- support, regex, escape chars, markup quotes, lua {}
|
||||||
base0E = "#ffe405", -- keywords, markup italic, diff changed
|
base0D = "#0CECDD", -- funcs, methods, attr ids, headings, html inner text
|
||||||
base0F = "#ffffff", -- lua comma, golang delimeter
|
base0E = "#ffe405", -- keywords, markup italic, diff changed
|
||||||
},
|
base0F = "#E3F6FF", -- lua comma, golang delimeter
|
||||||
base_30 = {
|
|
||||||
white = "#F8F8F2",
|
|
||||||
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_fg2 = "#555594",
|
|
||||||
light_grey = "#6060a4",
|
|
||||||
red = "#FF5ff5", -- changed git files,
|
|
||||||
baby_pink = "#FF6E6E",
|
|
||||||
pink = "#FF6BCB",
|
|
||||||
line = "#2D2D4E",
|
|
||||||
green = "#50FA7B",
|
|
||||||
vibrant_green = "#20E3B2",
|
|
||||||
nord_blue = "#05C3FF",
|
|
||||||
blue = "#2CCCFF",
|
|
||||||
yellow = "#F1FA8C", -- README nvim-tree
|
|
||||||
sun = "#F2FA95",
|
|
||||||
purple = "#BD93F9",
|
|
||||||
dark_purple = "#a166f6",
|
|
||||||
teal = "#92A2D4",
|
|
||||||
orange = "#FFB86C",
|
|
||||||
cyan = "#2CCCFF",
|
|
||||||
statusline_bg = "#19192c",
|
|
||||||
lightbg = "#2b2b4c",
|
|
||||||
pmenu_bg = "#9A86FD",
|
|
||||||
folder_bg = "#9A86FD",
|
|
||||||
violet = "#9A86FD",
|
|
||||||
darkgreen = "#1B312E",
|
|
||||||
brownred = "#5D2932",
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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 = 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,
|
||||||
|
baby_pink = "#FF6E6E",
|
||||||
|
pink = "#FF6BCB",
|
||||||
|
line = "#2D2D4E",
|
||||||
|
green = "#50FA7B",
|
||||||
|
vibrant_green = "#20E3B2",
|
||||||
|
nord_blue = "#05C3FF",
|
||||||
|
blue = "#2CCCFF",
|
||||||
|
yellow = "#F1FA8C", -- README nvim-tree
|
||||||
|
sun = "#F2FA95",
|
||||||
|
purple = "#BD93F9",
|
||||||
|
dark_purple = "#a166f6",
|
||||||
|
teal = "#92A2D4",
|
||||||
|
orange = "#FFB86C",
|
||||||
|
cyan = "#2CCCFF",
|
||||||
|
statusline_bg = "#19192c",
|
||||||
|
lightbg = "#2b2b4c",
|
||||||
|
pmenu_bg = "#9A86FD",
|
||||||
|
folder_bg = "#9A86FD",
|
||||||
|
violet = "#9A86FD",
|
||||||
|
darkgreen = "#1B312E",
|
||||||
|
brownred = "#5D2932",
|
||||||
|
}
|
||||||
|
|
||||||
|
M.type = "dark"
|
||||||
|
|
||||||
|
return M
|
||||||
|
|||||||
Loading…
Reference in new issue