mirror of https://github.com/gabehf/base46.git
parent
e92aad29f3
commit
7926594f07
@ -1,58 +0,0 @@
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
black = "#191724", -- nvim bg
|
||||
darker_black = "#13111e",
|
||||
white = "#e0def4",
|
||||
black2 = "#1f1d2a",
|
||||
one_bg = "#23212e", -- real bg of onedark
|
||||
one_bg2 = "#2c2a37",
|
||||
one_bg3 = "#34323f",
|
||||
grey = "#3d3b48",
|
||||
grey_fg = "#474552",
|
||||
grey_fg2 = "#514f5c",
|
||||
light_grey = "#595764",
|
||||
red = "#eb6f92",
|
||||
baby_pink = "#f5799c",
|
||||
pink = "#ff83a6",
|
||||
line = "#292734", -- for lines like vertsplit
|
||||
green = "#ABE9B3",
|
||||
vibrant_green = "#b5f3bd",
|
||||
nord_blue = "#89DCEB",
|
||||
blue = "#96CDFB",
|
||||
yellow = "#f6c177",
|
||||
sun = "#fec97f",
|
||||
purple = "#C9CBFF",
|
||||
dark_purple = "#bfc1f5",
|
||||
teal = "#B5E8E0",
|
||||
orange = "#ffd88e",
|
||||
cyan = "#9df0ff",
|
||||
statusline_bg = "#1d1b28",
|
||||
lightbg = "#2a2835",
|
||||
lightbg2 = "#24222f",
|
||||
pmenu_bg = "#9ccfd8",
|
||||
folder_bg = "#61afef",
|
||||
}
|
||||
|
||||
M.base_16 = {
|
||||
base00 = "#191724",
|
||||
base01 = "#1f1d2e",
|
||||
base02 = "#403d52",
|
||||
base03 = "#6e6a86",
|
||||
base04 = "#908caa",
|
||||
base05 = "#e0def4",
|
||||
base06 = "#cecacd",
|
||||
base07 = "#fffaf3",
|
||||
base08 = "#eb6f92",
|
||||
base09 = "#ebbcba",
|
||||
base0A = "#9ccfd8",
|
||||
base0B = "#f6c177",
|
||||
base0C = "#c4a7e7",
|
||||
base0D = "#ea9a97",
|
||||
base0E = "#31748f",
|
||||
base0F = "#ebbcba",
|
||||
}
|
||||
|
||||
M = require("base46").override_theme(M, "rose_pine")
|
||||
|
||||
return M
|
||||
@ -0,0 +1,59 @@
|
||||
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
|
||||
Loading…
Reference in new issue