mirror of https://github.com/gabehf/base46.git
parent
6c688ec245
commit
d0f2ec5b8d
@ -1,58 +1,64 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.base_30 = {
|
M.base_30 = {
|
||||||
white = "#ab5236",
|
white = "#cccdd1",
|
||||||
darker_black = "#000000",
|
darker_black = "#0a0a0a",
|
||||||
black = "#101010", -- nvim bg
|
black = "#101010", -- nvim bg
|
||||||
black2 = "#161616",
|
black2 = "#181818",
|
||||||
one_bg = "#1a1a1a",
|
one_bg = "#1e1e1e",
|
||||||
one_bg2 = "#232323",
|
one_bg2 = "#252525",
|
||||||
one_bg3 = "#2b2b2b",
|
one_bg3 = "#2c2c2c",
|
||||||
grey = "#ff5236",
|
grey = "#363636",
|
||||||
grey_fg = "#008751",
|
grey_fg = "#3d3d3d",
|
||||||
grey_fg2 = "#4c4c4c",
|
grey_fg2 = "#454545",
|
||||||
light_grey = "#545454",
|
light_grey = "#4d4d4d",
|
||||||
red = "#ff004d",
|
red = "#ff1a67",
|
||||||
baby_pink = "#ff86b7",
|
baby_pink = "#ff86b7",
|
||||||
pink = "#ff77a8",
|
pink = "#ff77a8",
|
||||||
line = "#7e2553", -- for lines like vertsplit
|
line = "#2c2c2c", -- for lines like vertsplit
|
||||||
green = "#008751",
|
green = "#00e756",
|
||||||
vibrant_green = "#00e756",
|
vibrant_green = "#10f766",
|
||||||
blue = "#1d2b73",
|
blue = "#29adff",
|
||||||
nord_blue = "#101e46",
|
nord_blue = "#5c6ab2",
|
||||||
yellow = "#fff024",
|
yellow = "#fff024",
|
||||||
sun = "#fff82c",
|
sun = "#fff82c",
|
||||||
purple = "#FF2553",
|
purple = "#a79ac0",
|
||||||
dark_purple = "#711846",
|
dark_purple = "#998cb2",
|
||||||
teal = "#AEDCB7",
|
teal = "#0b925c",
|
||||||
orange = "#ffa300",
|
orange = "#ffa300",
|
||||||
cyan = "#29adff",
|
cyan = "#29adff",
|
||||||
statusline_bg = "#0c0c0c",
|
statusline_bg = "#181818",
|
||||||
lightbg = "#191919",
|
lightbg = "#272727",
|
||||||
lightbg2 = "#131313",
|
pmenu_bg = "#5c6ab2",
|
||||||
pmenu_bg = "#ffccaa",
|
folder_bg = "#29adff",
|
||||||
folder_bg = "#3b4991",
|
|
||||||
}
|
}
|
||||||
|
|
||||||
M.base_16 = {
|
M.base_16 = {
|
||||||
base00 = '#030303',
|
base00 = "#101010",
|
||||||
base01 = '#3b4971',
|
base01 = "#171717",
|
||||||
base02 = '#420017',
|
base02 = "#1e1e1e",
|
||||||
base03 = '#008751',
|
base03 = "#252525",
|
||||||
base04 = '#ab5236',
|
base04 = "#2c2c2c",
|
||||||
base05 = '#8c847c',
|
base05 = "#d8d9dd",
|
||||||
base06 = '#c2c3c7',
|
base06 = "#d2d3d7",
|
||||||
base07 = '#fff1e8',
|
base07 = "#cccdd1",
|
||||||
base08 = '#ffb20f',
|
base08 = "#ffb20f",
|
||||||
base09 = '#ff004d',
|
base09 = "#ff004d",
|
||||||
base0A = '#be620a',
|
base0A = "#be620a",
|
||||||
base0B = '#00e756',
|
base0B = "#00e756",
|
||||||
base0C = '#29adff',
|
base0C = "#29adff",
|
||||||
base0D = '#af35b9',
|
base0D = "#c54bcf",
|
||||||
base0E = '#ff4394',
|
base0E = "#ff4394",
|
||||||
base0F = '#ffccaa'
|
base0F = "#ffccaa",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
M.polish_hl = {
|
||||||
|
TSVariable = { fg = M.base_30.orange },
|
||||||
|
TSParameter = { fg = M.base_30.white },
|
||||||
|
}
|
||||||
|
|
||||||
|
M.type = "dark"
|
||||||
|
|
||||||
M = require("base46").override_theme(M, "gatekeeper")
|
M = require("base46").override_theme(M, "gatekeeper")
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
Loading…
Reference in new issue