clearer highlighting color in vis

This commit is contained in:
kento2 2026-04-10 14:24:32 +02:00
parent 8692a406ac
commit 959a0952b0

View file

@ -48,7 +48,7 @@ lexers.STYLE_TAG = 'fore:'..colors.bblk -- tag names, `<_div_ class="foo">`
lexers.STYLE_TYPE = 'fore:'..colors.bgrn -- types, `_int_ foo = 0` lexers.STYLE_TYPE = 'fore:'..colors.bgrn -- types, `_int_ foo = 0`
lexers.STYLE_VARIABLE = lexers.STYLE_DEFAULT -- variable names, `int _foo_ = 0` lexers.STYLE_VARIABLE = lexers.STYLE_DEFAULT -- variable names, `int _foo_ = 0`
lexers.STYLE_WHITESPACE = 'fore:'..colors.blk -- whitespaces lexers.STYLE_WHITESPACE = 'fore:'..colors.blk -- whitespaces
lexers.STYLE_EMBEDDED = 'back:'..colors.dim1 -- embedded code lexers.STYLE_EMBEDDED = 'back:'..colors.dim2 -- embedded code
lexers.STYLE_IDENTIFIER = lexers.STYLE_DEFAULT -- unclassified names lexers.STYLE_IDENTIFIER = lexers.STYLE_DEFAULT -- unclassified names
-- UI styles -- UI styles
@ -58,7 +58,7 @@ lexers.STYLE_CURSOR = 'fore:'..colors.fg..',reverse' -- cursor color
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR
lexers.STYLE_CURSOR_LINE = 'back:'..colors.dim1 -- cursor line lexers.STYLE_CURSOR_LINE = 'back:'..colors.dim1 -- cursor line
lexers.STYLE_COLOR_COLUMN = lexers.STYLE_CURSOR_LINE -- color column lexers.STYLE_COLOR_COLUMN = lexers.STYLE_CURSOR_LINE -- color column
lexers.STYLE_SELECTION = lexers.STYLE_CURSOR_LINE -- visual selection lexers.STYLE_SELECTION = 'back:'..colors.ylw -- visual selection
lexers.STYLE_STATUS = 'fore:'..colors.bblk..',back:'..colors.dim2 -- inactive statusline lexers.STYLE_STATUS = 'fore:'..colors.bblk..',back:'..colors.dim2 -- inactive statusline
lexers.STYLE_STATUS_FOCUSED = 'fore:'..colors.fg..',back:'..colors.dim2 -- active statusline lexers.STYLE_STATUS_FOCUSED = 'fore:'..colors.fg..',back:'..colors.dim2 -- active statusline
lexers.STYLE_SEPARATOR = lexers.STYLE_COMMENT -- vertical split color lexers.STYLE_SEPARATOR = lexers.STYLE_COMMENT -- vertical split color