File: zenburn.lua

package info (click to toggle)
vis 0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,624 kB
  • sloc: ansic: 23,195; sh: 981; makefile: 363; python: 47
file content (39 lines) | stat: -rw-r--r-- 1,480 bytes parent folder | download
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
-- A poor imitation of the original Vim colourscheme which can be
-- found at https://github.com/jnurmine/Zenburn

local lexers = vis.lexers

lexers.STYLE_DEFAULT = 'fore:#d7d7d7,back:#3a3a3a'
lexers.STYLE_NOTHING = ''
lexers.STYLE_CLASS = 'fore:#dfdfbf'
lexers.STYLE_COMMENT = 'fore:#87af87'
lexers.STYLE_CONSTANT = 'fore:#d7afaf,bold'
lexers.STYLE_DEFINITION = 'fore:#ffd7af,bold'
lexers.STYLE_ERROR = 'fore:#87d7af,back:#303030,bold'
lexers.STYLE_FUNCTION = 'fore:#d7d7af'
lexers.STYLE_KEYWORD = 'fore:#afaf87,bold'
lexers.STYLE_LABEL = 'fore:#d7d7af'
lexers.STYLE_NUMBER = 'fore:#87d7d7'
lexers.STYLE_OPERATOR = 'fore:#ffffd7'
lexers.STYLE_REGEX = 'fore:#f0dfaf'
lexers.STYLE_STRING = 'fore:#d78787'
lexers.STYLE_PREPROCESSOR = 'fore:#ffd7af,bold'
lexers.STYLE_TAG = 'fore:#d7afaf,bold'
lexers.STYLE_TYPE = 'fore:#d7d7af,bold'
lexers.STYLE_VARIABLE = 'fore:#efdcbc'
lexers.STYLE_WHITESPACE = ''
lexers.STYLE_EMBEDDED = 'fore:#cc9393'
lexers.STYLE_IDENTIFIER = ''

lexers.STYLE_LINENUMBER = 'fore:#585858'
lexers.STYLE_LINENUMBER_CURSOR = 'fore:#666666'
lexers.STYLE_CURSOR = 'back:#585858'
lexers.STYLE_CURSOR_PRIMARY = 'fore:#1c1c1c,back:#87afaf,bold'
lexers.STYLE_CURSOR_LINE = 'back:#444444'
lexers.STYLE_COLOR_COLUMN = 'back:#444444'
lexers.STYLE_SELECTION = 'back:#5f875f'
lexers.STYLE_STATUS = 'back:#262626,fore:#87af87'
lexers.STYLE_STATUS_FOCUSED = 'back:#303030,fore:#afaf87,bold'
lexers.STYLE_SEPARATOR = ''
lexers.STYLE_INFO = ''
lexers.STYLE_EOF = 'fore:#585858'