LineNr{fg=Normal.bg.da(32),bg=opt.darken_line_nrandNormal.bg.da(4)or"NONE"},-- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
PmenuThumb{bg=Normal.bg.li(58)},-- Popup menu: Thumb of the scrollbar.
Search{bg=p.blossom.de(10).li(54),fg=p.fg},-- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
IncSearch{bg=p.blossom,fg=p.bg,gui="bold"},-- 'incsearch' highlighting; also used for the text replaced with ":s///c"
-- Substitute { }, -- |:substitute| replacement text highlighting
MatchParen{Search},-- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
-- QuickFixLine { }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
SpellBad{fg=Error.fg.de(30),gui="undercurl",guisp=Error.fg},-- Word that is not recognized by the spellchecker. |spell| Combined with the highlighting used otherwise.
SpellCap{SpellBad,guisp=Error.fg.li(10)},-- Word that should start with a capital. |spell| Combined with the highlighting used otherwise.
SpellLocal{SpellCap},-- Word that is recognized by the spellchecker as one that is used in another region. |spell| Combined with the highlighting used otherwise.
SpellRare{SpellBad,guisp=p.wood},-- Word that is recognized by the spellchecker as one that is hardly ever used. |spell| Combined with the highlighting used otherwise.
StatusLine{bg=p.bg.da(14),fg=p.fg},-- status line of current window
StatusLineNC{bg=p.bg.da(10),fg=p.fg.li(28)},-- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window.
-- VisualNOS { }, -- Visual mode selection when vim is "Not Owning the Selection".
NonText{fg=Normal.bg.da(22)},-- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|.
SpecialKey{NonText,gui="italic"},-- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace|
Whitespace{NonText},-- "nbsp", "space", "tab" and "trail" in 'listchars'
EndOfBuffer{NonText},-- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|.
WildMenu{bg=p.blossom,fg=p.bg},-- current match in 'wildmenu' completion
Directory{gui="bold"},-- directory names (and other special names in listings)
Question{MoreMsg},-- |hit-enter| prompt and yes/no questions
Title{gui="bold"},-- titles for output from ":set all", ":autocmd" etc.
-- These groups are not listed as default vim groups,
-- but they are defacto standard group names for syntax highlighting.
-- commented out groups should chain up to their "preferred" group by
-- default,
-- Uncomment and edit if you want more specific syntax highlighting.
Constant{fg=p.fg.li(24),gui="italic"},-- (preferred) any constant
-- String { }, -- a string constant: "this is a string"
-- Character { }, -- a character constant: 'c', '\n'
Number{fg=p.fg,gui="italic"},-- a number constant: 234, 0xff
Boolean{Number},-- a boolean constant: TRUE, false
-- Float { }, -- a floating point constant: 2.3e10
Identifier{fg=p.fg.li(15)},-- (preferred) any variable name
Function{fg=p.fg},-- function name (also: methods for classes)
Statement{fg=p.fg,gui="bold"},-- (preferred) any statement
LspDiagnosticsDefaultError{base.DiagnosticError},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultWarning{base.DiagnosticWarn},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultInformation{base.DiagnosticInfo},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultHint{base.DiagnosticHint},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsVirtualTextError{base.DiagnosticVirtualTextError},-- Used for "Error" diagnostic virtual text
LspDiagnosticsVirtualTextWarning{base.DiagnosticVirtualTextWarn},-- Used for "Warning" diagnostic virtual text
-- LspDiagnosticsVirtualTextInformation { }, -- Used for "Information" diagnostic virtual text
-- LspDiagnosticsVirtualTextHint { }, -- Used for "Hint" diagnostic virtual text
LspDiagnosticsUnderlineError{base.DiagnosticUnderlineError},-- Used to underline "Error" diagnostics
LspDiagnosticsUnderlineWarning{base.DiagnosticUnderlineWarn},-- Used to underline "Warning" diagnostics
LspDiagnosticsUnderlineInformation{base.DiagnosticUnderlineInfo},-- Used to underline "Information" diagnostics
LspDiagnosticsUnderlineHint{base.DiagnosticUnderlineHint},-- Used to underline "Hint" diagnostics
-- LspDiagnosticsFloatingError { }, -- Used to color "Error" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingWarning { }, -- Used to color "Warning" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingInformation { }, -- Used to color "Information" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingHint { }, -- Used to color "Hint" diagnostic messages in diagnostics float
-- LspDiagnosticsSignError { }, -- Used for "Error" signs in sign column
-- LspDiagnosticsSignWarning { }, -- Used for "Warning" signs in sign column
-- LspDiagnosticsSignInformation { }, -- Used for "Information" signs in sign column
-- LspDiagnosticsSignHint { }, -- Used for "Hint" signs in sign column