Skip to content

Commit

Permalink
fix(highlights): improve Pmenu readability (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramojus authored Oct 27, 2024
1 parent 0900a74 commit 5dcfdfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/mellifluous/highlights/general.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ function M.set(hl, colors)
})
hl.set("FloatTitle", { bg = hl.get("NormalFloat").bg, fg = colors.comments })
hl.set("FloatShadow", { bg = colors.dark_bg })
hl.set("Pmenu", { bg = colors.bg4, fg = config.is_bg_dark and colors.fg3 or colors.fg4 }) -- Popup menu: Normal item.
hl.set("PmenuSel", { bg = config.is_bg_dark and colors.fg5 or colors.dark_bg }) -- Popup menu: Selected item.
hl.set("Pmenu", { bg = colors.bg3, fg = config.is_bg_dark and colors.fg3 or colors.fg4 }) -- Popup menu: Normal item.
hl.set("PmenuSel", { bg = groups.MenuButtonSelected(colors.bg3).bg }) -- Popup menu: Selected item.
hl.set("PmenuSbar", { bg = colors.bg3 }) -- Popup menu: Scrollbar.
hl.set("PmenuThumb", { bg = colors.fg5 }) -- Popup menu: Thumb of the scrollbar.
hl.set("Question", { fg = colors.other_keywords }) -- |hit-enter| prompt and yes/no questions
Expand Down

0 comments on commit 5dcfdfe

Please sign in to comment.