aboutsummaryrefslogtreecommitdiff
path: root/themes/dark/lexer.lua
blob: 9138e11b3b008a032473bd6ad3ad50bae833f094 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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') }