From 442d10363b4f8f3961978ba3e4a7bca6ed7f22f3 Mon Sep 17 00:00:00 2001 From: ray Date: Tue, 13 Jan 2026 20:07:14 +0000 Subject: [PATCH] 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. --- lua/paper-tonic-modern/groups/editor.lua | 3 ++- lua/paper-tonic-modern/groups/plugins.lua | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/paper-tonic-modern/groups/editor.lua b/lua/paper-tonic-modern/groups/editor.lua index 8c4dfce..5c33094 100644 --- a/lua/paper-tonic-modern/groups/editor.lua +++ b/lua/paper-tonic-modern/groups/editor.lua @@ -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 }, -- ============================================================================ diff --git a/lua/paper-tonic-modern/groups/plugins.lua b/lua/paper-tonic-modern/groups/plugins.lua index 25711f9..fd847fe 100644 --- a/lua/paper-tonic-modern/groups/plugins.lua +++ b/lua/paper-tonic-modern/groups/plugins.lua @@ -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 },