Update fold highlight colors for better visibility

Changed Folded and CursorLineFold colors to enhance
contrast and improve user experience. Updated UfoFoldedFg
and UfoCursorFoldedLine for consistency with new color scheme.
This commit is contained in:
Ray Elliott 2026-01-13 20:07:14 +00:00
parent 486dbef96a
commit 442d10363b
2 changed files with 4 additions and 3 deletions

View File

@ -77,7 +77,8 @@ return {
-- Folds
-- ============================================================================
Folded = { fg = c.fg_strong, bold = true },
Folded = { fg = c.diag_hint_dark, bg = c.NONE, bold = true },
CursorLineFold = { fg = c.diag_hint_dark, bg = c.bg_hl, bold = true },
FoldColumn = { fg = c.fg_weak },
-- ============================================================================

View File

@ -151,8 +151,8 @@ return {
-- ============================================================================
UfoFoldedBg = { bg = c.bg_hl_weak },
UfoFoldedFg = { fg = c.fg_weak },
UfoCursorFoldedLine = { bg = c.bg_hl, fg = c.fg },
UfoFoldedFg = { fg = c.diag_hint_dark },
UfoCursorFoldedLine = { bg = c.bg_hl, fg = c.diag_hint_dark },
UfoPreviewBorder = { fg = c.fg_weak },
UfoPreviewNormal = { bg = c.bg_ui },
UfoPreviewCursorLine = { bg = c.bg_hl },