How to make foreground bold? #310
Answered
by
mvllow
cofeek-codes
asked this question in
Q&A
-
this is my config return {
{
"rose-pine/neovim",
name = "rose-pine",
opts = {
variant = "main",
styles = {
transparency = true,
italic = false,
bold = false,
},
highlight_groups = {
CursorLineNr = { link = "LineNr" },
MatchParen = { fg = "#f6c177", bg = "#908caa" },
CursorLine = { bg = "none" },
},
},
},
}
i want to make MatchParen group to have no background and foreground to be bold. i could not figure out how to do so. Please help |
Beta Was this translation helpful? Give feedback.
Answered by
mvllow
Aug 10, 2024
Replies: 1 comment 2 replies
-
ok i managed to make it bold, but i still need to make background transparent. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's a default blend applied to "MatchParen" by our theme so you'll want to add
inherit = false
to your highlight override