Skip to content

Commit

Permalink
fix(editor): add fg color to visual selections so they're easier to read
Browse files Browse the repository at this point in the history
  • Loading branch information
thesimonho committed Feb 23, 2025
1 parent 7b1abfb commit 71601c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/kanagawa-paper/groups/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function M.setup(colors, opts)
-- Title Titles for output from ":set all", ":autocmd" etc.
Title = { fg = theme.syn.fun, bold = true },
-- Visual Visual mode selection.
Visual = { bg = theme.ui.bg_visual },
Visual = { bg = theme.ui.bg_visual, fg = theme.ui.fg_dim },
-- VisualNOS Visual mode selection when vim is "Not Owning the Selection".
VisualNOS = { link = "Visual" },
-- WarningMsg Warning messages.
Expand Down
2 changes: 1 addition & 1 deletion lua/kanagawa-paper/themes/ink.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ M.get = function(opts, palette)
bg_gutter = opts.gutter and palette.sumiInk4 or "none",
bg_search = palette.springViolet1,
bg_cursorline = palette.sumiInk5,
bg_visual = palette.dragonViolet,
bg_visual = palette.lotusViolet2,
bg_statusline = palette.sumiInk4,
header1 = palette.dragonViolet,
header2 = palette.dragonOrange,
Expand Down

0 comments on commit 71601c1

Please sign in to comment.