From 4376ccb4e7b946b60f75e72ae4b5ad5111b1b01c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Fri, 28 Oct 2016 10:41:27 +0200 Subject: 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. --- lexers/themes/dark-16.lua | 4 ++-- lexers/themes/light-16.lua | 4 ++-- 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' -- cgit v1.2.3