diff options
Diffstat (limited to 'themes/dark/lexer.lua')
-rw-r--r-- | themes/dark/lexer.lua | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/themes/dark/lexer.lua b/themes/dark/lexer.lua new file mode 100644 index 00000000..9138e11b --- /dev/null +++ b/themes/dark/lexer.lua @@ -0,0 +1,58 @@ +-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE. +-- Dark lexer theme for Textadept. + +module('lexer', package.seeall) + +colors = { + green = color('4D', '99', '4D'), + blue = color('40', '80', 'C0'), + red = color('99', '4C', '4C'), + yellow = color('99', '99', '4D'), + teal = color('4D', '99', '99'), + white = color('AA', 'AA', 'AA'), + black = color('33', '33', '33'), + grey = color('99', '99', '99'), + purple = color('99', '4D', '99'), + orange = color('C0', '80', '40'), +} + +style_nothing = style { } +style_char = style { fore = colors.red, bold = true } +style_class = style { fore = colors.white, underline = true } +style_comment = style { fore = colors.blue, bold = true } +style_constant = style { fore = colors.teal, bold = true } +style_definition = style { fore = colors.red, bold = true } +style_error = style { fore = colors.red, italic = true } +style_function = style { fore = colors.white, bold = true } +style_keyword = style { fore = colors.yellow, bold = true } +style_number = style { fore = colors.teal } +style_operator = style { fore = colors.white, bold = true } +style_string = style { fore = colors.green, bold = true } +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_embedded = style_tag..{ back = color('44', '44', '44') } +style_identifier = style_nothing + +-- Default styles. +local font_face = '!Bitstream Vera Sans Mono' +local font_size = 10 +if WIN32 then + font_face = '!Courier New' +elseif MAC then + font_face = '!Monaco' + font_size = 12 +end +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_controlchar = style_nothing +style_indentguide = style { fore = colors.grey, back = colors.white } +style_calltip = style { fore = colors.white, back = color('44', '44', '44') } |