littlejsengine 1.3.0 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/build.bat +1 -1
- package/docs/Audio.html +2268 -0
- package/docs/Color.html +3376 -0
- package/docs/Debug.html +2933 -0
- package/docs/Draw.html +4480 -0
- package/docs/EngineObject.html +4734 -0
- package/docs/FontImage.html +1055 -0
- package/docs/Input.html +2806 -0
- package/docs/Medal.html +1007 -0
- package/docs/Medals.html +628 -0
- package/docs/Music.html +584 -0
- package/docs/Newgrounds.html +1399 -0
- package/docs/Particle.html +4825 -0
- package/docs/ParticleEmitter.html +8099 -0
- package/docs/Random.html +1774 -0
- package/docs/Settings.html +3140 -0
- package/docs/Sound.html +1249 -0
- package/docs/TileCollision.html +1409 -0
- package/docs/TileLayer.html +7310 -0
- package/docs/TileLayerData.html +1052 -0
- package/docs/Timer.html +1295 -0
- package/docs/Utilities.html +3278 -0
- package/docs/Vector2.html +4266 -0
- package/docs/WebGL.html +2307 -0
- package/docs/engine.js.html +443 -0
- package/docs/engineAudio.js.html +627 -0
- package/docs/engineDebug.js.html +554 -0
- package/docs/engineDraw.js.html +539 -0
- package/docs/engineInput.js.html +571 -0
- package/docs/engineMedals.js.html +460 -0
- package/docs/engineObject.js.html +533 -0
- package/docs/engineParticles.js.html +443 -0
- package/docs/engineSettings.js.html +381 -0
- package/docs/engineTileLayer.js.html +503 -0
- package/docs/engineUtilities.js.html +700 -0
- package/docs/engineWebGL.js.html +511 -0
- package/docs/fonts/MavenPro-Regular.ttf +0 -0
- package/docs/fonts/Montserrat-Regular.ttf +0 -0
- package/docs/fonts/Muli-Black.ttf +0 -0
- package/docs/fonts/OFL-hind.txt +93 -0
- package/docs/fonts/OFL-montserrat.txt +93 -0
- package/docs/global.html +1771 -0
- package/docs/index.css +6 -0
- package/docs/index.html +267 -0
- package/docs/scripts/fix-code-block.js +53 -0
- package/docs/scripts/fix-navbar.js +25 -0
- package/docs/scripts/linenumber.js +25 -0
- package/docs/scripts/misc.js +217 -0
- package/docs/scripts/resize.js +85 -0
- package/docs/scripts/search.js +83 -0
- package/docs/scripts/third-party/Apache-License-2.0.txt +202 -0
- package/docs/scripts/third-party/fuse.js +9 -0
- package/docs/scripts/third-party/lang-css.js +2 -0
- package/docs/scripts/third-party/prettify.js +28 -0
- package/docs/static/favicon.png +0 -0
- package/docs/static/index.css +4 -0
- package/docs/styles/clean-jsdoc-theme-base.css +393 -0
- package/docs/styles/clean-jsdoc-theme-dark.css +324 -0
- package/docs/styles/clean-jsdoc-theme-light.css +319 -0
- package/docs/styles/reset.css +346 -0
- package/docs/styles/third-party/ionicons.min.css +11 -0
- package/docs/styles/third-party/prettify-jsdoc.css +111 -0
- package/docs/styles/third-party/prettify-tomorrow.css +5 -0
- package/engine/engine.all.js +72 -33
- package/engine/engine.all.min.js +1 -1
- package/engine/engine.all.release.js +72 -33
- package/engine/engine.js +1 -1
- package/engine/engineAudio.js +5 -7
- package/engine/engineBuild.bat +0 -1
- package/engine/engineDraw.js +4 -3
- package/engine/engineInput.js +5 -1
- package/engine/engineMedals.js +1 -1
- package/engine/engineObject.js +19 -16
- package/engine/engineParticles.js +1 -1
- package/engine/engineSettings.js +5 -0
- package/engine/engineUtilities.js +30 -2
- package/engine/engineWebGL.js +1 -1
- package/engine/index.d.ts +15 -5
- package/examples/breakout/index.html +3 -3
- package/examples/particles/index.html +62 -62
- package/examples/platformer/index.html +5 -5
- package/examples/puzzle/game.js +3 -1
- package/examples/puzzle/index.html +2 -2
- package/examples/stress/index.html +1 -1
- package/game.js +3 -14
- package/index.html +13 -13
- package/package.json +1 -1
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
::selection {
|
|
2
|
+
background: #ffce76;
|
|
3
|
+
color: #000;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
body {
|
|
7
|
+
background-color: #121216;
|
|
8
|
+
color: #f8f8f9;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
a,
|
|
12
|
+
a:active {
|
|
13
|
+
color: #00abff;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
hr {
|
|
17
|
+
border: 1px solid #333;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
h1,
|
|
21
|
+
h2,
|
|
22
|
+
h3,
|
|
23
|
+
h4,
|
|
24
|
+
h5,
|
|
25
|
+
h6 {
|
|
26
|
+
color: #f8f8f9;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
h1,
|
|
30
|
+
h2 {
|
|
31
|
+
border-bottom: 0.0625rem solid #333;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.navbar {
|
|
35
|
+
background: #000;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.navbar-ham {
|
|
39
|
+
background: #444;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.navbar-ham .first,
|
|
43
|
+
.navbar-ham .second,
|
|
44
|
+
.navbar-ham .third {
|
|
45
|
+
background: #fff;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.navbar-resize {
|
|
49
|
+
background: #222;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.resize-dots-container .dots {
|
|
53
|
+
background-color: #fff;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
.search-box-input-container {
|
|
58
|
+
background: #2a2b2c;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.search-icon {
|
|
62
|
+
fill: #aeaeae;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.search-box-input {
|
|
66
|
+
color: #fff;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.search-box-input::placeholder {
|
|
70
|
+
color: #aeaeae;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.search-box-input:focus + .search-icon {
|
|
74
|
+
fill: #fff;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.search-item-ul {
|
|
78
|
+
background: #333;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.search-item-ul li:hover {
|
|
82
|
+
background: rgba(0, 0, 0, 0.1);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.search-item-ul a,
|
|
86
|
+
.search-item-ul li {
|
|
87
|
+
color: #fff;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.accordion-heading {
|
|
91
|
+
color: #fff;
|
|
92
|
+
fill: #fff;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.accordion-content {
|
|
96
|
+
background: #111;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.accordion-content a {
|
|
100
|
+
color: #fff;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.methods.accordion-content {
|
|
104
|
+
background: #202020;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.menu-link {
|
|
108
|
+
color: #fff;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
tt,
|
|
113
|
+
code,
|
|
114
|
+
kbd,
|
|
115
|
+
samp {
|
|
116
|
+
background: #222;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
.signature-attributes {
|
|
121
|
+
color: #aaa;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
.ancestors {
|
|
126
|
+
color: #999;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.ancestors a {
|
|
130
|
+
color: #999 !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.important {
|
|
134
|
+
color: #950b02;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.type-signature {
|
|
138
|
+
color: #00918e;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.name,
|
|
142
|
+
.name a {
|
|
143
|
+
color: #f7f7f7;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.details {
|
|
147
|
+
background: #000;
|
|
148
|
+
color: #fff;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.prettyprint,
|
|
152
|
+
.pre-top-bar-container {
|
|
153
|
+
background: #000;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.member-item-container strong,
|
|
157
|
+
.method-member-container strong {
|
|
158
|
+
color: #fff;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.pre-top-bar-container {
|
|
162
|
+
background: #090909;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.prettyprint.source,
|
|
166
|
+
.prettyprint code {
|
|
167
|
+
background-color: #000;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.prettyprint.linenums li {
|
|
171
|
+
border-left: 3px #222831 solid;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/* stylelint-disable */
|
|
175
|
+
.prettyprint.linenums li.selected,
|
|
176
|
+
.prettyprint.linenums li.selected * {
|
|
177
|
+
background-color: #404040;
|
|
178
|
+
}
|
|
179
|
+
/* stylelint-enable */
|
|
180
|
+
|
|
181
|
+
table .name,
|
|
182
|
+
.params .name,
|
|
183
|
+
.props .name,
|
|
184
|
+
.name code {
|
|
185
|
+
color: #fff;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
table td,
|
|
189
|
+
.params td {
|
|
190
|
+
background-color: #000;
|
|
191
|
+
border-top: 1px solid #191919;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
table thead tr,
|
|
195
|
+
.params thead tr,
|
|
196
|
+
.props thead tr {
|
|
197
|
+
background-color: #000;
|
|
198
|
+
color: #fff;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/* stylelint-disable */
|
|
202
|
+
table .params thead tr,
|
|
203
|
+
.params .params thead tr,
|
|
204
|
+
.props .props thead tr {
|
|
205
|
+
background-color: #000;
|
|
206
|
+
color: #fff;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
.disabled {
|
|
211
|
+
color: #aaaaaa;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.code-copy-icon-container {
|
|
215
|
+
fill: #fff;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.code-copy-icon-container:hover {
|
|
219
|
+
background-color: #333;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.code-lang-name {
|
|
223
|
+
color: #ff8a00;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.tooltip {
|
|
227
|
+
background: #ffce76;
|
|
228
|
+
color: #000;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.tooltip .pun,
|
|
232
|
+
.tooltip .typ {
|
|
233
|
+
background: #ffce76;
|
|
234
|
+
color: #000;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/* code */
|
|
238
|
+
.pln {
|
|
239
|
+
color: #ffdd4a;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.str {
|
|
243
|
+
color: #56e39f;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/* a keyword */
|
|
247
|
+
.kwd {
|
|
248
|
+
color: #08b2e3;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
/* a comment */
|
|
252
|
+
.com {
|
|
253
|
+
color: #999;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/* a type name */
|
|
257
|
+
.typ {
|
|
258
|
+
color: #ef6f6c;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/* a literal value */
|
|
262
|
+
.lit {
|
|
263
|
+
color: #f5d67b;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/* punctuation */
|
|
267
|
+
.pun {
|
|
268
|
+
color: #5adbff;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/* lisp open bracket */
|
|
272
|
+
.opn {
|
|
273
|
+
color: #72e0d1;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/* lisp close bracket */
|
|
277
|
+
.clo {
|
|
278
|
+
color: #72e0d1;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/* a markup tag name */
|
|
282
|
+
.tag {
|
|
283
|
+
color: #007bff;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/* a markup attribute name */
|
|
287
|
+
.atn {
|
|
288
|
+
color: #f5d67b;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
/* a markup attribute value */
|
|
292
|
+
.atv {
|
|
293
|
+
color: #3e999f;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/* a declaration */
|
|
297
|
+
.dec {
|
|
298
|
+
color: #f5871f;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
/* a variable name */
|
|
302
|
+
.var {
|
|
303
|
+
color: #f5d67b;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/* a function name */
|
|
307
|
+
.fun {
|
|
308
|
+
color: #4271ae;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
blockquote {
|
|
313
|
+
background: #202020;
|
|
314
|
+
color: #fff;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
ol.linenums li {
|
|
318
|
+
color: #fff;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
code {
|
|
322
|
+
background: #333;
|
|
323
|
+
color: #fff;
|
|
324
|
+
}
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
::selection {
|
|
2
|
+
background: #ffce76;
|
|
3
|
+
color: #1d1919;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
body {
|
|
7
|
+
background-color: #fff;
|
|
8
|
+
color: #2f343a;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
a,
|
|
12
|
+
a:active {
|
|
13
|
+
color: #530fff;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
hr {
|
|
17
|
+
border: 1px solid #eee;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
h1,
|
|
21
|
+
h2,
|
|
22
|
+
h3,
|
|
23
|
+
h4,
|
|
24
|
+
h5,
|
|
25
|
+
h6 {
|
|
26
|
+
color: #2f343a;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
h1,
|
|
30
|
+
h2 {
|
|
31
|
+
border-bottom: 0.0625rem solid #eee;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.navbar {
|
|
35
|
+
background: #f8f8fa;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.navbar-ham {
|
|
39
|
+
background: #ddd;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.navbar-ham .first,
|
|
43
|
+
.navbar-ham .second,
|
|
44
|
+
.navbar-ham .third {
|
|
45
|
+
background: #000;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.navbar-resize {
|
|
49
|
+
background: #eee;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.resize-dots-container .dots {
|
|
53
|
+
background-color: #000;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
blockquote {
|
|
57
|
+
background: #f7f7f7;
|
|
58
|
+
color: #888;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
.search-box-input-container {
|
|
63
|
+
background: rgba(0, 0, 0, 0.02);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.search-icon {
|
|
67
|
+
fill: #888;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.search-box-input {
|
|
71
|
+
color: #000;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.search-box-input::placeholder {
|
|
75
|
+
color: #888;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.search-box-input:focus + .search-icon {
|
|
79
|
+
fill: #000;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.search-item-ul {
|
|
83
|
+
background: #eee;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.search-item-ul li:hover {
|
|
87
|
+
background: rgba(0, 0, 0, 0.1);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.search-item-ul a,
|
|
91
|
+
.search-item-ul li {
|
|
92
|
+
color: #000;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.accordion-heading {
|
|
96
|
+
color: #000;
|
|
97
|
+
fill: #000;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.accordion-content {
|
|
101
|
+
background: rgba(0, 0, 0, 0.02);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.accordion-content a {
|
|
105
|
+
color: #000;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.methods.accordion-content {
|
|
109
|
+
background: #e9e9e9;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.menu-link {
|
|
113
|
+
color: #000;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.signature-attributes {
|
|
117
|
+
color: #aaa;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.ancestors {
|
|
121
|
+
color: #999;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.ancestors a {
|
|
125
|
+
color: #999 !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.important {
|
|
129
|
+
color: #950b02;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.type-signature {
|
|
133
|
+
color: #00918e;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.name,
|
|
137
|
+
.name a {
|
|
138
|
+
color: #293a80;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.details {
|
|
142
|
+
background: #f9f9f9;
|
|
143
|
+
color: #101010;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.member-item-container strong,
|
|
147
|
+
.method-member-container strong {
|
|
148
|
+
color: #000;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.prettyprint,
|
|
152
|
+
.pre-top-bar-container {
|
|
153
|
+
background: #000;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.prettyprint code {
|
|
157
|
+
background-color: #000;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.prettyprint.linenums li {
|
|
161
|
+
border-left: 3px #222831 solid;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/* stylelint-disable */
|
|
165
|
+
.prettyprint.linenums li.selected,
|
|
166
|
+
.prettyprint.linenums li.selected * {
|
|
167
|
+
background-color: #404040;
|
|
168
|
+
}
|
|
169
|
+
/* stylelint-enable */
|
|
170
|
+
|
|
171
|
+
table,
|
|
172
|
+
.params,
|
|
173
|
+
.props {
|
|
174
|
+
box-shadow: 0 0 15px -4px rgba(0, 0, 0, 0.1);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
table .name,
|
|
178
|
+
.params .name,
|
|
179
|
+
.props .name,
|
|
180
|
+
.name code {
|
|
181
|
+
color: #4d4e53;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
table td,
|
|
185
|
+
.params td {
|
|
186
|
+
border-top: 1px solid #eee;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
table thead tr,
|
|
190
|
+
.params thead tr,
|
|
191
|
+
.props thead tr {
|
|
192
|
+
background-color: #fff;
|
|
193
|
+
color: #000;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/* stylelint-disable */
|
|
197
|
+
table .params thead tr,
|
|
198
|
+
.params .params thead tr,
|
|
199
|
+
.props .props thead tr {
|
|
200
|
+
background-color: #fff;
|
|
201
|
+
color: #000;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
/* dl.param-type {
|
|
205
|
+
border-bottom: 1px solid hsl(0, 0%, 87%);
|
|
206
|
+
} */
|
|
207
|
+
|
|
208
|
+
.disabled {
|
|
209
|
+
color: #454545;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
.code-copy-icon-container {
|
|
214
|
+
fill: #fff;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.code-copy-icon-container:hover {
|
|
218
|
+
background-color: #fff;
|
|
219
|
+
fill: #000;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.code-lang-name {
|
|
223
|
+
color: #ff8a00;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.tooltip {
|
|
227
|
+
background: #ffce76;
|
|
228
|
+
color: #000;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.tooltip .pun,
|
|
232
|
+
.tooltip .typ {
|
|
233
|
+
background: #ffce76;
|
|
234
|
+
color: #000;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.pln {
|
|
238
|
+
color: #f5d67b;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/* string content */
|
|
242
|
+
.str {
|
|
243
|
+
color: #55ae95;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/* a keyword */
|
|
247
|
+
.kwd {
|
|
248
|
+
color: #5edfff;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
/* a comment */
|
|
252
|
+
.com {
|
|
253
|
+
color: #a0a0a0;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/* a type name */
|
|
257
|
+
.typ {
|
|
258
|
+
color: #f5d67b;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/* a literal value */
|
|
262
|
+
.lit {
|
|
263
|
+
color: #f5d67b;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/* punctuation */
|
|
267
|
+
.pun {
|
|
268
|
+
color: #72e0d1;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/* lisp open bracket */
|
|
272
|
+
.opn {
|
|
273
|
+
color: #72e0d1;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/* lisp close bracket */
|
|
277
|
+
.clo {
|
|
278
|
+
color: #72e0d1;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/* a markup tag name */
|
|
282
|
+
.tag {
|
|
283
|
+
color: #007bff;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/* a markup attribute name */
|
|
287
|
+
.atn {
|
|
288
|
+
color: #f5d67b;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
/* a markup attribute value */
|
|
292
|
+
.atv {
|
|
293
|
+
color: #3e999f;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/* a declaration */
|
|
297
|
+
.dec {
|
|
298
|
+
color: #f5871f;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
/* a variable name */
|
|
302
|
+
.var {
|
|
303
|
+
color: #f5d67b;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/* a function name */
|
|
307
|
+
.fun {
|
|
308
|
+
color: #4271ae;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
ol.linenums li {
|
|
312
|
+
color: #fff;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
code {
|
|
317
|
+
background: #eee;
|
|
318
|
+
color: #000;
|
|
319
|
+
}
|