vis: Mejorar color de selección

This commit is contained in:
Cat /dev/Nulo 2022-04-10 18:45:47 -03:00
parent 6d2feb454c
commit 298af10639

View file

@ -11,6 +11,7 @@ local surface = '#fffaf3'
local overlay = '#f2e9e1' local overlay = '#f2e9e1'
local highlight_med = '#dfdad9' local highlight_med = '#dfdad9'
local highlight_high = '#cecacd'
local lexers = vis.lexers local lexers = vis.lexers
@ -38,7 +39,7 @@ lexers.STYLE_IDENTIFIER = 'fore:'..text
lexers.STYLE_LINENUMBER = 'fore:'..subtle lexers.STYLE_LINENUMBER = 'fore:'..subtle
lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER
lexers.STYLE_CURSOR = 'back:'..muted lexers.STYLE_CURSOR = 'back:'..highlight_high
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:'..subtle lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:'..subtle
lexers.STYLE_CURSOR_LINE = 'underlined' lexers.STYLE_CURSOR_LINE = 'underlined'
lexers.STYLE_COLOR_COLUMN = 'back:'..highlight_med lexers.STYLE_COLOR_COLUMN = 'back:'..highlight_med