Skip to content

Commit

Permalink
fix: Missing background in TelescopeSelection
Browse files Browse the repository at this point in the history
  • Loading branch information
loctvl842 committed Dec 8, 2023
1 parent 145d34d commit 149297e
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,28 +268,34 @@ require("monokai-pro").setup({
- Custom your own palette:

This is a sample config to customize `Tokyonight` palette:

```lua
require("monokai-pro").setup({
-- ...
--- @param filter "classic" | "machine" | "octagon" | "pro" | "ristretto" | "spectrum"
override = function
override = function(c)
return {
IndentBlanklineChar = { fg = c.base.dimmed4 },
}
end,
overridePalette = function(filter)
return {
dark2 = "#101014",
dark1 = "#16161E",
background = "#1A1B26",
text = "#C0CAF5",
accent1 = "#f7768e",
accent2 = "#ff9e64",
accent2 = "#7aa2f7",
accent3 = "#e0af68",
accent4 = "#0DB9D7",
accent5 = "#3d59a1",
accent4 = "#9ece6a",
accent5 = "#0DB9D7",
accent6 = "#9d7cd8",
dimmed1 = "#737aa2",
dimmed2 = "#787c99",
dimmed3 = "#363b54",
dimmed4 = "#363b54",
dimmed5 = "#16161e",
}
}
end
-- ...
})
Expand Down

0 comments on commit 149297e

Please sign in to comment.