diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2018-03-14 10:52:17 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2018-03-14 10:52:17 +0100 |
| commit | be949f35e816a91fca58e7735c6d6e3806421956 (patch) | |
| tree | 6ef79653a39ed995c5e58a580bad6679b82a2727 /lua/themes | |
| parent | 8c5bb848ce1d2ec20392a63afc9168605f9952c9 (diff) | |
| parent | b24be0909923f9f237accc98986128032d98b9db (diff) | |
| download | vis-be949f35e816a91fca58e7735c6d6e3806421956.tar.gz vis-be949f35e816a91fca58e7735c6d6e3806421956.tar.xz | |
Merge branch 'zenburn-theme' of https://github.com/casr/vis
Diffstat (limited to 'lua/themes')
| l--------- | lua/themes/default-256.lua | 2 | ||||
| -rw-r--r-- | lua/themes/zenburn.lua | 39 |
2 files changed, 40 insertions, 1 deletions
diff --git a/lua/themes/default-256.lua b/lua/themes/default-256.lua index 8479b1b..e12776c 120000 --- a/lua/themes/default-256.lua +++ b/lua/themes/default-256.lua @@ -1 +1 @@ -solarized.lua
\ No newline at end of file +zenburn.lua
\ No newline at end of file diff --git a/lua/themes/zenburn.lua b/lua/themes/zenburn.lua new file mode 100644 index 0000000..f60e900 --- /dev/null +++ b/lua/themes/zenburn.lua @@ -0,0 +1,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 = '' +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 = '' +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 = '' +lexers.STYLE_WHITESPACE = '' +lexers.STYLE_EMBEDDED = '' +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' |
