mirror of
https://github.com/gabehf/base46.git
synced 2026-03-10 16:00:30 -07:00
parent
7b6fb92bcf
commit
1e803fd654
35 changed files with 552 additions and 436 deletions
|
|
@ -1,58 +1,67 @@
|
|||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
white = "#c6c6c6",
|
||||
darker_black = "#030303",
|
||||
black = "#080808",
|
||||
black2 = "#131313",
|
||||
one_bg = "#1c1c1c",
|
||||
one_bg2 = "#222222",
|
||||
one_bg3 = "#292929",
|
||||
grey = "#4d4d4d",
|
||||
grey_fg = "#575757",
|
||||
grey_fg2 = "#616161",
|
||||
light_grey = "#6b6b6b",
|
||||
red = "#ff2026",
|
||||
baby_pink = "#DB5C00",
|
||||
pink = "#e5786d",
|
||||
line = "#333333",
|
||||
green = "#87d75f",
|
||||
vibrant_green = "#66ea5a",
|
||||
nord_blue = "#779fef",
|
||||
blue = "#87afff",
|
||||
yellow = "#d7ff87",
|
||||
sun = "#fbe44c",
|
||||
purple = "#d787ff",
|
||||
dark_purple = "#73186e",
|
||||
teal = "#2a0d6a",
|
||||
orange = "#d7875f",
|
||||
cyan = "#66c4ff",
|
||||
statusline_bg = "#313131",
|
||||
lightbg = "#3e3e3e",
|
||||
lightbg2 = "#363636",
|
||||
pmenu_bg = "#87d75f",
|
||||
folder_bg = "#87afff",
|
||||
white = "#e4e0d7",
|
||||
darker_black = "#1b1b1b",
|
||||
black = "#222222",
|
||||
black2 = "#292929",
|
||||
one_bg = "#333333",
|
||||
one_bg2 = "#3a3a3a",
|
||||
one_bg3 = "#414141",
|
||||
grey = "#4b4b4b",
|
||||
grey_fg = "#535353",
|
||||
grey_fg2 = "#5a5a5a",
|
||||
light_grey = "#646464",
|
||||
red = "#FF8F7E",
|
||||
baby_pink = "#f58eff",
|
||||
pink = "#e780f8",
|
||||
line = "#353535",
|
||||
green = "#AEE474",
|
||||
vibrant_green = "#95e454",
|
||||
nord_blue = "#8dbdfb",
|
||||
blue = "#88B8F6",
|
||||
yellow = "#efdeab",
|
||||
sun = "#feedba",
|
||||
purple = "#dc8cff",
|
||||
dark_purple = "#c878f0",
|
||||
teal = "#7EB6BC",
|
||||
orange = "#FFCC66",
|
||||
cyan = "#90fdf8",
|
||||
statusline_bg = "#262626",
|
||||
lightbg = "#3c3c3c",
|
||||
lightbg2 = "#323232",
|
||||
pmenu_bg = "#95e454",
|
||||
folder_bg = "#7BB0C9",
|
||||
}
|
||||
|
||||
M.base_16 = {
|
||||
base00 = "#080808",
|
||||
base01 = "#1c1c1c",
|
||||
base02 = "#292929",
|
||||
base03 = "#87875f",
|
||||
base04 = "#857b6f",
|
||||
base05 = "#c6c6c6",
|
||||
base06 = "#d2d2d2",
|
||||
base07 = "#dedede",
|
||||
base08 = "#c6c6c6",
|
||||
base09 = "#d7875f",
|
||||
base0A = "#d7ff87",
|
||||
base0B = "#87d75f",
|
||||
base0C = "#ffd7af",
|
||||
base0D = "#d7ff87",
|
||||
base0E = "#87afff",
|
||||
base00 = "#202020",
|
||||
base01 = "#303030",
|
||||
base02 = "#373737",
|
||||
base03 = "#3e3e3e",
|
||||
base04 = "#484848",
|
||||
base05 = "#d6d2c9",
|
||||
base06 = "#ddd9d0",
|
||||
base07 = "#e4e0d7",
|
||||
base08 = "#FF8F7E",
|
||||
base09 = "#FFCC66",
|
||||
base0A = "#efdeab",
|
||||
base0B = "#AEE474",
|
||||
base0C = "#7EB6BC",
|
||||
base0D = "#88B8F6",
|
||||
base0E = "#dc8cff",
|
||||
base0F = "#dc8c64",
|
||||
}
|
||||
|
||||
M.polish_hl = {
|
||||
TSInclude = { fg = M.base_30.red },
|
||||
TSConstructor = { fg = M.base_30.orange },
|
||||
TSVariable = { link = "TSConstructor" },
|
||||
TSConditional = { link = "TSInclude" },
|
||||
Feline_LspIcon = { fg = M.base_30.teal },
|
||||
FelineIcon = { bg = M.base_30.teal },
|
||||
}
|
||||
|
||||
M.type = "dark"
|
||||
|
||||
M = require("base46").override_theme(M, "wombat")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue