-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLSL.sublime-color-scheme
70 lines (70 loc) · 2.14 KB
/
LSL.sublime-color-scheme
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
59
60
61
62
63
64
65
66
67
68
69
70
{
"rules":
[
{
"name": "lsl",
"scope": "source.lsl",
"background": "#F4F4F4",
"caret": "#000000",
"foreground": "#000000",
"invisibles": "#BFBFBF",
"lineHighlight": "#BFBFBF",
"selection": "#8BC5B0"
},
{
"name": "sections",
"scope": "entity.name.class.state.begin.lsl, constant.language.state.lsl",
"foreground": "#801a4d"
},
{
"name": "data types",
"scope": "storage.type.lsl",
"foreground": "#006600",
},
{
"name": "events",
"scope": "support.function.event.lsl",
"foreground": "#004d80",
},
{
"name": "comment",
"scope": "comment.block.lsl,comment.line.double-slash.lsl",
"foreground": "#cd4d26",
},
{
"name": "string literals",
"scope": "string.quoted.double.lsl",
"foreground": "#006600",
},
{
"name": "functions",
"scope": "support.function.ll.lsl, support.function.ossl.lsl",
"foreground": "#820124",
},
{
"name": "integer constants",
"scope": "constant.language.integer.lsl, constant.language.ll.integer.lsl, constant.language.ossl.integer.lsl",
"foreground": "#242687",
},
{
"name": "string constants",
"scope": "constant.language.string.lsl, constant.language.ll.string.lsl",
"foreground": "#336699",
},
{
"name": "float constants",
"scope": "constant.language.ll.float.lsl",
"foreground": "#4c1a80",
},
{
"name": "compound constants",
"scope": "constant.language.ll.compound.lsl",
"foreground": "#774477",
},
{
"name": "flow control keywords",
"scope": "keyword.control.flow.lsl",
"foreground": "#0000cd",
}
]
}