From 08fae6ffec4ae70ba6b2e1cafa780ff317ef0b61 Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Fri, 6 Sep 2024 10:50:56 +0200 Subject: [PATCH] Adjust telescope highlights --- lua/dieter/init.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/dieter/init.lua b/lua/dieter/init.lua index bcfbf98..e1939d1 100644 --- a/lua/dieter/init.lua +++ b/lua/dieter/init.lua @@ -38,7 +38,7 @@ local colors = { background = hsl(216, 28, 7), foreground = hsl(0, 0, 80), dimmed = hsl(0, 0, 25), - dimmed_subtle = hsl(0, 0, 70), + dimmed_subtle = hsl(0, 0, 50), highlight_subtle = hsl(0, 0, 6), highlight_intense = hsl(58, 100, 60), @@ -140,8 +140,9 @@ local theme = { TelescopeNormal = { fg = c.foreground, bg = c.background }, TelescopeBorder = { bold = true }, - TelescopeSelection = { reverse = true }, - TelescopeResultsComment = { fg = c.foreground, italic = true }, + TelescopeSelection = { bg = c.selection }, + TelescopeResultsNormal = { fg = c.foreground, bold = true }, + TelescopeResultsComment = { fg = c.dimmed_subtle, italic = true, bold = false }, Visual = { bg = c.selection }, LspReferenceText = { fg = c.highlight_intense, undercurl = true },