From 29f030d64cbb6984c3e0c6145eb6c774bac799ee Mon Sep 17 00:00:00 2001 From: mvllow Date: Tue, 8 Feb 2022 09:04:07 -0600 Subject: [PATCH] reduce contrast of cursorline and cursorcolumn --- lua/rose-pine/theme.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index 7a79990..35b256a 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -19,9 +19,9 @@ function M.get(config) ColorColumn = { bg = p.highlight_high }, Conceal = { bg = p.none }, -- Cursor = {}, - CursorColumn = { bg = p.overlay }, + CursorColumn = { bg = p.highlight_low }, -- CursorIM = {}, - CursorLine = { bg = p.overlay }, + CursorLine = { bg = p.highlight_low }, CursorLineNr = { fg = p.text }, DarkenedPanel = { bg = p.surface }, DarkenedStatusline = { bg = p.surface },