blob: 4078b14aaa0114e32b1498565662cfd8f837134d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
local lexers = vis.lexers
local lightyellow = '#efbf71'
local lightgray = '#9a9c8b'
local darkgray = '#1e1f1e'
lexers.STYLE_DEFAULT = 'back:black,fore:white'
lexers.STYLE_NOTHING = 'back:black'
lexers.STYLE_CLASS = 'fore:cyan,bold'
lexers.STYLE_COMMENT = 'fore:white'
lexers.STYLE_CONSTANT = 'fore:cyan'
lexers.STYLE_DEFINITION = 'fore:white'
lexers.STYLE_ERROR = 'fore:red'
lexers.STYLE_FUNCTION = 'fore:'..lightyellow
lexers.STYLE_KEYWORD = 'fore:red'
lexers.STYLE_LABEL = 'fore:white'
lexers.STYLE_NUMBER = 'fore:magenta'
lexers.STYLE_OPERATOR = 'fore:white'
lexers.STYLE_REGEX = 'fore:white'
lexers.STYLE_STRING = 'fore:green'
lexers.STYLE_PREPROCESSOR = 'fore:white'
lexers.STYLE_TAG = 'fore:white'
lexers.STYLE_TYPE = 'fore:cyan,bold'
lexers.STYLE_VARIABLE = 'fore:white'
lexers.STYLE_WHITESPACE = ''
lexers.STYLE_EMBEDDED = 'fore:white'
lexers.STYLE_IDENTIFIER = 'fore:blue'
lexers.STYLE_LINENUMBER = 'fore:white'
lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER
lexers.STYLE_CURSOR = 'reverse'
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:cyan'
lexers.STYLE_CURSOR_LINE = 'underlined'
lexers.STYLE_COLOR_COLUMN = 'back:black'
lexers.STYLE_SELECTION = 'fore:black,back:yellow'
lexers.STYLE_STATUS = 'back:'..darkgray..'fore:'..lightgray
lexers.STYLE_STATUS_FOCUSED = 'fore:'..darkgray..',back:'..lightgray..',bold'
lexers.STYLE_SEPARATOR = lexers.STYLE_DEFAULT
lexers.STYLE_INFO = 'fore:default,back:default,bold'
lexers.STYLE_EOF = ''
|