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-2010 Mitchell mitchell<att>caladbolg.net. See LICENSE.
-- SciTE lexer theme for Textadept.
module('lexer', package.seeall)
lexer.colors = {
green = color('00', '7F', '00'),
blue = color('00', '00', '7F'),
red = color('7F', '00', '00'),
yellow = color('7F', '7F', '00'),
teal = color('00', '7F', '7F'),
white = color('FF', 'FF', 'FF'),
black = color('00', '00', '00'),
grey = color('80', '80', '80'),
purple = color('7F', '00', '7F'),
orange = color('B0', '7F', '00'),
}
style_nothing = style { }
style_char = style { fore = colors.purple }
style_class = style { fore = colors.black, bold = true }
style_comment = style { fore = colors.green }
style_constant = style { fore = colors.teal, bold = true }
style_definition = style { fore = colors.black, bold = true }
style_error = style { fore = colors.red }
style_function = style { fore = colors.black, bold = true }
style_keyword = style { fore = colors.blue, bold = true }
style_number = style { fore = colors.teal }
style_operator = style { fore = colors.black, bold = true }
style_string = style { fore = colors.purple }
style_preproc = style { fore = colors.yellow }
style_tag = style { fore = colors.teal }
style_type = style { fore = colors.blue }
style_variable = style { fore = colors.black }
style_whitespace = style { }
style_identifier = style_nothing
-- Default styles.
local font_face = '!Monospace'
local font_size = 11
if WIN32 then
font_face = '!Courier New'
elseif OSX then
font_face = '!Monaco'
font_size = 12
end
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_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') }
|