From 9c543b9aa340c1545365116302315a0756d209a5 Mon Sep 17 00:00:00 2001 From: barrientosvctor Date: Fri, 27 Sep 2024 17:34:05 -0500 Subject: [PATCH] fix(highlights): Title and Directory Also I fix the link color for TelescopeTitle highlight group. --- lua/abyss/theme.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/abyss/theme.lua b/lua/abyss/theme.lua index 72cfb14..0093535 100644 --- a/lua/abyss/theme.lua +++ b/lua/abyss/theme.lua @@ -61,7 +61,7 @@ function M.get(user_opts) CursorLineNr = { fg = colors.lightgrey, bg = colors.bg }, CursorColumn = { link = "CursorLine" }, - Directory = { fg = colors.heavyyellow, bg = colors.none, bold = true }, + Directory = { fg = colors.yellow, bg = colors.none, bold = true }, DiffAdd = { fg = colors.darkgreen }, DiffChange = { fg = colors.yellow }, @@ -145,7 +145,7 @@ function M.get(user_opts) TabLineFill = { fg = colors.none, bg = colors.bg }, TabLineSel = { fg = colors.white, bg = colors.darkblue }, - Title = { fg = colors.heavyyellow, bold = true }, + Title = { fg = colors.white, bold = true }, Visual = { fg = colors.none, bg = colors.darkred }, VisualNOS = { link = "Visual" }, @@ -194,7 +194,7 @@ function M.get(user_opts) TelescopeMultiSelection = { link = "TelescopeSelection" }, TelescopeMultiIcon = { link = "TelescopeSelectionCaret" }, - TelescopeTitle = { fg = colors.white }, + TelescopeTitle = { link = "Title" }, TelescopeBorder = { fg = colors.fg },