mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 23:48:16 -07:00
parent
7b6fb92bcf
commit
1e803fd654
35 changed files with 552 additions and 436 deletions
|
|
@ -1,7 +1,7 @@
|
|||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
white = "#9198B6", -- custom
|
||||
white = "#ffffff", -- custom
|
||||
darker_black = "#232738",
|
||||
black = "#292D3E", -- nvim bg
|
||||
black2 = "#2f3344",
|
||||
|
|
@ -15,7 +15,7 @@ M.base_30 = {
|
|||
red = "#f07178",
|
||||
baby_pink = "#606475",
|
||||
pink = "#ff5370", -- base16
|
||||
line = "#383c4d", -- for lines like vertsplit
|
||||
line = "#3f4354", -- for lines like vertsplit
|
||||
green = "#c3e88d", --base16
|
||||
vibrant_green = "#96e88d", -- custom
|
||||
nord_blue = "#8fb7ff",
|
||||
|
|
@ -25,12 +25,12 @@ M.base_30 = {
|
|||
purple = "#c792ea", -- base16
|
||||
dark_purple = "#b383d2", --custom
|
||||
teal = "#89ffe6", -- custom
|
||||
orange = "#f78c6c", -- base16
|
||||
orange = "#ffa282", -- base16
|
||||
cyan = "#89ddff", -- base16
|
||||
statusline_bg = "#2d3142",
|
||||
lightbg = "#363a4b",
|
||||
lightbg2 = "#303445",
|
||||
pmenu_bg = "#89ffe6", -- custom
|
||||
lightbg = "#3c4051",
|
||||
lightbg2 = "#333748",
|
||||
pmenu_bg = "#82aaff", -- custom
|
||||
folder_bg = "#82aaff",
|
||||
}
|
||||
|
||||
|
|
@ -40,11 +40,11 @@ M.base_16 = {
|
|||
base02 = "#32374d",
|
||||
base03 = "#676e95",
|
||||
base04 = "#8796b0",
|
||||
base05 = "#959dcb",
|
||||
base06 = "#959dcb",
|
||||
base05 = "#d3d3d3",
|
||||
base06 = "#efefef",
|
||||
base07 = "#ffffff",
|
||||
base08 = "#f07178",
|
||||
base09 = "#f78c6c",
|
||||
base09 = "#ffa282",
|
||||
base0A = "#ffcb6b",
|
||||
base0B = "#c3e88d",
|
||||
base0C = "#89ddff",
|
||||
|
|
@ -53,6 +53,18 @@ M.base_16 = {
|
|||
base0F = "#ff5370",
|
||||
}
|
||||
|
||||
M.polish_hl = {
|
||||
TSInclude = {
|
||||
fg = M.base_30.purple,
|
||||
},
|
||||
LuaTSField = {
|
||||
fg = M.base_30.yellow,
|
||||
},
|
||||
TSFieldKey = {
|
||||
fg = M.base_30.orange,
|
||||
},
|
||||
}
|
||||
|
||||
M.type = "dark"
|
||||
|
||||
M = require("base46").override_theme(M, "palenight")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue