mirror of https://github.com/gabehf/base46.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.5 KiB
69 lines
1.5 KiB
local M = {}
|
|
|
|
M.base_30 = {
|
|
white = "#ced4df",
|
|
darker_black = "#05080e",
|
|
black = "#0B0E14", -- nvim bg
|
|
black2 = "#14171d",
|
|
one_bg = "#1c1f25",
|
|
one_bg2 = "#24272d",
|
|
one_bg3 = "#2b2e34",
|
|
grey = "#33363c",
|
|
grey_fg = "#3d4046",
|
|
grey_fg2 = "#46494f",
|
|
light_grey = "#54575d",
|
|
red = "#F07178",
|
|
baby_pink = "#ff949b",
|
|
pink = "#ff8087",
|
|
line = "#24272d", -- for lines like vertsplit
|
|
green = "#AAD84C",
|
|
vibrant_green = "#b9e75b",
|
|
blue = "#36A3D9",
|
|
nord_blue = "#43b0e6",
|
|
yellow = "#E7C547",
|
|
sun = "#f0df8a",
|
|
purple = "#c79bf4",
|
|
dark_purple = "#A37ACC",
|
|
teal = "#74c5aa",
|
|
orange = "#ffa455",
|
|
cyan = "#95E6CB",
|
|
statusline_bg = "#12151b",
|
|
lightbg = "#24272d",
|
|
pmenu_bg = "#ff9445",
|
|
folder_bg = "#98a3af",
|
|
}
|
|
|
|
M.base_16 = {
|
|
base00 = "#0B0E14",
|
|
base01 = "#1c1f25",
|
|
base02 = "#24272d",
|
|
base03 = "#2b2e34",
|
|
base04 = "#33363c",
|
|
base05 = "#c9c7be",
|
|
base06 = "#E6E1CF",
|
|
base07 = "#D9D7CE",
|
|
base08 = "#c9c7be",
|
|
base09 = "#FFEE99",
|
|
base0A = "#56c3f9",
|
|
base0B = "#AAD84C",
|
|
base0C = "#FFB454",
|
|
base0D = "#F07174",
|
|
base0E = "#FFB454",
|
|
base0F = "#CBA6F7",
|
|
}
|
|
|
|
M.polish_hl = {
|
|
luaTSField = { fg = M.base_16.base0D },
|
|
["@tag.delimiter"] = { fg = M.base_30.cyan },
|
|
["@function"] = { fg = M.base_30.orange },
|
|
["@parameter"] = { fg = M.base_16.base0F },
|
|
["@constructor"] = { fg = M.base_16.base0A },
|
|
["@tag.attribute"] = { fg = M.base_30.orange },
|
|
}
|
|
|
|
M = require("base46").override_theme(M, "ayu-dark")
|
|
|
|
M.type = "dark"
|
|
|
|
return M
|