mirror of https://github.com/gabehf/base46.git
commit
b9e567368c
@ -1,59 +0,0 @@
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
white = "#D9D7D6",
|
||||
darker_black = "#000a0e",
|
||||
black = "#061115", -- nvim bg
|
||||
black2 = "#0d181c",
|
||||
one_bg = "#131e22",
|
||||
one_bg2 = "#1c272b",
|
||||
one_bg3 = "#242f33",
|
||||
grey = "#313c40",
|
||||
grey_fg = "#3b464a",
|
||||
grey_fg2 = "#455054",
|
||||
light_grey = "#4f5a5e",
|
||||
red = "#DF5B61",
|
||||
baby_pink = "#EE6A70",
|
||||
pink = "#F16269",
|
||||
line = "#222d31", -- for lines like vertsplit
|
||||
green = "#78B892",
|
||||
vibrant_green = "#8CD7AA",
|
||||
nord_blue = "#5A84BC",
|
||||
blue = "#6791C9",
|
||||
yellow = "#ecd28b",
|
||||
sun = "#f6dc95",
|
||||
purple = "#C488EC",
|
||||
dark_purple = "#BC83E3",
|
||||
teal = "#7ACFE4",
|
||||
orange = "#E89982",
|
||||
cyan = "#67AFC1",
|
||||
statusline_bg = "#0A1519",
|
||||
lightbg = "#1a2529",
|
||||
pmenu_bg = "#78B892",
|
||||
folder_bg = "#6791C9",
|
||||
}
|
||||
|
||||
M.base_16 = {
|
||||
base00 = "#061115",
|
||||
base01 = "#0C171B",
|
||||
base02 = "#101B1F",
|
||||
base03 = "#192428",
|
||||
base04 = "#212C30",
|
||||
base05 = "#D9D7D6",
|
||||
base06 = "#E3E1E0",
|
||||
base07 = "#EDEBEA",
|
||||
base08 = "#f26e74",
|
||||
base09 = "#ecd28b",
|
||||
base0A = "#E9967E",
|
||||
base0B = "#82c29c",
|
||||
base0C = "#6791C9",
|
||||
base0D = "#79AAEB",
|
||||
base0E = "#C488EC",
|
||||
base0F = "#F16269",
|
||||
}
|
||||
|
||||
vim.opt.bg = "dark"
|
||||
|
||||
M = require("base46").override_theme(M, "rxyhn")
|
||||
|
||||
return M
|
||||
@ -0,0 +1,59 @@
|
||||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
white = "#edeff0",
|
||||
darker_black = "#060809",
|
||||
black = "#0c0e0f", -- nvim bg
|
||||
lighter_black = "#121415",
|
||||
one_bg = "#161819",
|
||||
one_bg2 = "#1f2122",
|
||||
one_bg3 = "#27292a",
|
||||
grey = "#343637",
|
||||
grey_fg = "#3e4041",
|
||||
grey_fg2 = "#484a4b",
|
||||
light_grey = "#505253",
|
||||
red = "#DF5B61",
|
||||
baby_pink = "#EE6A70",
|
||||
pink = "#e8646a",
|
||||
line = "#1b1d1e", -- for lines like vertsplit
|
||||
green = "#78B892",
|
||||
vibrant_green = "#81c19b",
|
||||
nord_blue = "#5A84BC",
|
||||
blue = "#6791C9",
|
||||
yellow = "#ecd28b",
|
||||
sun = "#f6dc95",
|
||||
purple = "#c58cec",
|
||||
dark_purple = "#BC83E3",
|
||||
teal = "#70b8ca",
|
||||
orange = "#E89982",
|
||||
cyan = "#67AFC1",
|
||||
statusline_bg = "#101213",
|
||||
lightbg = "#1d1f20",
|
||||
pmenu_bg = "#78B892",
|
||||
folder_bg = "#6791C9",
|
||||
}
|
||||
|
||||
M.base_16 = {
|
||||
base00 = "#0c0e0f",
|
||||
base01 = "#121415",
|
||||
base02 = "#161819",
|
||||
base03 = "#1f2122",
|
||||
base04 = "#27292a",
|
||||
base05 = "#edeff0",
|
||||
base06 = "#e4e6e7",
|
||||
base07 = "#f2f4f5",
|
||||
base08 = "#f26e74",
|
||||
base09 = "#ecd28b",
|
||||
base0A = "#e79881",
|
||||
base0B = "#82c29c",
|
||||
base0C = "#6791C9",
|
||||
base0D = "#709ad2",
|
||||
base0E = "#c58cec",
|
||||
base0F = "#e8646a",
|
||||
}
|
||||
|
||||
vim.opt.bg = "dark"
|
||||
|
||||
M = require("base46").override_theme(M, "rxyhn")
|
||||
|
||||
return M
|
||||
Loading…
Reference in new issue