minduim 1.0.3 → 1.0.4
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.
- checksums.yaml +4 -4
- data/_includes/footer.html +16 -16
- data/_includes/header.html +31 -31
- data/_includes/post.html +25 -25
- data/_includes/sidebar.html +31 -31
- data/_includes/widget.html +5 -5
- data/_layouts/archive.html +41 -41
- data/_layouts/blog.html +35 -35
- data/_layouts/page.html +13 -13
- data/_layouts/post.html +74 -74
- data/assets/css/base.css +1 -1
- data/assets/css/layout.css +235 -235
- data/assets/css/syntax.css +425 -425
- data/assets/css/theme.css +40 -40
- metadata +2 -2
data/assets/css/syntax.css
CHANGED
@@ -1,425 +1,425 @@
|
|
1
|
-
.highlight .hll {
|
2
|
-
background-color: #ffffcc;
|
3
|
-
}
|
4
|
-
.highlight .c {
|
5
|
-
color: #408080;
|
6
|
-
font-style: italic;
|
7
|
-
} /* Comment */
|
8
|
-
.highlight .err {
|
9
|
-
border: 1px solid #ff0000;
|
10
|
-
} /* Error */
|
11
|
-
.highlight .k {
|
12
|
-
color: #008000;
|
13
|
-
font-weight: bold;
|
14
|
-
} /* Keyword */
|
15
|
-
.highlight .o {
|
16
|
-
color: #666666;
|
17
|
-
} /* Operator */
|
18
|
-
.highlight .cm {
|
19
|
-
color: #408080;
|
20
|
-
font-style: italic;
|
21
|
-
} /* Comment.Multiline */
|
22
|
-
.highlight .cp {
|
23
|
-
color: #bc7a00;
|
24
|
-
} /* Comment.Preproc */
|
25
|
-
.highlight .c1 {
|
26
|
-
color: #408080;
|
27
|
-
font-style: italic;
|
28
|
-
} /* Comment.Single */
|
29
|
-
.highlight .cs {
|
30
|
-
color: #408080;
|
31
|
-
font-style: italic;
|
32
|
-
} /* Comment.Special */
|
33
|
-
.highlight .gd {
|
34
|
-
color: #a00000;
|
35
|
-
} /* Generic.Deleted */
|
36
|
-
.highlight .ge {
|
37
|
-
font-style: italic;
|
38
|
-
} /* Generic.Emph */
|
39
|
-
.highlight .gr {
|
40
|
-
color: #ff0000;
|
41
|
-
} /* Generic.Error */
|
42
|
-
.highlight .gh {
|
43
|
-
color: #000080;
|
44
|
-
font-weight: bold;
|
45
|
-
} /* Generic.Heading */
|
46
|
-
.highlight .gi {
|
47
|
-
color: #00a000;
|
48
|
-
} /* Generic.Inserted */
|
49
|
-
.highlight .go {
|
50
|
-
color: #808080;
|
51
|
-
} /* Generic.Output */
|
52
|
-
.highlight .gp {
|
53
|
-
color: #000080;
|
54
|
-
font-weight: bold;
|
55
|
-
} /* Generic.Prompt */
|
56
|
-
.highlight .gs {
|
57
|
-
font-weight: bold;
|
58
|
-
} /* Generic.Strong */
|
59
|
-
.highlight .gu {
|
60
|
-
color: #800080;
|
61
|
-
font-weight: bold;
|
62
|
-
} /* Generic.Subheading */
|
63
|
-
.highlight .gt {
|
64
|
-
color: #0040d0;
|
65
|
-
} /* Generic.Traceback */
|
66
|
-
.highlight .kc {
|
67
|
-
color: #008000;
|
68
|
-
font-weight: bold;
|
69
|
-
} /* Keyword.Constant */
|
70
|
-
.highlight .kd {
|
71
|
-
color: #008000;
|
72
|
-
font-weight: bold;
|
73
|
-
} /* Keyword.Declaration */
|
74
|
-
.highlight .kn {
|
75
|
-
color: #008000;
|
76
|
-
font-weight: bold;
|
77
|
-
} /* Keyword.Namespace */
|
78
|
-
.highlight .kp {
|
79
|
-
color: #008000;
|
80
|
-
} /* Keyword.Pseudo */
|
81
|
-
.highlight .kr {
|
82
|
-
color: #008000;
|
83
|
-
font-weight: bold;
|
84
|
-
} /* Keyword.Reserved */
|
85
|
-
.highlight .kt {
|
86
|
-
color: #b00040;
|
87
|
-
} /* Keyword.Type */
|
88
|
-
.highlight .m {
|
89
|
-
color: #666666;
|
90
|
-
} /* Literal.Number */
|
91
|
-
.highlight .s {
|
92
|
-
color: #ba2121;
|
93
|
-
} /* Literal.String */
|
94
|
-
.highlight .na {
|
95
|
-
color: #7d9029;
|
96
|
-
} /* Name.Attribute */
|
97
|
-
.highlight .nb {
|
98
|
-
color: #008000;
|
99
|
-
} /* Name.Builtin */
|
100
|
-
.highlight .nc {
|
101
|
-
color: #0000ff;
|
102
|
-
font-weight: bold;
|
103
|
-
} /* Name.Class */
|
104
|
-
.highlight .no {
|
105
|
-
color: #880000;
|
106
|
-
} /* Name.Constant */
|
107
|
-
.highlight .nd {
|
108
|
-
color: #aa22ff;
|
109
|
-
} /* Name.Decorator */
|
110
|
-
.highlight .ni {
|
111
|
-
color: #999999;
|
112
|
-
font-weight: bold;
|
113
|
-
} /* Name.Entity */
|
114
|
-
.highlight .ne {
|
115
|
-
color: #d2413a;
|
116
|
-
font-weight: bold;
|
117
|
-
} /* Name.Exception */
|
118
|
-
.highlight .nf {
|
119
|
-
color: #0000ff;
|
120
|
-
} /* Name.Function */
|
121
|
-
.highlight .nl {
|
122
|
-
color: #a0a000;
|
123
|
-
} /* Name.Label */
|
124
|
-
.highlight .nn {
|
125
|
-
color: #0000ff;
|
126
|
-
font-weight: bold;
|
127
|
-
} /* Name.Namespace */
|
128
|
-
.highlight .nt {
|
129
|
-
color: #008000;
|
130
|
-
font-weight: bold;
|
131
|
-
} /* Name.Tag */
|
132
|
-
.highlight .nv {
|
133
|
-
color: #19177c;
|
134
|
-
} /* Name.Variable */
|
135
|
-
.highlight .ow {
|
136
|
-
color: #aa22ff;
|
137
|
-
font-weight: bold;
|
138
|
-
} /* Operator.Word */
|
139
|
-
.highlight .w {
|
140
|
-
color: #bbbbbb;
|
141
|
-
} /* Text.Whitespace */
|
142
|
-
.highlight .mf {
|
143
|
-
color: #666666;
|
144
|
-
} /* Literal.Number.Float */
|
145
|
-
.highlight .mh {
|
146
|
-
color: #666666;
|
147
|
-
} /* Literal.Number.Hex */
|
148
|
-
.highlight .mi {
|
149
|
-
color: #666666;
|
150
|
-
} /* Literal.Number.Integer */
|
151
|
-
.highlight .mo {
|
152
|
-
color: #666666;
|
153
|
-
} /* Literal.Number.Oct */
|
154
|
-
.highlight .sb {
|
155
|
-
color: #ba2121;
|
156
|
-
} /* Literal.String.Backtick */
|
157
|
-
.highlight .sc {
|
158
|
-
color: #ba2121;
|
159
|
-
} /* Literal.String.Char */
|
160
|
-
.highlight .sd {
|
161
|
-
color: #ba2121;
|
162
|
-
font-style: italic;
|
163
|
-
} /* Literal.String.Doc */
|
164
|
-
.highlight .s2 {
|
165
|
-
color: #ba2121;
|
166
|
-
} /* Literal.String.Double */
|
167
|
-
.highlight .se {
|
168
|
-
color: #bb6622;
|
169
|
-
font-weight: bold;
|
170
|
-
} /* Literal.String.Escape */
|
171
|
-
.highlight .sh {
|
172
|
-
color: #ba2121;
|
173
|
-
} /* Literal.String.Heredoc */
|
174
|
-
.highlight .si {
|
175
|
-
color: #bb6688;
|
176
|
-
font-weight: bold;
|
177
|
-
} /* Literal.String.Interpol */
|
178
|
-
.highlight .sx {
|
179
|
-
color: #008000;
|
180
|
-
} /* Literal.String.Other */
|
181
|
-
.highlight .sr {
|
182
|
-
color: #bb6688;
|
183
|
-
} /* Literal.String.Regex */
|
184
|
-
.highlight .s1 {
|
185
|
-
color: #ba2121;
|
186
|
-
} /* Literal.String.Single */
|
187
|
-
.highlight .ss {
|
188
|
-
color: #19177c;
|
189
|
-
} /* Literal.String.Symbol */
|
190
|
-
.highlight .bp {
|
191
|
-
color: #008000;
|
192
|
-
} /* Name.Builtin.Pseudo */
|
193
|
-
.highlight .vc {
|
194
|
-
color: #19177c;
|
195
|
-
} /* Name.Variable.Class */
|
196
|
-
.highlight .vg {
|
197
|
-
color: #19177c;
|
198
|
-
} /* Name.Variable.Global */
|
199
|
-
.highlight .vi {
|
200
|
-
color: #19177c;
|
201
|
-
} /* Name.Variable.Instance */
|
202
|
-
.highlight .il {
|
203
|
-
color: #666666;
|
204
|
-
} /* Literal.Number.Integer.Long */
|
205
|
-
|
206
|
-
@media (prefers-color-scheme: dark) {
|
207
|
-
.highlight pre {
|
208
|
-
background-color: #222222;
|
209
|
-
}
|
210
|
-
.highlight .hll {
|
211
|
-
background-color: #222222;
|
212
|
-
}
|
213
|
-
.highlight .c {
|
214
|
-
color: #000080;
|
215
|
-
} /* Comment */
|
216
|
-
.highlight .err {
|
217
|
-
color: #cccccc;
|
218
|
-
border: 1px solid #ff0000;
|
219
|
-
} /* Error */
|
220
|
-
.highlight .g {
|
221
|
-
color: #cccccc;
|
222
|
-
} /* Generic */
|
223
|
-
.highlight .k {
|
224
|
-
color: #cdcd00;
|
225
|
-
} /* Keyword */
|
226
|
-
.highlight .l {
|
227
|
-
color: #cccccc;
|
228
|
-
} /* Literal */
|
229
|
-
.highlight .n {
|
230
|
-
color: #cccccc;
|
231
|
-
} /* Name */
|
232
|
-
.highlight .o {
|
233
|
-
color: #3399cc;
|
234
|
-
} /* Operator */
|
235
|
-
.highlight .x {
|
236
|
-
color: #cccccc;
|
237
|
-
} /* Other */
|
238
|
-
.highlight .p {
|
239
|
-
color: #cccccc;
|
240
|
-
} /* Punctuation */
|
241
|
-
.highlight .cm {
|
242
|
-
color: #000080;
|
243
|
-
} /* Comment.Multiline */
|
244
|
-
.highlight .cp {
|
245
|
-
color: #000080;
|
246
|
-
} /* Comment.Preproc */
|
247
|
-
.highlight .c1 {
|
248
|
-
color: #000080;
|
249
|
-
} /* Comment.Single */
|
250
|
-
.highlight .cs {
|
251
|
-
color: #cd0000;
|
252
|
-
font-weight: bold;
|
253
|
-
} /* Comment.Special */
|
254
|
-
.highlight .gd {
|
255
|
-
color: #cd0000;
|
256
|
-
} /* Generic.Deleted */
|
257
|
-
.highlight .ge {
|
258
|
-
color: #cccccc;
|
259
|
-
font-style: italic;
|
260
|
-
} /* Generic.Emph */
|
261
|
-
.highlight .gr {
|
262
|
-
color: #ff0000;
|
263
|
-
} /* Generic.Error */
|
264
|
-
.highlight .gh {
|
265
|
-
color: #000080;
|
266
|
-
font-weight: bold;
|
267
|
-
} /* Generic.Heading */
|
268
|
-
.highlight .gi {
|
269
|
-
color: #00cd00;
|
270
|
-
} /* Generic.Inserted */
|
271
|
-
.highlight .go {
|
272
|
-
color: #808080;
|
273
|
-
} /* Generic.Output */
|
274
|
-
.highlight .gp {
|
275
|
-
color: #000080;
|
276
|
-
font-weight: bold;
|
277
|
-
} /* Generic.Prompt */
|
278
|
-
.highlight .gs {
|
279
|
-
color: #cccccc;
|
280
|
-
font-weight: bold;
|
281
|
-
} /* Generic.Strong */
|
282
|
-
.highlight .gu {
|
283
|
-
color: #800080;
|
284
|
-
font-weight: bold;
|
285
|
-
} /* Generic.Subheading */
|
286
|
-
.highlight .gt {
|
287
|
-
color: #0040d0;
|
288
|
-
} /* Generic.Traceback */
|
289
|
-
.highlight .kc {
|
290
|
-
color: #cdcd00;
|
291
|
-
} /* Keyword.Constant */
|
292
|
-
.highlight .kd {
|
293
|
-
color: #00cd00;
|
294
|
-
} /* Keyword.Declaration */
|
295
|
-
.highlight .kn {
|
296
|
-
color: #cd00cd;
|
297
|
-
} /* Keyword.Namespace */
|
298
|
-
.highlight .kp {
|
299
|
-
color: #cdcd00;
|
300
|
-
} /* Keyword.Pseudo */
|
301
|
-
.highlight .kr {
|
302
|
-
color: #cdcd00;
|
303
|
-
} /* Keyword.Reserved */
|
304
|
-
.highlight .kt {
|
305
|
-
color: #00cd00;
|
306
|
-
} /* Keyword.Type */
|
307
|
-
.highlight .ld {
|
308
|
-
color: #cccccc;
|
309
|
-
} /* Literal.Date */
|
310
|
-
.highlight .m {
|
311
|
-
color: #cd00cd;
|
312
|
-
} /* Literal.Number */
|
313
|
-
.highlight .s {
|
314
|
-
color: #cd0000;
|
315
|
-
} /* Literal.String */
|
316
|
-
.highlight .na {
|
317
|
-
color: #cccccc;
|
318
|
-
} /* Name.Attribute */
|
319
|
-
.highlight .nb {
|
320
|
-
color: #cd00cd;
|
321
|
-
} /* Name.Builtin */
|
322
|
-
.highlight .nc {
|
323
|
-
color: #00cdcd;
|
324
|
-
} /* Name.Class */
|
325
|
-
.highlight .no {
|
326
|
-
color: #cccccc;
|
327
|
-
} /* Name.Constant */
|
328
|
-
.highlight .nd {
|
329
|
-
color: #cccccc;
|
330
|
-
} /* Name.Decorator */
|
331
|
-
.highlight .ni {
|
332
|
-
color: #cccccc;
|
333
|
-
} /* Name.Entity */
|
334
|
-
.highlight .ne {
|
335
|
-
color: #666699;
|
336
|
-
font-weight: bold;
|
337
|
-
} /* Name.Exception */
|
338
|
-
.highlight .nf {
|
339
|
-
color: #cccccc;
|
340
|
-
} /* Name.Function */
|
341
|
-
.highlight .nl {
|
342
|
-
color: #cccccc;
|
343
|
-
} /* Name.Label */
|
344
|
-
.highlight .nn {
|
345
|
-
color: #cccccc;
|
346
|
-
} /* Name.Namespace */
|
347
|
-
.highlight .nx {
|
348
|
-
color: #cccccc;
|
349
|
-
} /* Name.Other */
|
350
|
-
.highlight .py {
|
351
|
-
color: #cccccc;
|
352
|
-
} /* Name.Property */
|
353
|
-
.highlight .nt {
|
354
|
-
color: #cccccc;
|
355
|
-
} /* Name.Tag */
|
356
|
-
.highlight .nv {
|
357
|
-
color: #00cdcd;
|
358
|
-
} /* Name.Variable */
|
359
|
-
.highlight .ow {
|
360
|
-
color: #cdcd00;
|
361
|
-
} /* Operator.Word */
|
362
|
-
.highlight .w {
|
363
|
-
color: #cccccc;
|
364
|
-
} /* Text.Whitespace */
|
365
|
-
.highlight .mf {
|
366
|
-
color: #cd00cd;
|
367
|
-
} /* Literal.Number.Float */
|
368
|
-
.highlight .mh {
|
369
|
-
color: #cd00cd;
|
370
|
-
} /* Literal.Number.Hex */
|
371
|
-
.highlight .mi {
|
372
|
-
color: #cd00cd;
|
373
|
-
} /* Literal.Number.Integer */
|
374
|
-
.highlight .mo {
|
375
|
-
color: #cd00cd;
|
376
|
-
} /* Literal.Number.Oct */
|
377
|
-
.highlight .sb {
|
378
|
-
color: #cd0000;
|
379
|
-
} /* Literal.String.Backtick */
|
380
|
-
.highlight .sc {
|
381
|
-
color: #cd0000;
|
382
|
-
} /* Literal.String.Char */
|
383
|
-
.highlight .sd {
|
384
|
-
color: #cd0000;
|
385
|
-
} /* Literal.String.Doc */
|
386
|
-
.highlight .s2 {
|
387
|
-
color: #cd0000;
|
388
|
-
} /* Literal.String.Double */
|
389
|
-
.highlight .se {
|
390
|
-
color: #cd0000;
|
391
|
-
} /* Literal.String.Escape */
|
392
|
-
.highlight .sh {
|
393
|
-
color: #cd0000;
|
394
|
-
} /* Literal.String.Heredoc */
|
395
|
-
.highlight .si {
|
396
|
-
color: #cd0000;
|
397
|
-
} /* Literal.String.Interpol */
|
398
|
-
.highlight .sx {
|
399
|
-
color: #cd0000;
|
400
|
-
} /* Literal.String.Other */
|
401
|
-
.highlight .sr {
|
402
|
-
color: #cd0000;
|
403
|
-
} /* Literal.String.Regex */
|
404
|
-
.highlight .s1 {
|
405
|
-
color: #cd0000;
|
406
|
-
} /* Literal.String.Single */
|
407
|
-
.highlight .ss {
|
408
|
-
color: #cd0000;
|
409
|
-
} /* Literal.String.Symbol */
|
410
|
-
.highlight .bp {
|
411
|
-
color: #cd00cd;
|
412
|
-
} /* Name.Builtin.Pseudo */
|
413
|
-
.highlight .vc {
|
414
|
-
color: #00cdcd;
|
415
|
-
} /* Name.Variable.Class */
|
416
|
-
.highlight .vg {
|
417
|
-
color: #00cdcd;
|
418
|
-
} /* Name.Variable.Global */
|
419
|
-
.highlight .vi {
|
420
|
-
color: #00cdcd;
|
421
|
-
} /* Name.Variable.Instance */
|
422
|
-
.highlight .il {
|
423
|
-
color: #cd00cd;
|
424
|
-
} /* Literal.Number.Integer.Long */
|
425
|
-
}
|
1
|
+
.highlight .hll {
|
2
|
+
background-color: #ffffcc;
|
3
|
+
}
|
4
|
+
.highlight .c {
|
5
|
+
color: #408080;
|
6
|
+
font-style: italic;
|
7
|
+
} /* Comment */
|
8
|
+
.highlight .err {
|
9
|
+
border: 1px solid #ff0000;
|
10
|
+
} /* Error */
|
11
|
+
.highlight .k {
|
12
|
+
color: #008000;
|
13
|
+
font-weight: bold;
|
14
|
+
} /* Keyword */
|
15
|
+
.highlight .o {
|
16
|
+
color: #666666;
|
17
|
+
} /* Operator */
|
18
|
+
.highlight .cm {
|
19
|
+
color: #408080;
|
20
|
+
font-style: italic;
|
21
|
+
} /* Comment.Multiline */
|
22
|
+
.highlight .cp {
|
23
|
+
color: #bc7a00;
|
24
|
+
} /* Comment.Preproc */
|
25
|
+
.highlight .c1 {
|
26
|
+
color: #408080;
|
27
|
+
font-style: italic;
|
28
|
+
} /* Comment.Single */
|
29
|
+
.highlight .cs {
|
30
|
+
color: #408080;
|
31
|
+
font-style: italic;
|
32
|
+
} /* Comment.Special */
|
33
|
+
.highlight .gd {
|
34
|
+
color: #a00000;
|
35
|
+
} /* Generic.Deleted */
|
36
|
+
.highlight .ge {
|
37
|
+
font-style: italic;
|
38
|
+
} /* Generic.Emph */
|
39
|
+
.highlight .gr {
|
40
|
+
color: #ff0000;
|
41
|
+
} /* Generic.Error */
|
42
|
+
.highlight .gh {
|
43
|
+
color: #000080;
|
44
|
+
font-weight: bold;
|
45
|
+
} /* Generic.Heading */
|
46
|
+
.highlight .gi {
|
47
|
+
color: #00a000;
|
48
|
+
} /* Generic.Inserted */
|
49
|
+
.highlight .go {
|
50
|
+
color: #808080;
|
51
|
+
} /* Generic.Output */
|
52
|
+
.highlight .gp {
|
53
|
+
color: #000080;
|
54
|
+
font-weight: bold;
|
55
|
+
} /* Generic.Prompt */
|
56
|
+
.highlight .gs {
|
57
|
+
font-weight: bold;
|
58
|
+
} /* Generic.Strong */
|
59
|
+
.highlight .gu {
|
60
|
+
color: #800080;
|
61
|
+
font-weight: bold;
|
62
|
+
} /* Generic.Subheading */
|
63
|
+
.highlight .gt {
|
64
|
+
color: #0040d0;
|
65
|
+
} /* Generic.Traceback */
|
66
|
+
.highlight .kc {
|
67
|
+
color: #008000;
|
68
|
+
font-weight: bold;
|
69
|
+
} /* Keyword.Constant */
|
70
|
+
.highlight .kd {
|
71
|
+
color: #008000;
|
72
|
+
font-weight: bold;
|
73
|
+
} /* Keyword.Declaration */
|
74
|
+
.highlight .kn {
|
75
|
+
color: #008000;
|
76
|
+
font-weight: bold;
|
77
|
+
} /* Keyword.Namespace */
|
78
|
+
.highlight .kp {
|
79
|
+
color: #008000;
|
80
|
+
} /* Keyword.Pseudo */
|
81
|
+
.highlight .kr {
|
82
|
+
color: #008000;
|
83
|
+
font-weight: bold;
|
84
|
+
} /* Keyword.Reserved */
|
85
|
+
.highlight .kt {
|
86
|
+
color: #b00040;
|
87
|
+
} /* Keyword.Type */
|
88
|
+
.highlight .m {
|
89
|
+
color: #666666;
|
90
|
+
} /* Literal.Number */
|
91
|
+
.highlight .s {
|
92
|
+
color: #ba2121;
|
93
|
+
} /* Literal.String */
|
94
|
+
.highlight .na {
|
95
|
+
color: #7d9029;
|
96
|
+
} /* Name.Attribute */
|
97
|
+
.highlight .nb {
|
98
|
+
color: #008000;
|
99
|
+
} /* Name.Builtin */
|
100
|
+
.highlight .nc {
|
101
|
+
color: #0000ff;
|
102
|
+
font-weight: bold;
|
103
|
+
} /* Name.Class */
|
104
|
+
.highlight .no {
|
105
|
+
color: #880000;
|
106
|
+
} /* Name.Constant */
|
107
|
+
.highlight .nd {
|
108
|
+
color: #aa22ff;
|
109
|
+
} /* Name.Decorator */
|
110
|
+
.highlight .ni {
|
111
|
+
color: #999999;
|
112
|
+
font-weight: bold;
|
113
|
+
} /* Name.Entity */
|
114
|
+
.highlight .ne {
|
115
|
+
color: #d2413a;
|
116
|
+
font-weight: bold;
|
117
|
+
} /* Name.Exception */
|
118
|
+
.highlight .nf {
|
119
|
+
color: #0000ff;
|
120
|
+
} /* Name.Function */
|
121
|
+
.highlight .nl {
|
122
|
+
color: #a0a000;
|
123
|
+
} /* Name.Label */
|
124
|
+
.highlight .nn {
|
125
|
+
color: #0000ff;
|
126
|
+
font-weight: bold;
|
127
|
+
} /* Name.Namespace */
|
128
|
+
.highlight .nt {
|
129
|
+
color: #008000;
|
130
|
+
font-weight: bold;
|
131
|
+
} /* Name.Tag */
|
132
|
+
.highlight .nv {
|
133
|
+
color: #19177c;
|
134
|
+
} /* Name.Variable */
|
135
|
+
.highlight .ow {
|
136
|
+
color: #aa22ff;
|
137
|
+
font-weight: bold;
|
138
|
+
} /* Operator.Word */
|
139
|
+
.highlight .w {
|
140
|
+
color: #bbbbbb;
|
141
|
+
} /* Text.Whitespace */
|
142
|
+
.highlight .mf {
|
143
|
+
color: #666666;
|
144
|
+
} /* Literal.Number.Float */
|
145
|
+
.highlight .mh {
|
146
|
+
color: #666666;
|
147
|
+
} /* Literal.Number.Hex */
|
148
|
+
.highlight .mi {
|
149
|
+
color: #666666;
|
150
|
+
} /* Literal.Number.Integer */
|
151
|
+
.highlight .mo {
|
152
|
+
color: #666666;
|
153
|
+
} /* Literal.Number.Oct */
|
154
|
+
.highlight .sb {
|
155
|
+
color: #ba2121;
|
156
|
+
} /* Literal.String.Backtick */
|
157
|
+
.highlight .sc {
|
158
|
+
color: #ba2121;
|
159
|
+
} /* Literal.String.Char */
|
160
|
+
.highlight .sd {
|
161
|
+
color: #ba2121;
|
162
|
+
font-style: italic;
|
163
|
+
} /* Literal.String.Doc */
|
164
|
+
.highlight .s2 {
|
165
|
+
color: #ba2121;
|
166
|
+
} /* Literal.String.Double */
|
167
|
+
.highlight .se {
|
168
|
+
color: #bb6622;
|
169
|
+
font-weight: bold;
|
170
|
+
} /* Literal.String.Escape */
|
171
|
+
.highlight .sh {
|
172
|
+
color: #ba2121;
|
173
|
+
} /* Literal.String.Heredoc */
|
174
|
+
.highlight .si {
|
175
|
+
color: #bb6688;
|
176
|
+
font-weight: bold;
|
177
|
+
} /* Literal.String.Interpol */
|
178
|
+
.highlight .sx {
|
179
|
+
color: #008000;
|
180
|
+
} /* Literal.String.Other */
|
181
|
+
.highlight .sr {
|
182
|
+
color: #bb6688;
|
183
|
+
} /* Literal.String.Regex */
|
184
|
+
.highlight .s1 {
|
185
|
+
color: #ba2121;
|
186
|
+
} /* Literal.String.Single */
|
187
|
+
.highlight .ss {
|
188
|
+
color: #19177c;
|
189
|
+
} /* Literal.String.Symbol */
|
190
|
+
.highlight .bp {
|
191
|
+
color: #008000;
|
192
|
+
} /* Name.Builtin.Pseudo */
|
193
|
+
.highlight .vc {
|
194
|
+
color: #19177c;
|
195
|
+
} /* Name.Variable.Class */
|
196
|
+
.highlight .vg {
|
197
|
+
color: #19177c;
|
198
|
+
} /* Name.Variable.Global */
|
199
|
+
.highlight .vi {
|
200
|
+
color: #19177c;
|
201
|
+
} /* Name.Variable.Instance */
|
202
|
+
.highlight .il {
|
203
|
+
color: #666666;
|
204
|
+
} /* Literal.Number.Integer.Long */
|
205
|
+
|
206
|
+
@media (prefers-color-scheme: dark) {
|
207
|
+
.highlight pre {
|
208
|
+
background-color: #222222;
|
209
|
+
}
|
210
|
+
.highlight .hll {
|
211
|
+
background-color: #222222;
|
212
|
+
}
|
213
|
+
.highlight .c {
|
214
|
+
color: #000080;
|
215
|
+
} /* Comment */
|
216
|
+
.highlight .err {
|
217
|
+
color: #cccccc;
|
218
|
+
border: 1px solid #ff0000;
|
219
|
+
} /* Error */
|
220
|
+
.highlight .g {
|
221
|
+
color: #cccccc;
|
222
|
+
} /* Generic */
|
223
|
+
.highlight .k {
|
224
|
+
color: #cdcd00;
|
225
|
+
} /* Keyword */
|
226
|
+
.highlight .l {
|
227
|
+
color: #cccccc;
|
228
|
+
} /* Literal */
|
229
|
+
.highlight .n {
|
230
|
+
color: #cccccc;
|
231
|
+
} /* Name */
|
232
|
+
.highlight .o {
|
233
|
+
color: #3399cc;
|
234
|
+
} /* Operator */
|
235
|
+
.highlight .x {
|
236
|
+
color: #cccccc;
|
237
|
+
} /* Other */
|
238
|
+
.highlight .p {
|
239
|
+
color: #cccccc;
|
240
|
+
} /* Punctuation */
|
241
|
+
.highlight .cm {
|
242
|
+
color: #000080;
|
243
|
+
} /* Comment.Multiline */
|
244
|
+
.highlight .cp {
|
245
|
+
color: #000080;
|
246
|
+
} /* Comment.Preproc */
|
247
|
+
.highlight .c1 {
|
248
|
+
color: #000080;
|
249
|
+
} /* Comment.Single */
|
250
|
+
.highlight .cs {
|
251
|
+
color: #cd0000;
|
252
|
+
font-weight: bold;
|
253
|
+
} /* Comment.Special */
|
254
|
+
.highlight .gd {
|
255
|
+
color: #cd0000;
|
256
|
+
} /* Generic.Deleted */
|
257
|
+
.highlight .ge {
|
258
|
+
color: #cccccc;
|
259
|
+
font-style: italic;
|
260
|
+
} /* Generic.Emph */
|
261
|
+
.highlight .gr {
|
262
|
+
color: #ff0000;
|
263
|
+
} /* Generic.Error */
|
264
|
+
.highlight .gh {
|
265
|
+
color: #000080;
|
266
|
+
font-weight: bold;
|
267
|
+
} /* Generic.Heading */
|
268
|
+
.highlight .gi {
|
269
|
+
color: #00cd00;
|
270
|
+
} /* Generic.Inserted */
|
271
|
+
.highlight .go {
|
272
|
+
color: #808080;
|
273
|
+
} /* Generic.Output */
|
274
|
+
.highlight .gp {
|
275
|
+
color: #000080;
|
276
|
+
font-weight: bold;
|
277
|
+
} /* Generic.Prompt */
|
278
|
+
.highlight .gs {
|
279
|
+
color: #cccccc;
|
280
|
+
font-weight: bold;
|
281
|
+
} /* Generic.Strong */
|
282
|
+
.highlight .gu {
|
283
|
+
color: #800080;
|
284
|
+
font-weight: bold;
|
285
|
+
} /* Generic.Subheading */
|
286
|
+
.highlight .gt {
|
287
|
+
color: #0040d0;
|
288
|
+
} /* Generic.Traceback */
|
289
|
+
.highlight .kc {
|
290
|
+
color: #cdcd00;
|
291
|
+
} /* Keyword.Constant */
|
292
|
+
.highlight .kd {
|
293
|
+
color: #00cd00;
|
294
|
+
} /* Keyword.Declaration */
|
295
|
+
.highlight .kn {
|
296
|
+
color: #cd00cd;
|
297
|
+
} /* Keyword.Namespace */
|
298
|
+
.highlight .kp {
|
299
|
+
color: #cdcd00;
|
300
|
+
} /* Keyword.Pseudo */
|
301
|
+
.highlight .kr {
|
302
|
+
color: #cdcd00;
|
303
|
+
} /* Keyword.Reserved */
|
304
|
+
.highlight .kt {
|
305
|
+
color: #00cd00;
|
306
|
+
} /* Keyword.Type */
|
307
|
+
.highlight .ld {
|
308
|
+
color: #cccccc;
|
309
|
+
} /* Literal.Date */
|
310
|
+
.highlight .m {
|
311
|
+
color: #cd00cd;
|
312
|
+
} /* Literal.Number */
|
313
|
+
.highlight .s {
|
314
|
+
color: #cd0000;
|
315
|
+
} /* Literal.String */
|
316
|
+
.highlight .na {
|
317
|
+
color: #cccccc;
|
318
|
+
} /* Name.Attribute */
|
319
|
+
.highlight .nb {
|
320
|
+
color: #cd00cd;
|
321
|
+
} /* Name.Builtin */
|
322
|
+
.highlight .nc {
|
323
|
+
color: #00cdcd;
|
324
|
+
} /* Name.Class */
|
325
|
+
.highlight .no {
|
326
|
+
color: #cccccc;
|
327
|
+
} /* Name.Constant */
|
328
|
+
.highlight .nd {
|
329
|
+
color: #cccccc;
|
330
|
+
} /* Name.Decorator */
|
331
|
+
.highlight .ni {
|
332
|
+
color: #cccccc;
|
333
|
+
} /* Name.Entity */
|
334
|
+
.highlight .ne {
|
335
|
+
color: #666699;
|
336
|
+
font-weight: bold;
|
337
|
+
} /* Name.Exception */
|
338
|
+
.highlight .nf {
|
339
|
+
color: #cccccc;
|
340
|
+
} /* Name.Function */
|
341
|
+
.highlight .nl {
|
342
|
+
color: #cccccc;
|
343
|
+
} /* Name.Label */
|
344
|
+
.highlight .nn {
|
345
|
+
color: #cccccc;
|
346
|
+
} /* Name.Namespace */
|
347
|
+
.highlight .nx {
|
348
|
+
color: #cccccc;
|
349
|
+
} /* Name.Other */
|
350
|
+
.highlight .py {
|
351
|
+
color: #cccccc;
|
352
|
+
} /* Name.Property */
|
353
|
+
.highlight .nt {
|
354
|
+
color: #cccccc;
|
355
|
+
} /* Name.Tag */
|
356
|
+
.highlight .nv {
|
357
|
+
color: #00cdcd;
|
358
|
+
} /* Name.Variable */
|
359
|
+
.highlight .ow {
|
360
|
+
color: #cdcd00;
|
361
|
+
} /* Operator.Word */
|
362
|
+
.highlight .w {
|
363
|
+
color: #cccccc;
|
364
|
+
} /* Text.Whitespace */
|
365
|
+
.highlight .mf {
|
366
|
+
color: #cd00cd;
|
367
|
+
} /* Literal.Number.Float */
|
368
|
+
.highlight .mh {
|
369
|
+
color: #cd00cd;
|
370
|
+
} /* Literal.Number.Hex */
|
371
|
+
.highlight .mi {
|
372
|
+
color: #cd00cd;
|
373
|
+
} /* Literal.Number.Integer */
|
374
|
+
.highlight .mo {
|
375
|
+
color: #cd00cd;
|
376
|
+
} /* Literal.Number.Oct */
|
377
|
+
.highlight .sb {
|
378
|
+
color: #cd0000;
|
379
|
+
} /* Literal.String.Backtick */
|
380
|
+
.highlight .sc {
|
381
|
+
color: #cd0000;
|
382
|
+
} /* Literal.String.Char */
|
383
|
+
.highlight .sd {
|
384
|
+
color: #cd0000;
|
385
|
+
} /* Literal.String.Doc */
|
386
|
+
.highlight .s2 {
|
387
|
+
color: #cd0000;
|
388
|
+
} /* Literal.String.Double */
|
389
|
+
.highlight .se {
|
390
|
+
color: #cd0000;
|
391
|
+
} /* Literal.String.Escape */
|
392
|
+
.highlight .sh {
|
393
|
+
color: #cd0000;
|
394
|
+
} /* Literal.String.Heredoc */
|
395
|
+
.highlight .si {
|
396
|
+
color: #cd0000;
|
397
|
+
} /* Literal.String.Interpol */
|
398
|
+
.highlight .sx {
|
399
|
+
color: #cd0000;
|
400
|
+
} /* Literal.String.Other */
|
401
|
+
.highlight .sr {
|
402
|
+
color: #cd0000;
|
403
|
+
} /* Literal.String.Regex */
|
404
|
+
.highlight .s1 {
|
405
|
+
color: #cd0000;
|
406
|
+
} /* Literal.String.Single */
|
407
|
+
.highlight .ss {
|
408
|
+
color: #cd0000;
|
409
|
+
} /* Literal.String.Symbol */
|
410
|
+
.highlight .bp {
|
411
|
+
color: #cd00cd;
|
412
|
+
} /* Name.Builtin.Pseudo */
|
413
|
+
.highlight .vc {
|
414
|
+
color: #00cdcd;
|
415
|
+
} /* Name.Variable.Class */
|
416
|
+
.highlight .vg {
|
417
|
+
color: #00cdcd;
|
418
|
+
} /* Name.Variable.Global */
|
419
|
+
.highlight .vi {
|
420
|
+
color: #00cdcd;
|
421
|
+
} /* Name.Variable.Instance */
|
422
|
+
.highlight .il {
|
423
|
+
color: #cd00cd;
|
424
|
+
} /* Literal.Number.Integer.Long */
|
425
|
+
}
|