aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2021-02-13 18:55:37 -0500
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2021-02-13 18:55:37 -0500
commita81fbc0b621aef0eae640be3dc453eda409c70c2 (patch)
treeae9908e547e00b6c9064a105e83100d8515651f2 /themes
parentcd17224d42a019dc54e33b0ec787242165fcf90e (diff)
Take advantage of Scinterm being able to use a native terminal caret.
Also change brace highlight style to not change the background color, as some terminal cursors invert the current cell, so this would cause the highlighted brace at the current position to "unhighlight", causing confusion. This requires latest Scinterm.
Diffstat (limited to 'themes')
-rw-r--r--themes/term.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/term.lua b/themes/term.lua
index 8e24dfe0..804bcc18 100644
--- a/themes/term.lua
+++ b/themes/term.lua
@@ -29,7 +29,7 @@ colors.light_white = 0xFFFFFF
-- Predefined styles.
styles.default = {fore = colors.white, back = colors.black}
styles.line_number = {fore = colors.black, bold = true}
-styles.brace_light = {fore = colors.black, back = colors.white}
+styles.brace_light = {fore = colors.yellow, bold = true}
--styles.control_char =
--styles.indent_guide =
styles.call_tip = {fore = colors.white, back = colors.black}