about summary refs log tree commit diff stats
path: root/config/vis/themes/fake256.lua
diff options
context:
space:
mode:
Diffstat (limited to 'config/vis/themes/fake256.lua')
-rw-r--r--config/vis/themes/fake256.lua64
1 files changed, 0 insertions, 64 deletions
diff --git a/config/vis/themes/fake256.lua b/config/vis/themes/fake256.lua
deleted file mode 100644
index 7ed8f71..0000000
--- a/config/vis/themes/fake256.lua
+++ /dev/null
@@ -1,64 +0,0 @@
--- uses 24-bit color values to "trick" vis into using correct colors, based off vim's "zellner"
-local lexers = vis.lexers
-
-local colors = {
-	['col0'] = '#16150e',
-	['col1'] = '#a32810',
-	['col2'] = '#727a18',
-	['col3'] = '#a37720',
-	['col4'] = '#3d6266',
-	['col5'] = '#7a4955',
-	['col6'] = '#557a55',
-	['col7'] = '#8e8463',
-	['col8'] = '#4c4635',
-	['col9'] = '#cc3214',
-	['col10'] = '#8e991e',
-	['col11'] = '#cc9528',
-	['col12'] = '#4c7b7f',
-	['col13'] = '#995b6b',
-	['col14'] = '#6b996b',
-	['col15'] = '#ccbc8e',
-}
--- dark
-lexers.STYLE_DEFAULT ='back:default,fore:default' -- hi Normal -- correct
-lexers.STYLE_COMMENT = 'fore:'..colors.col9 -- hi Comment -- correct
-lexers.STYLE_CONSTANT = 'fore:'..colors.col13 -- hi Constant -- correct
-lexers.STYLE_SPECIAL = 'back:'..colors.col5 -- hi Special
-lexers.STYLE_IDENTIFIER = 'fore:default' -- hi Identifier -- correct
-lexers.STYLE_STATEMENT = 'fore:'..colors.col1 -- hi Statementa -- correct
-lexers.STYLE_PREPROCESSOR = 'fore:'..colors.col5 -- hi PreProc
-lexers.STYLE_TYPE = 'fore:'..colors.col12 -- hi Type -- correct
-lexers.STYLE_SELECTION = 'reverse' -- hi Visual
-lexers.STYLE_TAG = 'fore:'..colors.col2 -- hi Tag
-lexers.STYLE_ERROR = 'back:'..colors.col1..',fore:default,italics' -- hi Error
-lexers.STYLE_STATUS = 'back:default,fore:'..colors.col4..',reverse' -- hi StatusLineNC
-lexers.STYLE_STATUS_FOCUSED = lexers.STYLE_STATUS..',bold' -- hi StatusLine
-lexers.STYLE_NOTHING = 'back:default' -- hi Ignore
-lexers.STYLE_DEFINITION = 'fore:'..colors.col4 --
-lexers.STYLE_REGEX = 'fore:'..colors.col2 --
-lexers.STYLE_WHITESPACE = '' -- hi Whitespace
-lexers.STYLE_OPERATOR = lexers.STYLE_DEFAULT
-
-lexers.STYLE_FUNCTION = lexers.STYLE_DEFAULT
-lexers.STYLE_LINENUMBER = 'fore:default' -- hi LineNr
-lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER -- hi CursorLineNr
-lexers.STYLE_CURSOR = 'reverse' -- hi Cursor
-lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:yellow' --
-lexers.STYLE_CURSOR_LINE = 'underlined' -- hi CursorLine
-lexers.STYLE_COLOR_COLUMN = 'back:'..colors.col1 -- hi CursorColumn
-lexers.STYLE_SEPARATOR = lexers.STYLE_DEFAULT --
-lexers.STYLE_INFO = lexers.STYLE_DEFAULT..',bold' --
-lexers.STYLE_EOF = '' --
-
--- links
-lexers.STYLE_STRING = lexers.STYLE_CONSTANT
-lexers.STYLE_NUMBER = lexers.STYLE_CONSTANT
-
-lexers.STYLE_VARIABLE = lexers.STYLE_IDENTIFIER
-
-lexers.STYLE_LABEL = lexers.STYLE_STATEMENT
-lexers.STYLE_KEYWORD = lexers.STYLE_STATEMENT
-
-lexers.STYLE_EMBEDDED = lexers.STYLE_SPECIAL
-
-lexers.STYLE_CLASS = lexers.STYLE_TYPE