aboutsummaryrefslogtreecommitdiffstats
path: root/light.lua
diff options
context:
space:
mode:
authorErlend Lind Madsen <erlendf80@gmail.com>2022-02-04 00:21:53 +0100
committerErlend Lind Madsen <erlendf80@gmail.com>2022-02-04 00:21:53 +0100
commiteb30665d5e439bc9bf541750437b61d2a09c8122 (patch)
tree7e0fcfdf0a458c0e0a8c00dc038d7c69003b69bc /light.lua
parenta90510efb778f928098affe3af7da18a8ec71d0f (diff)
downloadvis-minimal-theme-eb30665d5e439bc9bf541750437b61d2a09c8122.tar.gz
rename minimal-dark/light to only dark/light
Diffstat (limited to 'light.lua')
-rw-r--r--light.lua47
1 files changed, 47 insertions, 0 deletions
diff --git a/light.lua b/light.lua
new file mode 100644
index 0000000..d111381
--- /dev/null
+++ b/light.lua
@@ -0,0 +1,47 @@
+-- vis-minimal-theme (https://github.com/erf/vis-minimal-theme)
+-- minimal-light by Erlend Lind Madsen
+
+local back0 = '#ffffff'
+local back1 = '#c8c8c8'
+local back2 = '#989898'
+local fore0 = '#000000'
+local fore1 = '#383838'
+local fore2 = '#686868'
+
+local lexers = vis.lexers
+
+lexers.STYLE_DEFAULT ='back:'..back0..',fore:'..fore0
+lexers.STYLE_NOTHING = 'back:'..back0
+lexers.STYLE_CLASS = 'fore:'..fore0
+lexers.STYLE_COMMENT = 'fore:'..back2
+lexers.STYLE_CONSTANT = 'fore:'..fore0
+lexers.STYLE_DEFINITION = 'fore:'..fore0
+lexers.STYLE_ERROR = 'fore:'..fore0
+lexers.STYLE_FUNCTION = 'fore:'..fore0
+lexers.STYLE_KEYWORD = 'fore:'..fore2
+lexers.STYLE_LABEL = 'fore:'..fore0
+lexers.STYLE_NUMBER = 'fore:'..fore1
+lexers.STYLE_OPERATOR = 'fore:'..fore0
+lexers.STYLE_REGEX = 'fore:'..fore1
+lexers.STYLE_STRING = 'fore:'..fore1
+lexers.STYLE_PREPROCESSOR = 'fore:'..fore0
+lexers.STYLE_TAG = 'fore:'..fore0
+lexers.STYLE_TYPE = 'fore:'..fore0
+lexers.STYLE_VARIABLE = 'fore:'..fore0
+lexers.STYLE_WHITESPACE = ''
+lexers.STYLE_EMBEDDED = 'back:'..back1
+lexers.STYLE_IDENTIFIER = 'fore:'..fore0
+
+lexers.STYLE_LINENUMBER = 'fore:'..fore1
+lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER
+lexers.STYLE_CURSOR = 'back:'..back2
+lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:'..fore1
+lexers.STYLE_CURSOR_LINE = 'underlined'
+lexers.STYLE_COLOR_COLUMN = 'back:'..back1
+lexers.STYLE_SELECTION = 'back:'..back1
+lexers.STYLE_STATUS = 'reverse'
+lexers.STYLE_STATUS_FOCUSED = 'back:'..back1..',fore:'..fore1
+lexers.STYLE_SEPARATOR = lexers.STYLE_DEFAULT
+lexers.STYLE_INFO = 'fore:default,back:default'
+lexers.STYLE_EOF = ''
+