mirror of
https://github.com/gabehf/base46.git
synced 2026-03-10 07:50:31 -07:00
parent
7b6fb92bcf
commit
1e803fd654
35 changed files with 552 additions and 436 deletions
|
|
@ -1,56 +1,66 @@
|
|||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
white = "#685c56",
|
||||
darker_black = "#e5dedb",
|
||||
black = "#ede6e3", -- nvim bg
|
||||
black2 = "#e0d9d6",
|
||||
one_bg = "#e2dbd8",
|
||||
one_bg2 = "#d1cac7",
|
||||
one_bg3 = "#cac3c0",
|
||||
grey = "#bab3b0",
|
||||
grey_fg = "#aea7a4",
|
||||
grey_fg2 = "#a29b98",
|
||||
light_grey = "#958e8b",
|
||||
red = "#c99780",
|
||||
baby_pink = "#ce9c85",
|
||||
pink = "#ce9c85",
|
||||
line = "#d9d2cf", -- for lines like vertsplit
|
||||
green = "#839773",
|
||||
white = "#695d57",
|
||||
darker_black = "#dfd8d5",
|
||||
black = "#e6dfdc", -- nvim bg
|
||||
black2 = "#d9d2cf",
|
||||
one_bg = "#d0c9c6",
|
||||
one_bg2 = "#c7c0bd",
|
||||
one_bg3 = "#c0b9b6",
|
||||
grey = "#b9b2af",
|
||||
grey_fg = "#b2aba8",
|
||||
grey_fg2 = "#aaa3a0",
|
||||
light_grey = "#a09996",
|
||||
red = "#b28069",
|
||||
baby_pink = "#b7856e",
|
||||
pink = "#c18f78",
|
||||
line = "#d3ccc9", -- for lines like vertsplit
|
||||
green = "#6c805c",
|
||||
vibrant_green = "#899d79",
|
||||
blue = "#6c8aa8",
|
||||
blue = "#5f7d9b",
|
||||
nord_blue = "#5e5f65",
|
||||
yellow = "#a9a29f",
|
||||
sun = "#eaa18a",
|
||||
sun = "#d38a73",
|
||||
purple = "#a685a6",
|
||||
dark_purple = "#9c7b9c",
|
||||
teal = "#62809e",
|
||||
orange = "#e39a83",
|
||||
teal = "#4b6987",
|
||||
orange = "#cc836c",
|
||||
cyan = "#75998e",
|
||||
statusline_bg = "#e4ddda",
|
||||
statusline_bg = "#dfd8d5",
|
||||
lightbg = "#cac3c0",
|
||||
lightbg2 = "#dbd4d1",
|
||||
pmenu_bg = "#857e7b",
|
||||
folder_bg = "#817a77",
|
||||
folder_bg = "#746d6a",
|
||||
}
|
||||
|
||||
M.base_16 = {
|
||||
base00 = "#ede6e3",
|
||||
base01 = "#dad3d0",
|
||||
base02 = "#b6b0a6",
|
||||
base03 = "#938d8a",
|
||||
base04 = "#afabaa",
|
||||
base05 = "#6c605a",
|
||||
base06 = "#938680",
|
||||
base07 = "#ede6e3",
|
||||
base08 = "#978e81",
|
||||
base09 = "#9c7b9c",
|
||||
base0A = "#b6b0a6",
|
||||
base0B = "#c99385",
|
||||
base0C = "#ce9c85",
|
||||
base0D = "#a09c80",
|
||||
base0E = "#A3BE8C",
|
||||
base0F = "#887c76",
|
||||
base00 = "#e6dfdc",
|
||||
base01 = "#ded7d4",
|
||||
base02 = "#d7d0cd",
|
||||
base03 = "#d1cac7",
|
||||
base04 = "#cac3c0",
|
||||
base05 = "#746862",
|
||||
base06 = "#5e524c",
|
||||
base07 = "#695d57",
|
||||
base08 = "#8779a8",
|
||||
base09 = "#a87678",
|
||||
base0A = "#738199",
|
||||
base0B = "#6c805c",
|
||||
base0C = "#5e908e",
|
||||
base0D = "#b3816a",
|
||||
base0E = "#7e8e8e",
|
||||
base0F = "#976153",
|
||||
}
|
||||
|
||||
M.polish_hl = {
|
||||
WhichKeyDesc = {
|
||||
fg = M.base_30.white,
|
||||
},
|
||||
|
||||
WhichKey = {
|
||||
fg = M.base_30.white,
|
||||
},
|
||||
}
|
||||
|
||||
M.type = "light"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue