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.
60 lines
1.2 KiB
60 lines
1.2 KiB
local M = {}
|
|
|
|
M.base_30 = {
|
|
black = "#191724", -- nvim bg
|
|
darker_black = "#13111e",
|
|
white = "#e0def4",
|
|
black2 = "#1f1d2a",
|
|
one_bg = "#262431", -- real bg of onedark
|
|
one_bg2 = "#2d2b38",
|
|
one_bg3 = "#353340",
|
|
grey = "#3f3d4a",
|
|
grey_fg = "#474552",
|
|
grey_fg2 = "#514f5c",
|
|
light_grey = "#5d5b68",
|
|
red = "#eb6f92",
|
|
baby_pink = "#f5799c",
|
|
pink = "#ff83a6",
|
|
line = "#2e2c39", -- for lines like vertsplit
|
|
green = "#ABE9B3",
|
|
vibrant_green = "#b5f3bd",
|
|
nord_blue = "#86b9c2",
|
|
blue = "#8bbec7",
|
|
yellow = "#f6c177",
|
|
sun = "#fec97f",
|
|
purple = "#c4a7e7",
|
|
dark_purple = "#bb9ede",
|
|
teal = "#6aadc8",
|
|
orange = "#f6c177",
|
|
cyan = "#a3d6df",
|
|
statusline_bg = "#201e2b",
|
|
lightbg = "#2d2b38",
|
|
pmenu_bg = "#c4a7e7",
|
|
folder_bg = "#6aadc8",
|
|
}
|
|
|
|
M.base_16 = {
|
|
base00 = "#191724",
|
|
base01 = "#1f1d2e",
|
|
base02 = "#403d52",
|
|
base03 = "#6e6a86",
|
|
base04 = "#908caa",
|
|
base05 = "#e0def4",
|
|
base06 = "#cecacd",
|
|
base07 = "#fffaf3",
|
|
base08 = "#e2e1e7",
|
|
base09 = "#eb6f92",
|
|
base0A = "#f6c177",
|
|
base0B = "#ebbcba",
|
|
base0C = "#4d90ab",
|
|
base0D = "#93c6cf",
|
|
base0E = "#c4a7e7",
|
|
base0F = "#e5e5e5",
|
|
}
|
|
|
|
M = require("base46").override_theme(M, "rosepine")
|
|
|
|
M.type = "dark"
|
|
|
|
return M
|