mirror of
https://github.com/gabehf/base46.git
synced 2026-03-15 10:15:55 -07:00
Update decay.lua
This commit is contained in:
parent
e50f266d3d
commit
c835bd5742
1 changed files with 23 additions and 22 deletions
|
|
@ -2,20 +2,20 @@ local M = {}
|
||||||
|
|
||||||
M.base_30 = {
|
M.base_30 = {
|
||||||
white = "#dee1e6",
|
white = "#dee1e6",
|
||||||
darker_black = "#13171b",
|
darker_black = "#111519",
|
||||||
black = "#171B20", -- nvim bg
|
black = "#171B20", -- nvim bg
|
||||||
black2 = "#1a1e24",
|
black2 = "#1e2227",
|
||||||
one_bg = "#21262e",
|
one_bg = "#262a2f",
|
||||||
one_bg2 = "#242931",
|
one_bg2 = "#2f3338",
|
||||||
one_bg3 = "#242931",
|
one_bg3 = "#373b40",
|
||||||
grey = "#485263",
|
grey = "#41454a",
|
||||||
grey_fg = "#525c6d",
|
grey_fg = "#494d52",
|
||||||
grey_fg2 = "#5c6677",
|
grey_fg2 = "#505459",
|
||||||
light_grey = "#667081",
|
light_grey = "#5a5e63",
|
||||||
red = "#e05f65",
|
red = "#e05f65",
|
||||||
baby_pink = "#ea696f",
|
baby_pink = "#ea696f",
|
||||||
pink = "#c68aee",
|
pink = "#c68aee",
|
||||||
line = "#242931", -- for lines like vertsplit
|
line = "#282d35", -- for lines like vertsplit
|
||||||
green = "#78DBA9",
|
green = "#78DBA9",
|
||||||
vibrant_green = "#87eab8",
|
vibrant_green = "#87eab8",
|
||||||
blue = "#70a5eb",
|
blue = "#70a5eb",
|
||||||
|
|
@ -27,9 +27,8 @@ M.base_30 = {
|
||||||
teal = "#7ddac5",
|
teal = "#7ddac5",
|
||||||
orange = "#e9a180",
|
orange = "#e9a180",
|
||||||
cyan = "#74bee9",
|
cyan = "#74bee9",
|
||||||
statusline_bg = "#1a1e24",
|
statusline_bg = "#1c2026",
|
||||||
lightbg = "#21262e",
|
lightbg = "#2b3038",
|
||||||
lightbg2 = "#21262e",
|
|
||||||
pmenu_bg = "#7ddac5",
|
pmenu_bg = "#7ddac5",
|
||||||
folder_bg = "#78DBA9",
|
folder_bg = "#78DBA9",
|
||||||
}
|
}
|
||||||
|
|
@ -42,17 +41,19 @@ M.base_16 = {
|
||||||
base04 = "#485263",
|
base04 = "#485263",
|
||||||
base05 = "#b6beca",
|
base05 = "#b6beca",
|
||||||
base06 = "#dee1e6",
|
base06 = "#dee1e6",
|
||||||
base07 = "#21262e",
|
base07 = "#dee1e6",
|
||||||
base08 = "#70a5eb",
|
base08 = "#e05f65",
|
||||||
base09 = "#f1cf8a",
|
base09 = "#e9a180",
|
||||||
base0A = "#e05f65",
|
base0A = "#f1cf8a",
|
||||||
base0B = "#f1cf8a",
|
base0B = "#78DBA9",
|
||||||
base0C = "#74bee9",
|
base0C = "#9cd1ff",
|
||||||
base0D = "#70aceb",
|
base0D = "#74bee9",
|
||||||
base0E = "#e05f65",
|
base0E = "#c68aee",
|
||||||
base0F = "#b6beca",
|
base0F = "#e05f65",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
M.type = "dark"
|
||||||
|
|
||||||
M = require("base46").override_theme(M, "decay")
|
M = require("base46").override_theme(M, "decay")
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue