aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-10-28 10:41:27 +0200
committerMarc André Tanner <mat@brain-dump.org>2016-10-28 10:46:14 +0200
commit4376ccb4e7b946b60f75e72ae4b5ad5111b1b01c (patch)
treed7b79a288b2a2892a16e4387e78beaf33276ff4d
parent184b7184dc2bc0b0340d94d3cc08678be98d1890 (diff)
downloadvis-4376ccb4e7b946b60f75e72ae4b5ad5111b1b01c.tar.gz
vis-4376ccb4e7b946b60f75e72ae4b5ad5111b1b01c.tar.xz
theme: use better defaults for color column and cursor line styles in 16 color mode
Setting the background color to the same color as the text is not helpful, instead use red for the color column and underline to highlight the cursor line.
-rw-r--r--lexers/themes/dark-16.lua4
-rw-r--r--lexers/themes/light-16.lua4
2 files changed, 4 insertions, 4 deletions
diff --git a/lexers/themes/dark-16.lua b/lexers/themes/dark-16.lua
index 6c7b129..986c4b3 100644
--- a/lexers/themes/dark-16.lua
+++ b/lexers/themes/dark-16.lua
@@ -26,6 +26,6 @@ lexers.STYLE_IDENTIFIER = 'fore:white'
lexers.STYLE_LINENUMBER = 'fore:white'
lexers.STYLE_CURSOR = 'reverse'
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:yellow'
-lexers.STYLE_CURSOR_LINE = 'back:white'
-lexers.STYLE_COLOR_COLUMN = 'back:white'
+lexers.STYLE_CURSOR_LINE = 'underlined'
+lexers.STYLE_COLOR_COLUMN = 'back:red'
lexers.STYLE_SELECTION = 'back:white'
diff --git a/lexers/themes/light-16.lua b/lexers/themes/light-16.lua
index c1a995a..b4ba391 100644
--- a/lexers/themes/light-16.lua
+++ b/lexers/themes/light-16.lua
@@ -26,6 +26,6 @@ lexers.STYLE_IDENTIFIER = 'fore:black'
lexers.STYLE_LINENUMBER = 'fore:black'
lexers.STYLE_CURSOR = 'reverse'
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:yellow'
-lexers.STYLE_CURSOR_LINE = 'back:black'
-lexers.STYLE_COLOR_COLUMN = 'back:black'
+lexers.STYLE_CURSOR_LINE = 'underlined'
+lexers.STYLE_COLOR_COLUMN = 'back:red'
lexers.STYLE_SELECTION = 'back:black'