-
Notifications
You must be signed in to change notification settings - Fork 18
/
KScript Light.sublime-color-scheme
101 lines (101 loc) · 2.79 KB
/
KScript Light.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "SublimeKSP Light Theme",
"author": "EvilDragon",
"globals":
{
"foreground": "#000",
"background": "#fff",
"caret": "#000",
"invisibles": "#aaa",
"line_highlight": "#f0f0f0",
"selection": "#ddd",
"gutter_foreground": "#999",
"brackets_options": "foreground underline",
"brackets_foreground": "#5555FF",
"bracket_contents_options": "foreground",
"bracket_contents_foreground": "#33B"
},
"rules":
[
{
"name": "Keyword",
"scope": "keyword",
"foreground": "#00007F",
"font_style": "bold"
},
{
"name": "Operator",
"scope": "operator",
"foreground": "#000000"
},
{
"name": "Arithmetic Operator",
"scope": "arithmetic",
"foreground": "#000000"
},
{
"name": "Identifier",
"scope": "variable",
"foreground": "#882288"
},
{
"name": "Family name",
"scope": "entity.name.type",
"foreground": "#000",
"font_style": "italic"
},
{
"name": "Function parameter",
"scope": "variable.parameter",
"foreground": "#882288"
},
{
"name": "Function argument",
"scope": "meta.function-call.arguments",
"foreground": "#882288"
},
{
"name": "Built-in variable or constant",
"scope": "support.variable",
"foreground": "#785505"
},
{
"name": "User function definition",
"scope": "entity.name.function",
"foreground": "#DD6000",
"font_style": "bold"
},
{
"name": "User function call",
"scope": "meta.function-call -function.ksp",
"foreground": "#DD6000"
},
{
"name": "Built-in function call",
"scope": "support.function",
"foreground": "#c00"
},
{
"name": "Number",
"scope": "constant.numeric",
"foreground": "#222288"
},
{
"name": "String single quoted",
"scope": "string.quoted.single",
"foreground": "#990",
"font_style": "italic"
},
{
"name": "String double quoted",
"scope": "string.quoted.double",
"foreground": "#990",
"font_style": "italic"
},
{
"name": "Comment",
"scope": "comment",
"foreground": "#007F00"
}
]
}