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.
59 lines
1.2 KiB
59 lines
1.2 KiB
local M = {}
|
|
|
|
M.base_30 = {
|
|
white = "#D9D7D6",
|
|
darker_black = "#000a0e",
|
|
black = "#061115", -- nvim bg
|
|
black2 = "#0d181c",
|
|
one_bg = "#101B1F",
|
|
one_bg2 = "#192428",
|
|
one_bg3 = "#212C30",
|
|
grey = "#2E393D",
|
|
grey_fg = "#384347",
|
|
grey_fg2 = "#424D51",
|
|
light_grey = "#4A5559",
|
|
red = "#DF5B61",
|
|
baby_pink = "#EE6A70",
|
|
pink = "#F16269",
|
|
line = "#152024", -- 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",
|
|
lightbg2 = "#111C20",
|
|
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",
|
|
}
|
|
|
|
M = require("base16").override_theme(M, "rxyhn")
|
|
|
|
return M
|