aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2010-11-15 22:27:59 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2010-11-15 22:27:59 -0500
commit9309bf0090968be7b1c0fea82c361e32c7d51ad3 (patch)
treed145985bc9f36434ec762b9f67cd2a4e9a99cb5f /themes
parent9c600dbc20fd5e0b990d66e74d0b86e426638a0f (diff)
LuaDoc cleanup.
Diffstat (limited to 'themes')
-rw-r--r--themes/dark/lexer.lua8
-rw-r--r--themes/light/lexer.lua8
-rw-r--r--themes/scite/lexer.lua11
3 files changed, 14 insertions, 13 deletions
diff --git a/themes/dark/lexer.lua b/themes/dark/lexer.lua
index 5338747e..f5a685a8 100644
--- a/themes/dark/lexer.lua
+++ b/themes/dark/lexer.lua
@@ -45,15 +45,15 @@ elseif OSX then
font_face = '!Monaco'
font_size = 12
end
-style_default = style{
+style_default = style {
font = font_face,
size = font_size,
fore = colors.white,
back = colors.black
}
style_line_number = style { fore = colors.black, back = colors.grey }
-style_bracelight = style { fore = color('66', '99', 'FF'), bold = true }
-style_bracebad = style { fore = color('FF', '66', '99'), bold = true }
+style_bracelight = style { fore = color('66', '99', 'FF'), bold = true }
+style_bracebad = style { fore = color('FF', '66', '99'), bold = true }
style_controlchar = style_nothing
style_indentguide = style { fore = colors.grey, back = colors.white }
-style_calltip = style { fore = colors.white, back = color('44', '44', '44') }
+style_calltip = style { fore = colors.white, back = color('44', '44', '44') }
diff --git a/themes/light/lexer.lua b/themes/light/lexer.lua
index 30140535..a5a8c1c7 100644
--- a/themes/light/lexer.lua
+++ b/themes/light/lexer.lua
@@ -52,15 +52,15 @@ elseif OSX then
font_face = '!Monaco'
font_size = 12
end
-style_default = style{
+style_default = style {
font = font_face,
size = font_size,
fore = colors.black,
back = colors.white
}
style_line_number = style { fore = colors.black, back = colors.grey }
-style_bracelight = style { fore = color('66', '99', 'FF'), bold = true }
-style_bracebad = style { fore = color('FF', '66', '99'), bold = true }
+style_bracelight = style { fore = color('66', '99', 'FF'), bold = true }
+style_bracebad = style { fore = color('FF', '66', '99'), bold = true }
style_controlchar = style_nothing
style_indentguide = style { fore = colors.grey, back = colors.white }
-style_calltip = style { fore = colors.black, back = color('DD', 'DD', 'DD') }
+style_calltip = style { fore = colors.black, back = color('DD', 'DD', 'DD') }
diff --git a/themes/scite/lexer.lua b/themes/scite/lexer.lua
index 2eeed7b2..2e45a8b4 100644
--- a/themes/scite/lexer.lua
+++ b/themes/scite/lexer.lua
@@ -44,15 +44,16 @@ elseif OSX then
font_face = '!Monaco'
font_size = 12
end
-style_default = style{
+style_default = style {
font = font_face,
size = font_size,
fore = colors.black,
back = colors.white,
}
style_line_number = style { back = color('C0', 'C0', 'C0') }
-style_bracelight = style { fore = color('00', '00', 'FF'), bold = true }
-style_bracebad = style { fore = color('FF', '00', '00'), bold = true }
+style_bracelight = style { fore = color('00', '00', 'FF'), bold = true }
+style_bracebad = style { fore = color('FF', '00', '00'), bold = true }
style_controlchar = style_nothing
-style_indentguide = style { fore = color('C0', 'C0', 'C0'), back = colors.white }
-style_calltip = style { fore = colors.white, back = color('44', '44', '44') }
+style_indentguide = style { fore = color('C0', 'C0', 'C0'),
+ back = colors.white }
+style_calltip = style { fore = colors.white, back = color('44', '44', '44') }