-
Notifications
You must be signed in to change notification settings - Fork 19
/
KScript Dark.sublime-color-scheme
109 lines (109 loc) · 2.99 KB
/
KScript Dark.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
102
103
104
105
106
107
108
109
{
"name": "SublimeKSP Dark Theme",
"author": "EvilDragon",
"globals":
{
"foreground": "#999",
"background": "#191919",
"caret": "#999",
"invisibles": "#444",
"line_highlight": "#222",
"selection": "#333",
"gutter_foreground": "#999",
"brackets_options": "foreground underline bold",
"brackets_foreground": "#F00",
"bracket_contents_options": "foreground bold",
"bracket_contents_foreground": "#F00"
},
"rules":
[
{
"name": "Keyword",
"scope": "keyword",
"foreground": "#069",
"font_style": "bold"
},
{
"name": "Operator",
"scope": "operator",
"foreground": "#888"
},
{
"name": "Arithmetic Operator",
"scope": "arithmetic",
"foreground": "#888"
},
{
"name": "Identifier",
"scope": "variable",
"foreground": "#963996"
},
{
"name": "Family name",
"scope": "entity.name.type",
"foreground": "#939",
"font_style": "italic"
},
{
"name": "Function parameter",
"scope": "variable.parameter",
"foreground": "#C96"
},
{
"name": "Function argument",
"scope": "meta.function-call.arguments",
"foreground": "#939"
},
{
"name": "Built-in variable or constant",
"scope": "support.variable",
"foreground": "#C9C"
},
{
"name": "User function definition",
"scope": "entity.name.function",
"foreground": "#F60",
"font_style": "bold"
},
{
"name": "User function call",
"scope": "meta.function-call -function.ksp",
"foreground": "#F60"
},
{
"name": "Built-in function call",
"scope": "support.function",
"foreground": "#A70"
},
{
"name": "Number",
"scope": "constant.numeric",
"foreground": "#09C"
},
{
"name": "String single quoted",
"scope": "string.quoted.single",
"foreground": "#966"
},
{
"name": "String double quoted",
"scope": "string.quoted.double",
"foreground": "#966"
},
{
"name": "Comment",
"scope": "comment",
"foreground": "#074"
},
{
"name": "Punctuation",
"scope": "punctuation",
"foreground": "#888"
},
{
"name": "Parentheses",
"scope": "parentheses -begin.source.ksp -end.source.ksp",
"foreground": "#888"
}
]
}