Skip to content

Commit

Permalink
Fixed Telescope background in case when config.disable_background = t…
Browse files Browse the repository at this point in the history
…rue and (#110)

config.disable_float_background = false

Co-authored-by: Arkady Rost <[email protected]>
  • Loading branch information
arkrost and Arkady Rost authored Jan 3, 2023
1 parent 1837586 commit 8e800a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/rose-pine/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -465,10 +465,10 @@ function M.get(config)
PounceMatch = { link = 'Search' },

-- nvim-telescope/telescope.nvim
TelescopeBorder = { fg = groups.border },
TelescopeBorder = { fg = groups.border, bg = styles.float_background },
TelescopeMatching = { fg = p.rose },
TelescopeNormal = { fg = p.subtle },
TelescopePromptNormal = { fg = p.text },
TelescopeNormal = { fg = p.subtle, bg = styles.float_background },
TelescopePromptNormal = { fg = p.text, bg = styles.float_background },
TelescopePromptPrefix = { fg = p.subtle },
TelescopeSelection = { fg = p.text, bg = p.overlay },
TelescopeSelectionCaret = { fg = p.rose, bg = p.overlay },
Expand Down

0 comments on commit 8e800a9

Please sign in to comment.