forked from Zednosius/StellarisSublime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StellarisTheme.tmTheme
271 lines (224 loc) · 6.12 KB
/
StellarisTheme.tmTheme
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!--
To change a color, find the right scope for what you want to change and change its foreground color
Scopes can be found by activating the syntax file for a stellaris file, and then putting the caret on what you want to color
and then press ctrl+shift+alt+P , the word in the bottom of the popup is the scope you need to find.
If other colors change that you don't want to change, you have to go into the sublime-syntax file and edit the syntax there.
Hopefully it isn't too hard to modify.
-->
<key>author</key>
<string>Zednosius</string>
<key>name</key>
<string>Stellaris Theme</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>
<!-- General editor color settings -->
<dict>
<key>background</key>
<string>#000000</string>
<key>caret</key>
<string>#A7A7A7</string>
<key>foreground</key>
<string>#F8F8F8</string>
<key>invisibles</key>
<string>#CAE2FB3D</string>
<key>lineHighlight</key>
<string>#FFFFFF0D</string>
<key>selection</key>
<string>#DDF0FF33</string>
</dict>
</dict>
<!-- All Scopes are colored with this -->
<dict>
<key>name</key>
<string>Scopes</string>
<key>scope</key>
<string>scope</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#b732ff</string>
</dict>
</dict>
<!-- All effects are colored with this -->
<dict>
<key>name</key>
<string>Effects</string>
<key>scope</key>
<string>effect</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#ff8300</string>
</dict>
</dict>
<!-- All conditions are colored with this -->
<dict>
<key>name</key>
<string>Conditions</string>
<key>scope</key>
<string>condition</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#9CCB19</string>
</dict>
</dict>
<!-- All 'keywords' that are usually followed by braces are colored with this, basically stuff that don't really fall into one of the other three-->
<dict>
<key>name</key>
<string>Keywords with braces after</string>
<key>scope</key>
<string>brace.block</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#16beeb</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Constant Variable</string>
<key>scope</key>
<string>constant</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#fca530</string>
</dict>
</dict>
<!-- All keywords that point to a localised text-->
<dict>
<key>name</key>
<string>LocalisedKeywords</string>
<key>scope</key>
<string>keywords.localised</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#abcdef</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Localised Text</string>
<key>scope</key>
<string>localised</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#D51232</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Commented Line</string>
<key>scope</key>
<string>line.comment</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>italic</string>
<key>foreground</key>
<string>#a5abaf</string>
</dict>
</dict>
<!-- Left hand side of equal signs-->
<dict>
<key>name</key>
<string>Keyword defined</string>
<key>scope</key>
<string>predefined.keyword</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#5e73af</string>
</dict>
</dict>
<!-- Right hand side of equal signs-->
<dict>
<key>name</key>
<string>Defined Keyvalue</string>
<key>scope</key>
<string>defined.key.value</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#00b200</string>
</dict>
</dict>
<!-- Right hand side of equal signs-->
<dict>
<key>name</key>
<string>Defined Keyvalue</string>
<key>scope</key>
<string>predefined.key.value</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#afb200</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Comparator Sign</string>
<key>scope</key>
<string>sign.comparator</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#ffffff</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Boolean Operator</string>
<key>scope</key>
<string>boolean.operator</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#EE4000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Constant Number</string>
<key>scope</key>
<string>constant.number</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#1f8206</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Predefined file value</string>
<key>scope</key>
<string>predefined.constant</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#bbeeff</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Left hand variable</string>
<key>scope</key>
<string>undetermined.lefthand.variable</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#aaffaa</string>
</dict>
</dict>
</array>
</dict>
</plist>