mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Added markdown highlight groups. (#32)
* Added markdown highlights. * enchancement: Improve non-treesitter support(#6) Added markdown highlight groups.
This commit is contained in:
parent
7f2bcbb369
commit
353c4e6f1e
1 changed files with 22 additions and 0 deletions
|
|
@ -123,12 +123,34 @@ theme.base = {
|
||||||
Underlined = { fg = p.foam, style = 'underline' },
|
Underlined = { fg = p.foam, style = 'underline' },
|
||||||
|
|
||||||
htmlArg = { fg = p.iris },
|
htmlArg = { fg = p.iris },
|
||||||
|
htmlBold = { fg = p.text, style = 'bold' },
|
||||||
htmlEndTag = { fg = p.subtle },
|
htmlEndTag = { fg = p.subtle },
|
||||||
|
htmlH1 = { fg = p.love, style = 'bold' },
|
||||||
|
htmlH2 = { fg = p.rose, style = 'bold' },
|
||||||
|
htmlH3 = { fg = p.iris, style = 'bold' },
|
||||||
|
htmlH4 = { fg = p.pine, style = 'bold' },
|
||||||
|
htmlH5 = { fg = p.foam, style = 'bold' },
|
||||||
|
htmlItalic = { fg = p.text, style = maybe_italic },
|
||||||
htmlLink = { fg = p.text },
|
htmlLink = { fg = p.text },
|
||||||
htmlTag = { fg = p.subtle },
|
htmlTag = { fg = p.subtle },
|
||||||
htmlTagN = { fg = p.text },
|
htmlTagN = { fg = p.text },
|
||||||
htmlTagName = { fg = p.foam },
|
htmlTagName = { fg = p.foam },
|
||||||
|
|
||||||
|
markdownLinkText = { fg = p.iris, style = 'underline' },
|
||||||
|
markdownUrl = { fg = p.iris, style = 'underline' },
|
||||||
|
mkdCode = { fg = p.foam, style = maybe_italic },
|
||||||
|
mkdCodeDelimiter = { fg = p.rose },
|
||||||
|
mkdCodeEnd = { fg = p.foam },
|
||||||
|
mkdCodeStart = { fg = p.foam },
|
||||||
|
mkdFootnotes = { fg = p.foam },
|
||||||
|
mkdID = { fg = p.foam , style = 'underline' },
|
||||||
|
mkdInlineURL = { fg = p.foam, style = 'underline' },
|
||||||
|
mkdLink = { fg = p.rose , style = 'bold' },
|
||||||
|
mkdLinkDef = { fg = p.rose , style = 'bold' },
|
||||||
|
mkdListItemLine = { fg = p.text },
|
||||||
|
mkdRule = { fg = p.subtle },
|
||||||
|
mkdURL = { fg = p.foam, style = 'underline' },
|
||||||
|
|
||||||
DiagnosticHint = { fg = groups.hint },
|
DiagnosticHint = { fg = groups.hint },
|
||||||
DiagnosticInfo = { fg = groups.info },
|
DiagnosticInfo = { fg = groups.info },
|
||||||
DiagnosticWarn = { fg = groups.warn },
|
DiagnosticWarn = { fg = groups.warn },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue