Skip to content

Commit

Permalink
theme: add default low color theme
Browse files Browse the repository at this point in the history
The theme was contributed by David B. Lamkins
  • Loading branch information
martanne committed Nov 8, 2015
1 parent 90cde82 commit befc9b6
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
32 changes: 32 additions & 0 deletions lexers/themes/dark-16.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
-- Eight-color scheme
local lexers = vis.lexers
-- dark
lexers.STYLE_DEFAULT = 'back:black,fore:white'
lexers.STYLE_NOTHING = 'back:black'
lexers.STYLE_CLASS = 'fore:yellow'
lexers.STYLE_COMMENT = 'fore:black,bold'
lexers.STYLE_CONSTANT = 'fore:cyan'
lexers.STYLE_DEFINITION = 'fore:blue'
lexers.STYLE_ERROR = 'fore:red,italics'
lexers.STYLE_FUNCTION = 'fore:blue,bold'
lexers.STYLE_KEYWORD = 'fore:green'
lexers.STYLE_LABEL = 'fore:green'
lexers.STYLE_NUMBER = 'fore:cyan'
lexers.STYLE_OPERATOR = 'fore:green'
lexers.STYLE_REGEX = 'fore:green'
lexers.STYLE_STRING = 'fore:cyan'
lexers.STYLE_PREPROCESSOR = 'fore:magenta'
lexers.STYLE_TAG = 'fore:red'
lexers.STYLE_TYPE = 'fore:yellow'
lexers.STYLE_VARIABLE = 'fore:blue,bold'
lexers.STYLE_WHITESPACE = ''
lexers.STYLE_EMBEDDED = 'back:blue'
lexers.STYLE_IDENTIFIER = 'fore:white'

lexers.STYLE_LINENUMBER = 'fore:white'
lexers.STYLE_CURSOR = 'fore:red,back:white'
lexers.STYLE_CURSOR_LINE = 'back:white'
lexers.STYLE_COLOR_COLUMN = 'back:white'
-- lexers.STYLE_SELECTION = 'back:white'
lexers.STYLE_SELECTION = 'back:white'

1 change: 1 addition & 0 deletions lexers/themes/default-16.lua

0 comments on commit befc9b6

Please sign in to comment.