diff options
Diffstat (limited to 'lua/meltdown/highlights.lua')
-rw-r--r-- | lua/meltdown/highlights.lua | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/lua/meltdown/highlights.lua b/lua/meltdown/highlights.lua index a977007..b0af0d5 100644 --- a/lua/meltdown/highlights.lua +++ b/lua/meltdown/highlights.lua @@ -15,6 +15,7 @@ local function highlights(colors) ["VertSplit"] = { fg = colors.black, bg = borders}, ["WinSeparator"] = { fg = colors.black, bg = borders}, ["Normal"] = { fg = colors.normal_fg, bg = colors.bg_3 }, + ["DarkFg"] = { fg = colors.bg_3, bg = colors.bg_1 }, ["DarkGray"] = { fg = colors.dark_grey }, ["StatusLine"] = { fg = colors.red, bg = borders, bold = true }, ["Title"] = { fg = colors.orange, bg = colors.lighter_grey, bold = true }, @@ -148,11 +149,12 @@ local function highlights(colors) ["DiagnosticUnderlineError"] = { sp = colors.pink, undercurl = true }, ["DiagnosticUnderlineWarn"] = { sp = colors.light_yellow, undercurl = true }, ["DiagnosticUnderlineInfo"] = { sp = colors.teal_2, undercurl = true }, - ["WarpNormal"] = { fg = colors.black, bg = colors.salmon, bold = true }, - ["TelescopeNormal"] = { fg = colors.salmon, bg = colors.bg_1}, - ["TelescopeSelection"] = { fg = colors.black, bg = colors.salmon }, - ["TelescopeTitle"] = { fg = colors.salmon, bold = true }, + ["WarpNormal"] = { fg = colors.black, bg = colors.gold_1, bold = true }, + ["TelescopeNormal"] = { fg = colors.light_yellow, bg = colors.bg_3}, + ["TelescopeSelection"] = { fg = colors.black, bg = colors.gold_1 }, + ["TelescopeTitle"] = { fg = colors.gold_1, bold = true }, ["TelescopeMatching"] = { reverse = true }, + ["TelescopeBorder"] = { bg = colors.bg_1 }, ["vimMapRhs"] = { fg = colors.magenta }, ["vimMapRhsExtend"] = { fg = colors.magenta }, ["Delimiter"] = { fg = colors.blue }, @@ -193,6 +195,12 @@ local function highlights(colors) ["htmlTag"] = { fg = colors.purple}, ["Operator"] = { fg = colors.blue }, ["Special"] = { fg = colors.gold_5}, + ["NonText"] = { fg = colors.salmon }, + ["ColorColumnLine"] = { fg = colors.bg_1, bold = true }, + + ["LuaLineDiffAdd"] = {fg = colors.radioactive_green}, + ["LuaLineDiffChange"] = {fg = colors.light_yellow}, + ["LuaLineDiffDelete"] = {fg = colors.salmon}, } end |