From 0e493bcaccff011372f4c0596cab5b6297302a16 Mon Sep 17 00:00:00 2001 From: siduck76 Date: Wed, 27 Oct 2021 12:10:13 +0530 Subject: [PATCH] add telescope title highlights --- lua/colors/highlights.lua | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lua/colors/highlights.lua b/lua/colors/highlights.lua index bf6631c..ce14692 100644 --- a/lua/colors/highlights.lua +++ b/lua/colors/highlights.lua @@ -19,6 +19,7 @@ local purple = colors.purple local red = colors.red local white = colors.white local yellow = colors.yellow +local one_bg3 = colors.one_bg3 local ui = require("core.utils").load_config().ui @@ -76,7 +77,7 @@ fg("CmpItemMenu", white) -- misc -- inactive statuslines as thin lines -fg("StatusLineNC", one_bg2 .. " gui=underline") +fg("StatusLineNC", one_bg3 .. " gui=underline") fg("LineNr", grey) fg("NvimInternalError", red) @@ -150,7 +151,7 @@ if ui.transparency then end -- Telescope -fg("TelescopeBorder", line) -fg("TelescopePreviewBorder", grey) -fg("TelescopePromptBorder", line) -fg("TelescopeResultsBorder", line) +fg("TelescopeBorder", one_bg) +fg_bg("TelescopePreviewTitle", green, one_bg) +fg_bg("TelescopePromptTitle", blue, one_bg) +fg_bg("TelescopeResultsTitle", red, one_bg)