diff options
-rw-r--r-- | themes/dark/lexer.lua | 1 | ||||
-rw-r--r-- | themes/light/lexer.lua | 1 | ||||
-rw-r--r-- | themes/scite/lexer.lua | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/themes/dark/lexer.lua b/themes/dark/lexer.lua index 9138e11b..128e1a69 100644 --- a/themes/dark/lexer.lua +++ b/themes/dark/lexer.lua @@ -32,6 +32,7 @@ style_preproc = style { fore = colors.blue } style_tag = style { fore = colors.teal, bold = true } style_type = style { fore = colors.green } style_variable = style { fore = colors.white, italic = true } +style_whitespace = style { } style_embedded = style_tag..{ back = color('44', '44', '44') } style_identifier = style_nothing diff --git a/themes/light/lexer.lua b/themes/light/lexer.lua index 67a977dc..930443a2 100644 --- a/themes/light/lexer.lua +++ b/themes/light/lexer.lua @@ -39,6 +39,7 @@ style_preproc = style { fore = colors.red } style_tag = style { fore = colors.teal, bold = true } style_type = style { fore = colors.green } style_variable = style { fore = colors.red } +style_whitespace = style { } style_embedded = style_tag..{ back = color('DD', 'DD', 'DD') } style_identifier = style_nothing diff --git a/themes/scite/lexer.lua b/themes/scite/lexer.lua index 162d47ee..69f2ee75 100644 --- a/themes/scite/lexer.lua +++ b/themes/scite/lexer.lua @@ -32,6 +32,7 @@ style_preproc = style { fore = colors.yellow } style_tag = style { fore = colors.teal } style_type = style { fore = colors.blue } style_variable = style { fore = colors.black } +style_whitespace = style { } style_identifier = style_nothing -- Default styles. |