From c835bd57422d982a767b354b441fab5a5f545548 Mon Sep 17 00:00:00 2001 From: siduck Date: Mon, 6 Jun 2022 10:27:26 +0530 Subject: [PATCH] Update decay.lua --- lua/hl_themes/decay.lua | 45 +++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/lua/hl_themes/decay.lua b/lua/hl_themes/decay.lua index b087c6e..b92c114 100644 --- a/lua/hl_themes/decay.lua +++ b/lua/hl_themes/decay.lua @@ -2,20 +2,20 @@ local M = {} M.base_30 = { white = "#dee1e6", - darker_black = "#13171b", + darker_black = "#111519", black = "#171B20", -- nvim bg - black2 = "#1a1e24", - one_bg = "#21262e", - one_bg2 = "#242931", - one_bg3 = "#242931", - grey = "#485263", - grey_fg = "#525c6d", - grey_fg2 = "#5c6677", - light_grey = "#667081", + black2 = "#1e2227", + one_bg = "#262a2f", + one_bg2 = "#2f3338", + one_bg3 = "#373b40", + grey = "#41454a", + grey_fg = "#494d52", + grey_fg2 = "#505459", + light_grey = "#5a5e63", red = "#e05f65", baby_pink = "#ea696f", pink = "#c68aee", - line = "#242931", -- for lines like vertsplit + line = "#282d35", -- for lines like vertsplit green = "#78DBA9", vibrant_green = "#87eab8", blue = "#70a5eb", @@ -27,9 +27,8 @@ M.base_30 = { teal = "#7ddac5", orange = "#e9a180", cyan = "#74bee9", - statusline_bg = "#1a1e24", - lightbg = "#21262e", - lightbg2 = "#21262e", + statusline_bg = "#1c2026", + lightbg = "#2b3038", pmenu_bg = "#7ddac5", folder_bg = "#78DBA9", } @@ -42,17 +41,19 @@ M.base_16 = { base04 = "#485263", base05 = "#b6beca", base06 = "#dee1e6", - base07 = "#21262e", - base08 = "#70a5eb", - base09 = "#f1cf8a", - base0A = "#e05f65", - base0B = "#f1cf8a", - base0C = "#74bee9", - base0D = "#70aceb", - base0E = "#e05f65", - base0F = "#b6beca", + base07 = "#dee1e6", + base08 = "#e05f65", + base09 = "#e9a180", + base0A = "#f1cf8a", + base0B = "#78DBA9", + base0C = "#9cd1ff", + base0D = "#74bee9", + base0E = "#c68aee", + base0F = "#e05f65", } +M.type = "dark" + M = require("base46").override_theme(M, "decay") return M