Skip to content

Commit

Permalink
fix: popup menu low contrast
Browse files Browse the repository at this point in the history
fixes #44
  • Loading branch information
miikanissi committed Oct 23, 2024
1 parent 54647ef commit 5815828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/modus-themes/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ function M.setup()
Substitute = { fg = c.fg_main, bg = c.bg_red_intense }, -- |:substitute| replacement text highlighting.
QuickFixLine = { fg = c.fg_main, bg = c.visual }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
Pmenu = { fg = c.fg_active, bg = c.bg_active }, -- Popup menu: normal item.
PmenuSel = { fg = c.fg_main, bg = c.bg_dim }, -- Popup menu: selected item.
PmenuSbar = { fg = c.bg_main, bg = c.fg_dim }, -- Popup menu: scrollbar.
PmenuSel = { fg = c.bg_active, bg = c.fg_active }, -- Popup menu: selected item.
PmenuSbar = { fg = c.fg_active, bg = c.bg_dim }, -- Popup menu: scrollbar.
PmenuThumb = { link = "Cursor" }, -- Popup menu: Thumb of the scrollbar.
Menu = { link = "Pmenu" }, -- Menu.
Scrollbar = { link = "PmenuSbar" }, -- Scrollbar.
Expand Down

0 comments on commit 5815828

Please sign in to comment.