aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2012-01-05 10:24:51 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2012-01-05 10:24:51 -0500
commit7cf43c7dd653ef28c2212975f81b14be6473e06f (patch)
tree251c33430f492d8780ab22cd69a9abe0af02f0c3 /themes
parentbd351f0bef198d981b67830ddb5e4cd42c3aca37 (diff)
Code cleanup.
Diffstat (limited to 'themes')
-rw-r--r--themes/dark/lexer.lua6
-rw-r--r--themes/light/lexer.lua6
2 files changed, 4 insertions, 8 deletions
diff --git a/themes/dark/lexer.lua b/themes/dark/lexer.lua
index da02a6ab..c752ffc3 100644
--- a/themes/dark/lexer.lua
+++ b/themes/dark/lexer.lua
@@ -87,10 +87,8 @@ elseif OSX then
font_size = 12
end
l.style_default = style {
- font = font_face,
- size = font_size,
- fore = l.colors.light_grey,
- back = l.colors.black
+ font = font_face, size = font_size,
+ fore = l.colors.light_grey, back = l.colors.black
}
l.style_line_number = style { fore = l.colors.dark_grey, back = l.colors.black }
l.style_bracelight = style { fore = l.colors.light_blue }
diff --git a/themes/light/lexer.lua b/themes/light/lexer.lua
index 4a8eb897..aa7fe003 100644
--- a/themes/light/lexer.lua
+++ b/themes/light/lexer.lua
@@ -86,10 +86,8 @@ elseif OSX then
font_size = 12
end
l.style_default = style {
- font = font_face,
- size = font_size,
- fore = l.colors.light_black,
- back = l.colors.white
+ font = font_face, size = font_size,
+ fore = l.colors.light_black, back = l.colors.white
}
l.style_line_number = style { fore = l.colors.grey, back = l.colors.white }
l.style_bracelight = style { fore = l.colors.light_blue }