@stylewx/theme 0.1.0

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.
@@ -0,0 +1,2369 @@
1
+ export const WEMD_THEMES = [
2
+ {
3
+ "name": "basic",
4
+ "description": "默认基础:WeMD 默认最佳实践:朴素黑字、清晰层级,适合通用内容。",
5
+ "tokens": {
6
+ "primaryColor": "#1e6bb8",
7
+ "textColor": "#000000",
8
+ "fontSize": "16px",
9
+ "lineHeight": 1.6,
10
+ "fontFamily": "Optima-Regular, Optima, PingFangSC-light, PingFangTC-light, 'PingFang SC', 'Microsoft YaHei', '微软雅黑', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif",
11
+ "spacing": {
12
+ "block": "16px"
13
+ }
14
+ },
15
+ "blocks": {
16
+ "h1": {
17
+ "margin-top": "30px",
18
+ "margin-bottom": "15px",
19
+ "padding": "0px",
20
+ "font-weight": "bold",
21
+ "color": "#000000",
22
+ "font-size": "24px"
23
+ },
24
+ "h2": {
25
+ "margin-top": "30px",
26
+ "margin-bottom": "15px",
27
+ "padding": "0px",
28
+ "font-weight": "bold",
29
+ "color": "#000000",
30
+ "font-size": "22px"
31
+ },
32
+ "h3": {
33
+ "margin-top": "30px",
34
+ "margin-bottom": "15px",
35
+ "padding": "0px",
36
+ "font-weight": "bold",
37
+ "color": "#000000",
38
+ "font-size": "20px"
39
+ },
40
+ "p": {
41
+ "font-size": "16px",
42
+ "margin": "0",
43
+ "line-height": "26px",
44
+ "color": "#000000"
45
+ },
46
+ "blockquote": {
47
+ "border": "none"
48
+ },
49
+ "ul": {
50
+ "margin-top": "8px",
51
+ "margin-bottom": "8px",
52
+ "padding-left": "25px",
53
+ "color": "#000000",
54
+ "list-style-type": "disc"
55
+ },
56
+ "ol": {
57
+ "margin-top": "8px",
58
+ "margin-bottom": "8px",
59
+ "padding-left": "25px",
60
+ "color": "#000000",
61
+ "list-style-type": "decimal"
62
+ },
63
+ "li": {
64
+ "line-height": "{{lineHeight}}",
65
+ "margin": "0 0 6px"
66
+ },
67
+ "code": {
68
+ "display": "block",
69
+ "font-family": "Operator Mono, Consolas, Monaco, Menlo, monospace",
70
+ "border-radius": "4px",
71
+ "font-size": "14px",
72
+ "white-space": "pre",
73
+ "min-width": "max-content",
74
+ "word-wrap": "break-word",
75
+ "padding": "2px 4px",
76
+ "margin": "0 2px",
77
+ "color": "#1e6bb8",
78
+ "background-color": "rgba(27,31,35,.05)",
79
+ "word-break": "break-all"
80
+ },
81
+ "pre": {
82
+ "margin-top": "10px",
83
+ "margin-bottom": "10px",
84
+ "overflow-x": "auto"
85
+ },
86
+ "img": {
87
+ "display": "block",
88
+ "margin": "0 auto",
89
+ "max-width": "100%"
90
+ },
91
+ "figcaption": {
92
+ "margin-top": "5px",
93
+ "text-align": "center",
94
+ "color": "#888",
95
+ "font-size": "14px"
96
+ },
97
+ "hr": {
98
+ "height": "1px",
99
+ "margin": "0",
100
+ "margin-top": "10px",
101
+ "margin-bottom": "10px",
102
+ "border": "none",
103
+ "border-top": "1px solid black"
104
+ },
105
+ "a": {
106
+ "text-decoration": "none",
107
+ "color": "#1e6bb8",
108
+ "word-wrap": "break-word",
109
+ "font-weight": "bold",
110
+ "border-bottom": "1px solid #1e6bb8"
111
+ },
112
+ "strong": {
113
+ "font-weight": "bold",
114
+ "color": "#000000"
115
+ }
116
+ }
117
+ },
118
+ {
119
+ "name": "code-github",
120
+ "description": "GitHub 代码:GitHub 风代码高亮基调,强调代码可读性。",
121
+ "tokens": {
122
+ "primaryColor": "#1e6bb8",
123
+ "textColor": "#333333",
124
+ "fontSize": "16px",
125
+ "lineHeight": 1.6,
126
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\", sans-serif",
127
+ "spacing": {
128
+ "block": "16px"
129
+ }
130
+ },
131
+ "blocks": {
132
+ "h1": {
133
+ "color": "{{primaryColor}}",
134
+ "font-size": "1.6em",
135
+ "font-weight": "600",
136
+ "line-height": "1.35",
137
+ "margin": "0 0 {{spacing.block}}",
138
+ "border-left": "5px solid #0b6bff",
139
+ "padding-left": "12px"
140
+ },
141
+ "h2": {
142
+ "color": "{{primaryColor}}",
143
+ "font-size": "1.35em",
144
+ "font-weight": "600",
145
+ "line-height": "1.4",
146
+ "margin": "0 0 {{spacing.block}}",
147
+ "border-left": "3px solid #0b6bff",
148
+ "padding-left": "10px"
149
+ },
150
+ "h3": {
151
+ "color": "{{primaryColor}}",
152
+ "font-size": "1.15em",
153
+ "font-weight": "600",
154
+ "line-height": "1.4",
155
+ "margin": "0 0 {{spacing.block}}"
156
+ },
157
+ "p": {
158
+ "color": "{{textColor}}",
159
+ "font-size": "{{fontSize}}",
160
+ "line-height": "{{lineHeight}}",
161
+ "margin": "0 0 {{spacing.block}}"
162
+ },
163
+ "blockquote": {
164
+ "border-left": "4px solid {{primaryColor}}",
165
+ "background-color": "#f5f9ff",
166
+ "color": "#3a4a5a",
167
+ "padding": "12px 16px",
168
+ "margin": "0 0 {{spacing.block}}",
169
+ "border-radius": "4px"
170
+ },
171
+ "ul": {
172
+ "padding-left": "1.4em",
173
+ "margin": "0 0 {{spacing.block}}",
174
+ "list-style": "disc"
175
+ },
176
+ "ol": {
177
+ "padding-left": "1.4em",
178
+ "margin": "0 0 {{spacing.block}}"
179
+ },
180
+ "li": {
181
+ "line-height": "{{lineHeight}}",
182
+ "margin": "0 0 6px"
183
+ },
184
+ "code": {
185
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
186
+ "font-size": "0.9em",
187
+ "background-color": "#f0f4ff",
188
+ "color": "#3b5b9a",
189
+ "padding": "2px 5px",
190
+ "border-radius": "4px"
191
+ },
192
+ "pre": {
193
+ "background-color": "#f0f4ff",
194
+ "padding": "16px",
195
+ "border-radius": "6px",
196
+ "overflow-x": "auto",
197
+ "font-size": "0.88em",
198
+ "line-height": "1.6",
199
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
200
+ "color": "#3b5b9a",
201
+ "margin": "0 0 {{spacing.block}}"
202
+ },
203
+ "img": {
204
+ "max-width": "100%",
205
+ "height": "auto",
206
+ "display": "block",
207
+ "border-radius": "4px",
208
+ "margin": "0 auto {{spacing.block}}"
209
+ },
210
+ "figcaption": {
211
+ "font-size": "0.85em",
212
+ "color": "#8a94a6",
213
+ "text-align": "center",
214
+ "margin-top": "8px"
215
+ },
216
+ "hr": {
217
+ "border": "none",
218
+ "border-top": "1px solid #e2e8f0",
219
+ "margin": "24px 0"
220
+ },
221
+ "a": {
222
+ "color": "{{primaryColor}}",
223
+ "text-decoration": "none",
224
+ "border-bottom": "1px solid {{primaryColor}}"
225
+ },
226
+ "strong": {
227
+ "color": "{{primaryColor}}",
228
+ "font-weight": "600"
229
+ }
230
+ }
231
+ },
232
+ {
233
+ "name": "code-github-dark",
234
+ "description": "GitHub 深色代码:深色代码块、暖色注释,适合技术示例。",
235
+ "tokens": {
236
+ "primaryColor": "#1e6bb8",
237
+ "textColor": "#333333",
238
+ "fontSize": "16px",
239
+ "lineHeight": 1.6,
240
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\", sans-serif",
241
+ "spacing": {
242
+ "block": "16px"
243
+ }
244
+ },
245
+ "blocks": {
246
+ "h1": {
247
+ "color": "{{primaryColor}}",
248
+ "font-size": "1.6em",
249
+ "font-weight": "600",
250
+ "line-height": "1.35",
251
+ "margin": "0 0 {{spacing.block}}",
252
+ "border-left": "5px solid #0b6bff",
253
+ "padding-left": "12px"
254
+ },
255
+ "h2": {
256
+ "color": "{{primaryColor}}",
257
+ "font-size": "1.35em",
258
+ "font-weight": "600",
259
+ "line-height": "1.4",
260
+ "margin": "0 0 {{spacing.block}}",
261
+ "border-left": "3px solid #0b6bff",
262
+ "padding-left": "10px"
263
+ },
264
+ "h3": {
265
+ "color": "{{primaryColor}}",
266
+ "font-size": "1.15em",
267
+ "font-weight": "600",
268
+ "line-height": "1.4",
269
+ "margin": "0 0 {{spacing.block}}"
270
+ },
271
+ "p": {
272
+ "color": "{{textColor}}",
273
+ "font-size": "{{fontSize}}",
274
+ "line-height": "{{lineHeight}}",
275
+ "margin": "0 0 {{spacing.block}}"
276
+ },
277
+ "blockquote": {
278
+ "border-left": "4px solid {{primaryColor}}",
279
+ "background-color": "#f5f9ff",
280
+ "color": "#3a4a5a",
281
+ "padding": "12px 16px",
282
+ "margin": "0 0 {{spacing.block}}",
283
+ "border-radius": "4px"
284
+ },
285
+ "ul": {
286
+ "padding-left": "1.4em",
287
+ "margin": "0 0 {{spacing.block}}",
288
+ "list-style": "disc"
289
+ },
290
+ "ol": {
291
+ "padding-left": "1.4em",
292
+ "margin": "0 0 {{spacing.block}}"
293
+ },
294
+ "li": {
295
+ "line-height": "{{lineHeight}}",
296
+ "margin": "0 0 6px"
297
+ },
298
+ "code": {
299
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
300
+ "font-size": "0.9em",
301
+ "background-color": "#f0f4ff",
302
+ "color": "#3b5b9a",
303
+ "padding": "2px 5px",
304
+ "border-radius": "4px"
305
+ },
306
+ "pre": {
307
+ "background-color": "#f0f4ff",
308
+ "padding": "16px",
309
+ "border-radius": "6px",
310
+ "overflow-x": "auto",
311
+ "font-size": "0.88em",
312
+ "line-height": "1.6",
313
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
314
+ "color": "#3b5b9a",
315
+ "margin": "0 0 {{spacing.block}}"
316
+ },
317
+ "img": {
318
+ "max-width": "100%",
319
+ "height": "auto",
320
+ "display": "block",
321
+ "border-radius": "4px",
322
+ "margin": "0 auto {{spacing.block}}"
323
+ },
324
+ "figcaption": {
325
+ "font-size": "0.85em",
326
+ "color": "#8a94a6",
327
+ "text-align": "center",
328
+ "margin-top": "8px"
329
+ },
330
+ "hr": {
331
+ "border": "none",
332
+ "border-top": "1px solid #e2e8f0",
333
+ "margin": "24px 0"
334
+ },
335
+ "a": {
336
+ "color": "{{primaryColor}}",
337
+ "text-decoration": "none",
338
+ "border-bottom": "1px solid {{primaryColor}}"
339
+ },
340
+ "strong": {
341
+ "color": "{{primaryColor}}",
342
+ "font-weight": "600"
343
+ }
344
+ }
345
+ },
346
+ {
347
+ "name": "custom-default",
348
+ "description": "翡翠刊读:深松墨标题 + 翡翠锚点,编辑节奏清晰。",
349
+ "tokens": {
350
+ "primaryColor": "#047857",
351
+ "textColor": "#242a26",
352
+ "fontSize": "16px",
353
+ "lineHeight": 1.8,
354
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\", sans-serif",
355
+ "spacing": {
356
+ "block": "16px"
357
+ }
358
+ },
359
+ "blocks": {
360
+ "h1": {
361
+ "font-size": "30px",
362
+ "font-weight": "800",
363
+ "color": "#12241c",
364
+ "text-align": "left",
365
+ "margin": "10px 0 28px",
366
+ "padding-top": "18px",
367
+ "border-top": "3px solid #047857",
368
+ "line-height": "1.35",
369
+ "letter-spacing": "-0.3px"
370
+ },
371
+ "h2": {
372
+ "font-size": "22px",
373
+ "font-weight": "700",
374
+ "color": "#134034",
375
+ "margin": "42px 0 16px",
376
+ "padding-bottom": "10px",
377
+ "border-bottom": "2px solid #cfe4d9",
378
+ "line-height": "1.45",
379
+ "letter-spacing": "0.2px"
380
+ },
381
+ "h3": {
382
+ "font-size": "18px",
383
+ "font-weight": "600",
384
+ "color": "#134034",
385
+ "margin": "30px 0 12px",
386
+ "padding-left": "12px",
387
+ "border-left": "3px solid #047857",
388
+ "line-height": "1.5",
389
+ "letter-spacing": "0.2px"
390
+ },
391
+ "p": {
392
+ "margin": "16px 0",
393
+ "font-size": "16px",
394
+ "color": "#242a26",
395
+ "line-height": "1.8",
396
+ "letter-spacing": "0.4px"
397
+ },
398
+ "blockquote": {
399
+ "border-left": "4px solid {{primaryColor}}",
400
+ "background-color": "#f5f9ff",
401
+ "color": "#3a4a5a",
402
+ "padding": "12px 16px",
403
+ "margin": "0 0 {{spacing.block}}",
404
+ "border-radius": "4px"
405
+ },
406
+ "ul": {
407
+ "padding-left": "24px",
408
+ "list-style-type": "disc",
409
+ "color": "#242a26"
410
+ },
411
+ "ol": {
412
+ "padding-left": "24px",
413
+ "list-style-type": "decimal",
414
+ "color": "#242a26"
415
+ },
416
+ "li": {
417
+ "line-height": "{{lineHeight}}",
418
+ "margin": "0 0 6px"
419
+ },
420
+ "code": {
421
+ "background": "#f7f9f8",
422
+ "padding": "18px",
423
+ "border-radius": "8px",
424
+ "color": "#334155",
425
+ "font-family": "\"SF Mono\", Monaco, \"Cascadia Code\", \"Roboto Mono\", Consolas, monospace",
426
+ "font-size": "13.5px",
427
+ "margin": "0 2px",
428
+ "border": "1px solid #e4e9e6",
429
+ "display": "block",
430
+ "overflow-x": "auto",
431
+ "line-height": "1.7"
432
+ },
433
+ "pre": {
434
+ "background-color": "#f0f4ff",
435
+ "padding": "16px",
436
+ "border-radius": "6px",
437
+ "overflow-x": "auto",
438
+ "font-size": "0.88em",
439
+ "line-height": "1.6",
440
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
441
+ "color": "#3b5b9a",
442
+ "margin": "0 0 {{spacing.block}}"
443
+ },
444
+ "img": {
445
+ "display": "block",
446
+ "margin": "24px auto",
447
+ "max-width": "100%",
448
+ "border-radius": "6px"
449
+ },
450
+ "figcaption": {
451
+ "text-align": "center",
452
+ "font-size": "14px",
453
+ "color": "#606b64",
454
+ "margin-top": "10px",
455
+ "letter-spacing": "0.2px"
456
+ },
457
+ "hr": {
458
+ "border": "none",
459
+ "height": "2px",
460
+ "width": "48px",
461
+ "background": "#047857",
462
+ "margin": "34px auto"
463
+ },
464
+ "a": {
465
+ "color": "#047857",
466
+ "text-decoration": "none",
467
+ "border-bottom": "1px solid rgba(4, 120, 87, 0.4)",
468
+ "font-weight": "500"
469
+ },
470
+ "strong": {
471
+ "font-weight": "700",
472
+ "color": "#12241c",
473
+ "letter-spacing": "0.2px"
474
+ }
475
+ }
476
+ },
477
+ {
478
+ "name": "academic-paper",
479
+ "description": "学术论文:克制黑白、注释清晰,适合论文导读与研究。",
480
+ "tokens": {
481
+ "primaryColor": "#000080",
482
+ "textColor": "#000",
483
+ "fontSize": "16px",
484
+ "lineHeight": 1.6,
485
+ "fontFamily": "\"Times New Roman\", \"Songti SC\", \"SimSun\", serif",
486
+ "spacing": {
487
+ "block": "16px"
488
+ }
489
+ },
490
+ "blocks": {
491
+ "h1": {
492
+ "margin": "40px 0 30px",
493
+ "text-align": "center",
494
+ "line-height": "1.4"
495
+ },
496
+ "h2": {
497
+ "margin": "30px 0 15px",
498
+ "text-align": "left",
499
+ "border-bottom": "2px solid #000",
500
+ "padding-bottom": "8px"
501
+ },
502
+ "h3": {
503
+ "margin": "20px 0 10px"
504
+ },
505
+ "p": {
506
+ "margin": "16px 0",
507
+ "line-height": "1.7",
508
+ "text-align": "justify",
509
+ "text-indent": "0",
510
+ "color": "#1a1a1a",
511
+ "font-size": "16px"
512
+ },
513
+ "blockquote": {
514
+ "border-left": "4px solid {{primaryColor}}",
515
+ "background-color": "#f5f9ff",
516
+ "color": "#3a4a5a",
517
+ "padding": "12px 16px",
518
+ "margin": "0 0 {{spacing.block}}",
519
+ "border-radius": "4px"
520
+ },
521
+ "ul": {
522
+ "list-style": "disc",
523
+ "padding-left": "20px",
524
+ "margin": "16px 0"
525
+ },
526
+ "ol": {
527
+ "list-style": "decimal",
528
+ "padding-left": "20px",
529
+ "margin": "16px 0"
530
+ },
531
+ "li": {
532
+ "line-height": "{{lineHeight}}",
533
+ "margin": "0 0 6px"
534
+ },
535
+ "code": {
536
+ "color": "#000",
537
+ "background": "#f9f9f9",
538
+ "border": "1px solid #ccc",
539
+ "padding": "12px",
540
+ "margin": "0 2px",
541
+ "border-radius": "0",
542
+ "font-size": "13px",
543
+ "font-family": "\"Courier New\", monospace",
544
+ "overflow-x": "auto",
545
+ "white-space": "pre",
546
+ "min-width": "max-content"
547
+ },
548
+ "pre": {
549
+ "background-color": "#f0f4ff",
550
+ "padding": "16px",
551
+ "border-radius": "6px",
552
+ "overflow-x": "auto",
553
+ "font-size": "0.88em",
554
+ "line-height": "1.6",
555
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
556
+ "color": "#3b5b9a",
557
+ "margin": "0 0 {{spacing.block}}"
558
+ },
559
+ "img": {
560
+ "display": "block",
561
+ "margin": "30px auto",
562
+ "width": "100%",
563
+ "border": "1px solid #ddd"
564
+ },
565
+ "figcaption": {
566
+ "margin-top": "8px",
567
+ "text-align": "center",
568
+ "color": "#666",
569
+ "font-size": "14px",
570
+ "font-style": "italic"
571
+ },
572
+ "hr": {
573
+ "border": "none",
574
+ "border-top": "1px solid #e2e8f0",
575
+ "margin": "24px 0"
576
+ },
577
+ "a": {
578
+ "color": "#000080",
579
+ "text-decoration": "underline"
580
+ },
581
+ "strong": {
582
+ "color": "#000",
583
+ "font-weight": "bold"
584
+ }
585
+ }
586
+ },
587
+ {
588
+ "name": "aurora-glass",
589
+ "description": "极光玻璃:柔和通透、留白充足,适合审美向内容。",
590
+ "tokens": {
591
+ "primaryColor": "#C850C0",
592
+ "textColor": "#333",
593
+ "fontSize": "16px",
594
+ "lineHeight": 1.6,
595
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"Helvetica Neue\", \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\", sans-serif",
596
+ "spacing": {
597
+ "block": "16px"
598
+ }
599
+ },
600
+ "blocks": {
601
+ "h1": {
602
+ "margin-top": "60px",
603
+ "margin-bottom": "50px",
604
+ "text-align": "center"
605
+ },
606
+ "h2": {
607
+ "margin-top": "60px",
608
+ "margin-bottom": "30px",
609
+ "text-align": "left"
610
+ },
611
+ "h3": {
612
+ "margin-top": "35px",
613
+ "margin-bottom": "15px"
614
+ },
615
+ "p": {
616
+ "margin-top": "22px",
617
+ "margin-bottom": "22px",
618
+ "line-height": "1.9",
619
+ "letter-spacing": "0.6px",
620
+ "text-align": "justify",
621
+ "color": "#444",
622
+ "font-size": "16px"
623
+ },
624
+ "blockquote": {
625
+ "border-left": "4px solid {{primaryColor}}",
626
+ "background-color": "#f5f9ff",
627
+ "color": "#3a4a5a",
628
+ "padding": "12px 16px",
629
+ "margin": "0 0 {{spacing.block}}",
630
+ "border-radius": "4px"
631
+ },
632
+ "ul": {
633
+ "list-style-type": "disc",
634
+ "padding-left": "20px",
635
+ "margin": "20px 0",
636
+ "color": "#C850C0"
637
+ },
638
+ "ol": {
639
+ "list-style-type": "decimal",
640
+ "padding-left": "20px",
641
+ "margin": "20px 0",
642
+ "color": "#4158D0",
643
+ "font-weight": "bold"
644
+ },
645
+ "li": {
646
+ "line-height": "{{lineHeight}}",
647
+ "margin": "0 0 6px"
648
+ },
649
+ "code": {
650
+ "color": "#abb2bf",
651
+ "background": "#282c34",
652
+ "border": "1px solid rgba(65, 88, 208, 0.1)",
653
+ "padding": "20px",
654
+ "margin": "0 4px",
655
+ "border-radius": "12px",
656
+ "font-size": "13px",
657
+ "font-family": "sans-serif",
658
+ "display": "block",
659
+ "line-height": "1.6",
660
+ "overflow-x": "auto",
661
+ "white-space": "pre",
662
+ "min-width": "max-content"
663
+ },
664
+ "pre": {
665
+ "background-color": "#f0f4ff",
666
+ "padding": "16px",
667
+ "border-radius": "6px",
668
+ "overflow-x": "auto",
669
+ "font-size": "0.88em",
670
+ "line-height": "1.6",
671
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
672
+ "color": "#3b5b9a",
673
+ "margin": "0 0 {{spacing.block}}"
674
+ },
675
+ "img": {
676
+ "display": "block",
677
+ "margin": "40px auto",
678
+ "width": "100%",
679
+ "border-radius": "12px"
680
+ },
681
+ "figcaption": {
682
+ "font-size": "0.85em",
683
+ "color": "#8a94a6",
684
+ "text-align": "center",
685
+ "margin-top": "8px"
686
+ },
687
+ "hr": {
688
+ "margin": "60px auto",
689
+ "border": "0",
690
+ "height": "2px",
691
+ "background-image": "linear-gradient(90deg, rgba(247, 249, 252, 0) 0%, #C850C0 50%, rgba(247, 249, 252, 0) 100%)",
692
+ "width": "80%"
693
+ },
694
+ "a": {
695
+ "color": "#C850C0",
696
+ "text-decoration": "none",
697
+ "border-bottom": "1px dashed #C850C0",
698
+ "font-weight": "600",
699
+ "padding-bottom": "1px"
700
+ },
701
+ "strong": {
702
+ "font-weight": "700",
703
+ "background-image": "linear-gradient(135deg, #4158D0 0%, #C850C0 100%)",
704
+ "background-clip": "text",
705
+ "color": "transparent",
706
+ "margin": "0 1px"
707
+ }
708
+ }
709
+ },
710
+ {
711
+ "name": "bauhaus",
712
+ "description": "包豪斯:几何感、强对比,适合设计/创意内容。",
713
+ "tokens": {
714
+ "primaryColor": "#D32F2F",
715
+ "textColor": "#111",
716
+ "fontSize": "16px",
717
+ "lineHeight": 1.6,
718
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"Microsoft YaHei\", sans-serif",
719
+ "spacing": {
720
+ "block": "16px"
721
+ }
722
+ },
723
+ "blocks": {
724
+ "h1": {
725
+ "margin": "60px 0 40px",
726
+ "text-align": "left"
727
+ },
728
+ "h2": {
729
+ "margin": "50px 0 25px",
730
+ "text-align": "left",
731
+ "display": "flex"
732
+ },
733
+ "h3": {
734
+ "margin": "30px 0 15px"
735
+ },
736
+ "p": {
737
+ "margin": "24px 0",
738
+ "line-height": "1.8",
739
+ "text-align": "justify",
740
+ "color": "#333",
741
+ "font-size": "16px"
742
+ },
743
+ "blockquote": {
744
+ "border-left": "4px solid {{primaryColor}}",
745
+ "background-color": "#f5f9ff",
746
+ "color": "#3a4a5a",
747
+ "padding": "12px 16px",
748
+ "margin": "0 0 {{spacing.block}}",
749
+ "border-radius": "4px"
750
+ },
751
+ "ul": {
752
+ "list-style": "square",
753
+ "padding-left": "20px",
754
+ "margin": "20px 0",
755
+ "color": "#D32F2F"
756
+ },
757
+ "ol": {
758
+ "list-style": "decimal",
759
+ "padding-left": "20px",
760
+ "margin": "20px 0",
761
+ "color": "#D32F2F",
762
+ "font-weight": "bold"
763
+ },
764
+ "li": {
765
+ "line-height": "{{lineHeight}}",
766
+ "margin": "0 0 6px"
767
+ },
768
+ "code": {
769
+ "background": "#111",
770
+ "color": "#f5f5f5",
771
+ "padding": "20px",
772
+ "margin": "0 4px",
773
+ "font-size": "14px",
774
+ "font-weight": "bold",
775
+ "font-family": "monospace",
776
+ "border-radius": "0",
777
+ "border": "2px solid #111"
778
+ },
779
+ "pre": {
780
+ "background-color": "#f0f4ff",
781
+ "padding": "16px",
782
+ "border-radius": "6px",
783
+ "overflow-x": "auto",
784
+ "font-size": "0.88em",
785
+ "line-height": "1.6",
786
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
787
+ "color": "#3b5b9a",
788
+ "margin": "0 0 {{spacing.block}}"
789
+ },
790
+ "img": {
791
+ "display": "block",
792
+ "margin": "40px auto",
793
+ "width": "100%",
794
+ "border": "3px solid #111"
795
+ },
796
+ "figcaption": {
797
+ "margin-top": "10px",
798
+ "text-align": "center",
799
+ "color": "#111",
800
+ "font-size": "14px",
801
+ "font-weight": "bold",
802
+ "background": "#FBC02D",
803
+ "padding": "4px 8px",
804
+ "display": "inline-block"
805
+ },
806
+ "hr": {
807
+ "margin": "40px 0",
808
+ "border": "none",
809
+ "height": "4px",
810
+ "background": "#000"
811
+ },
812
+ "a": {
813
+ "color": "#111",
814
+ "text-decoration": "none",
815
+ "background-color": "rgba(25, 118, 210, 0.2)",
816
+ "border-bottom": "1px solid #1976D2",
817
+ "padding": "0 2px",
818
+ "font-weight": "bold"
819
+ },
820
+ "strong": {
821
+ "color": "#D32F2F",
822
+ "font-weight": "900"
823
+ }
824
+ }
825
+ },
826
+ {
827
+ "name": "cyberpunk-neon",
828
+ "description": "赛博霓虹:深色底霓虹强调,极客与未来感。",
829
+ "tokens": {
830
+ "primaryColor": "#00F3FF",
831
+ "textColor": "#333",
832
+ "fontSize": "16px",
833
+ "lineHeight": 1.6,
834
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"Microsoft YaHei\", sans-serif",
835
+ "spacing": {
836
+ "block": "16px"
837
+ }
838
+ },
839
+ "blocks": {
840
+ "h1": {
841
+ "margin": "50px 0 40px",
842
+ "text-align": "center"
843
+ },
844
+ "h2": {
845
+ "margin": "45px 0 25px",
846
+ "text-align": "left"
847
+ },
848
+ "h3": {
849
+ "margin": "30px 0 15px"
850
+ },
851
+ "p": {
852
+ "margin": "22px 0",
853
+ "line-height": "1.75",
854
+ "text-align": "justify",
855
+ "color": "#444",
856
+ "font-size": "16px"
857
+ },
858
+ "blockquote": {
859
+ "border-left": "4px solid {{primaryColor}}",
860
+ "background-color": "#f5f9ff",
861
+ "color": "#3a4a5a",
862
+ "padding": "12px 16px",
863
+ "margin": "0 0 {{spacing.block}}",
864
+ "border-radius": "4px"
865
+ },
866
+ "ul": {
867
+ "list-style": "disc",
868
+ "padding-left": "20px",
869
+ "color": "#00F3FF",
870
+ "margin": "20px 0"
871
+ },
872
+ "ol": {
873
+ "list-style": "decimal",
874
+ "padding-left": "20px",
875
+ "color": "#FF00C1",
876
+ "font-weight": "bold",
877
+ "margin": "20px 0"
878
+ },
879
+ "li": {
880
+ "line-height": "{{lineHeight}}",
881
+ "margin": "0 0 6px"
882
+ },
883
+ "code": {
884
+ "color": "#E6EDF3",
885
+ "background": "#161B22",
886
+ "border": "1px solid #00F3FF",
887
+ "padding": "16px",
888
+ "margin": "0 4px",
889
+ "border-radius": "4px",
890
+ "font-size": "13px",
891
+ "font-family": "\"Courier New\", \"Consolas\", \"Monaco\", monospace",
892
+ "letter-spacing": "0px",
893
+ "border-left": "3px solid #00F3FF",
894
+ "overflow-x": "auto",
895
+ "white-space": "pre",
896
+ "min-width": "max-content"
897
+ },
898
+ "pre": {
899
+ "background-color": "#f0f4ff",
900
+ "padding": "16px",
901
+ "border-radius": "6px",
902
+ "overflow-x": "auto",
903
+ "font-size": "0.88em",
904
+ "line-height": "1.6",
905
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
906
+ "color": "#3b5b9a",
907
+ "margin": "0 0 {{spacing.block}}"
908
+ },
909
+ "img": {
910
+ "max-width": "100%",
911
+ "height": "auto",
912
+ "display": "block",
913
+ "border-radius": "4px",
914
+ "margin": "0 auto {{spacing.block}}"
915
+ },
916
+ "figcaption": {
917
+ "margin-top": "10px",
918
+ "text-align": "center",
919
+ "color": "#00F3FF",
920
+ "font-size": "13px",
921
+ "font-family": "monospace"
922
+ },
923
+ "hr": {
924
+ "margin": "50px 0",
925
+ "border": "none",
926
+ "height": "2px",
927
+ "background": "linear-gradient(90deg, transparent, #00F3FF, transparent)"
928
+ },
929
+ "a": {
930
+ "color": "#00F3FF",
931
+ "text-decoration": "none",
932
+ "border-bottom": "1px dashed #00F3FF"
933
+ },
934
+ "strong": {
935
+ "color": "#FF00C1",
936
+ "font-weight": "bold",
937
+ "text-shadow": "0 0 2px rgba(255, 0, 193, 0.4)"
938
+ }
939
+ }
940
+ },
941
+ {
942
+ "name": "clear-guide",
943
+ "description": "清新导览:明亮轻快、引导感强,适合教程与清单。",
944
+ "tokens": {
945
+ "primaryColor": "#06736a",
946
+ "textColor": "#263b3a",
947
+ "fontSize": "16px",
948
+ "lineHeight": 1.82,
949
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"PingFang SC\", \"Microsoft YaHei\", sans-serif",
950
+ "spacing": {
951
+ "block": "16px"
952
+ }
953
+ },
954
+ "blocks": {
955
+ "h1": {
956
+ "padding": "0 0 18px",
957
+ "text-align": "left",
958
+ "margin": "24px 0 44px",
959
+ "border": "none",
960
+ "border-bottom": "8px solid #f0c94d",
961
+ "background": "transparent"
962
+ },
963
+ "h2": {
964
+ "padding": "0 0 9px",
965
+ "text-align": "left",
966
+ "margin": "45px 0 23px",
967
+ "border": "none",
968
+ "border-bottom": "4px solid #172b29",
969
+ "background": "transparent"
970
+ },
971
+ "h3": {
972
+ "padding": "0",
973
+ "text-align": "left",
974
+ "margin": "32px 0 16px",
975
+ "border-bottom": "1px dashed #8eb1ad"
976
+ },
977
+ "p": {
978
+ "margin": "0 0 21px",
979
+ "color": "#263b3a",
980
+ "font-size": "16px",
981
+ "line-height": "1.82",
982
+ "text-align": "left"
983
+ },
984
+ "blockquote": {
985
+ "border": "none"
986
+ },
987
+ "ul": {
988
+ "margin": "20px 0 27px",
989
+ "padding-left": "25px",
990
+ "color": "#087f75"
991
+ },
992
+ "ol": {
993
+ "margin": "20px 0 27px",
994
+ "padding-left": "25px",
995
+ "color": "#087f75"
996
+ },
997
+ "li": {
998
+ "line-height": "{{lineHeight}}",
999
+ "margin": "0 0 6px"
1000
+ },
1001
+ "code": {
1002
+ "padding": "19px 20px",
1003
+ "border": "1px solid #b9d0cd",
1004
+ "color": "#e8f4f2",
1005
+ "background": "#173330",
1006
+ "font-family": "\"SFMono-Regular\", Consolas, monospace",
1007
+ "font-size": "13px",
1008
+ "display": "block",
1009
+ "min-width": "max-content",
1010
+ "line-height": "1.7",
1011
+ "white-space": "pre"
1012
+ },
1013
+ "pre": {
1014
+ "margin": "29px 0",
1015
+ "border": "1px solid #183f3c",
1016
+ "border-top": "6px solid #23a79b",
1017
+ "background": "#173330",
1018
+ "overflow-x": "auto"
1019
+ },
1020
+ "img": {
1021
+ "display": "block",
1022
+ "max-width": "100%",
1023
+ "height": "auto",
1024
+ "margin": "0 auto"
1025
+ },
1026
+ "figcaption": {
1027
+ "margin-top": "0",
1028
+ "padding": "9px 12px",
1029
+ "color": "#ffffff",
1030
+ "background": "#172b29",
1031
+ "font-size": "12px",
1032
+ "line-height": "1.65",
1033
+ "text-align": "left"
1034
+ },
1035
+ "hr": {
1036
+ "height": "1px",
1037
+ "margin": "44px 0",
1038
+ "border": "none",
1039
+ "background": "#9bbdb9"
1040
+ },
1041
+ "a": {
1042
+ "color": "#06736a",
1043
+ "font-weight": "650",
1044
+ "text-decoration": "underline"
1045
+ },
1046
+ "strong": {
1047
+ "color": "#064c47",
1048
+ "font-weight": "750"
1049
+ }
1050
+ }
1051
+ },
1052
+ {
1053
+ "name": "data-blueprint",
1054
+ "description": "数据蓝图:理性蓝调、数据感,适合报表与洞察。",
1055
+ "tokens": {
1056
+ "primaryColor": "#175da8",
1057
+ "textColor": "#203047",
1058
+ "fontSize": "15px",
1059
+ "lineHeight": 1.72,
1060
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"PingFang SC\", \"Microsoft YaHei\", sans-serif",
1061
+ "spacing": {
1062
+ "block": "16px"
1063
+ }
1064
+ },
1065
+ "blocks": {
1066
+ "h1": {
1067
+ "padding": "27px 24px 25px",
1068
+ "text-align": "left",
1069
+ "margin": "18px 0 34px",
1070
+ "border": "none",
1071
+ "background": "#102b4e"
1072
+ },
1073
+ "h2": {
1074
+ "padding": "0 0 7px",
1075
+ "text-align": "left",
1076
+ "margin": "42px 0 20px",
1077
+ "border-bottom": "2px solid #173f7a",
1078
+ "background": "transparent"
1079
+ },
1080
+ "h3": {
1081
+ "padding": "0",
1082
+ "text-align": "left",
1083
+ "margin": "29px 0 14px",
1084
+ "border": "none"
1085
+ },
1086
+ "p": {
1087
+ "margin": "0 0 18px",
1088
+ "color": "#203047",
1089
+ "font-size": "15px",
1090
+ "line-height": "1.72",
1091
+ "text-align": "left"
1092
+ },
1093
+ "blockquote": {
1094
+ "border": "none"
1095
+ },
1096
+ "ul": {
1097
+ "margin": "18px 0 24px",
1098
+ "padding-left": "25px",
1099
+ "color": "#a84317",
1100
+ "list-style-type": "square"
1101
+ },
1102
+ "ol": {
1103
+ "margin": "18px 0 24px",
1104
+ "padding-left": "25px",
1105
+ "color": "#a84317",
1106
+ "font-family": "\"SFMono-Regular\", Consolas, monospace",
1107
+ "list-style-type": "decimal-leading-zero"
1108
+ },
1109
+ "li": {
1110
+ "line-height": "{{lineHeight}}",
1111
+ "margin": "0 0 6px"
1112
+ },
1113
+ "code": {
1114
+ "padding": "19px 20px",
1115
+ "border": "1px solid #c7d2df",
1116
+ "color": "#eaf1f8",
1117
+ "background": "#13233a",
1118
+ "font-family": "\"SFMono-Regular\", Consolas, monospace",
1119
+ "font-size": "13px",
1120
+ "display": "block",
1121
+ "min-width": "max-content",
1122
+ "line-height": "1.7",
1123
+ "white-space": "pre"
1124
+ },
1125
+ "pre": {
1126
+ "margin": "30px 0",
1127
+ "border": "1px solid #173f7a",
1128
+ "border-top": "6px solid #a84317",
1129
+ "background": "#13233a",
1130
+ "overflow-x": "auto"
1131
+ },
1132
+ "img": {
1133
+ "display": "block",
1134
+ "max-width": "100%",
1135
+ "height": "auto",
1136
+ "margin": "0 auto",
1137
+ "padding": "5px",
1138
+ "border": "1px solid #aebdce",
1139
+ "background": "#ffffff"
1140
+ },
1141
+ "figcaption": {
1142
+ "margin-top": "0",
1143
+ "padding": "8px 10px",
1144
+ "color": "#536a84",
1145
+ "background": "#edf3f8",
1146
+ "font-family": "\"SFMono-Regular\", Consolas, monospace",
1147
+ "font-size": "11px",
1148
+ "line-height": "1.6",
1149
+ "text-align": "left"
1150
+ },
1151
+ "hr": {
1152
+ "height": "0",
1153
+ "margin": "38px 0",
1154
+ "border": "none",
1155
+ "border-top": "1px dashed #7790ac",
1156
+ "background": "transparent"
1157
+ },
1158
+ "a": {
1159
+ "color": "#175da8",
1160
+ "font-weight": "600",
1161
+ "text-decoration": "underline",
1162
+ "text-decoration-color": "#8bb4df"
1163
+ },
1164
+ "strong": {
1165
+ "color": "#142e55",
1166
+ "font-weight": "750"
1167
+ }
1168
+ }
1169
+ },
1170
+ {
1171
+ "name": "eastern-notes",
1172
+ "description": "东方笔记:温润留白,适合人文与随笔。",
1173
+ "tokens": {
1174
+ "primaryColor": "#8c3025",
1175
+ "textColor": "#36322f",
1176
+ "fontSize": "17px",
1177
+ "lineHeight": 2.06,
1178
+ "fontFamily": "\"Songti SC\", \"STSong\", \"Noto Serif CJK SC\", SimSun, serif",
1179
+ "spacing": {
1180
+ "block": "16px"
1181
+ }
1182
+ },
1183
+ "blocks": {
1184
+ "h1": {
1185
+ "text-align": "right",
1186
+ "max-width": "7em",
1187
+ "margin": "38px 0 72px auto",
1188
+ "padding": "0 8px 0 0",
1189
+ "border": "none"
1190
+ },
1191
+ "h2": {
1192
+ "text-align": "right",
1193
+ "margin": "58px 0 30px",
1194
+ "padding": "0 8px 0 0",
1195
+ "border": "none"
1196
+ },
1197
+ "h3": {
1198
+ "text-align": "left",
1199
+ "margin": "40px 0 21px 2em"
1200
+ },
1201
+ "p": {
1202
+ "margin": "0 0 29px",
1203
+ "color": "#36322f",
1204
+ "font-size": "17px",
1205
+ "line-height": "2.06",
1206
+ "text-align": "justify"
1207
+ },
1208
+ "blockquote": {
1209
+ "border": "none"
1210
+ },
1211
+ "ul": {
1212
+ "margin": "22px 0 28px",
1213
+ "padding-left": "25px",
1214
+ "color": "#a33a2b"
1215
+ },
1216
+ "ol": {
1217
+ "margin": "22px 0 28px",
1218
+ "padding-left": "25px",
1219
+ "color": "#a33a2b"
1220
+ },
1221
+ "li": {
1222
+ "line-height": "{{lineHeight}}",
1223
+ "margin": "0 0 6px"
1224
+ },
1225
+ "code": {
1226
+ "padding": "20px",
1227
+ "border": "1px solid #d4cbc3",
1228
+ "color": "#f0ece7",
1229
+ "background": "#2e2a27",
1230
+ "font-family": "\"SFMono-Regular\", Consolas, monospace",
1231
+ "font-size": "13px",
1232
+ "display": "block",
1233
+ "min-width": "max-content",
1234
+ "line-height": "1.72",
1235
+ "white-space": "pre"
1236
+ },
1237
+ "pre": {
1238
+ "margin": "32px 0",
1239
+ "border": "1px solid #403a35",
1240
+ "border-top": "6px solid #a33a2b",
1241
+ "background": "#2e2a27",
1242
+ "overflow-x": "auto"
1243
+ },
1244
+ "img": {
1245
+ "display": "block",
1246
+ "max-width": "100%",
1247
+ "height": "auto",
1248
+ "margin": "0 auto"
1249
+ },
1250
+ "figcaption": {
1251
+ "margin-top": "12px",
1252
+ "color": "#746860",
1253
+ "font-size": "12px",
1254
+ "line-height": "1.8",
1255
+ "letter-spacing": "0.08em",
1256
+ "text-align": "right"
1257
+ },
1258
+ "hr": {
1259
+ "width": "8px",
1260
+ "height": "8px",
1261
+ "margin": "64px auto",
1262
+ "border": "none",
1263
+ "background": "#a33a2b"
1264
+ },
1265
+ "a": {
1266
+ "color": "#8c3025",
1267
+ "font-weight": "600",
1268
+ "text-decoration": "underline",
1269
+ "text-decoration-color": "#c99087"
1270
+ },
1271
+ "strong": {
1272
+ "color": "#272320",
1273
+ "font-weight": "700",
1274
+ "text-decoration": "underline",
1275
+ "text-decoration-color": "#d9aaa2",
1276
+ "text-decoration-thickness": "2px"
1277
+ }
1278
+ }
1279
+ },
1280
+ {
1281
+ "name": "knowledge-base",
1282
+ "description": "知识库:结构化、信息密度友好。",
1283
+ "tokens": {
1284
+ "primaryColor": "#EB5757",
1285
+ "textColor": "#37352F",
1286
+ "fontSize": "16px",
1287
+ "lineHeight": 1.6,
1288
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", \"PingFang SC\", sans-serif",
1289
+ "spacing": {
1290
+ "block": "16px"
1291
+ }
1292
+ },
1293
+ "blocks": {
1294
+ "h1": {
1295
+ "margin-top": "50px",
1296
+ "margin-bottom": "40px",
1297
+ "text-align": "left",
1298
+ "border-bottom": "1px solid #E3E2E0",
1299
+ "padding-bottom": "20px"
1300
+ },
1301
+ "h2": {
1302
+ "margin-top": "40px",
1303
+ "margin-bottom": "20px",
1304
+ "text-align": "left"
1305
+ },
1306
+ "h3": {
1307
+ "margin-top": "30px",
1308
+ "margin-bottom": "12px"
1309
+ },
1310
+ "p": {
1311
+ "margin-top": "16px",
1312
+ "margin-bottom": "16px",
1313
+ "line-height": "1.75",
1314
+ "letter-spacing": "0.2px",
1315
+ "text-align": "justify",
1316
+ "color": "#37352F",
1317
+ "font-size": "16px"
1318
+ },
1319
+ "blockquote": {
1320
+ "border-left": "4px solid {{primaryColor}}",
1321
+ "background-color": "#f5f9ff",
1322
+ "color": "#3a4a5a",
1323
+ "padding": "12px 16px",
1324
+ "margin": "0 0 {{spacing.block}}",
1325
+ "border-radius": "4px"
1326
+ },
1327
+ "ul": {
1328
+ "list-style-type": "disc",
1329
+ "padding-left": "24px",
1330
+ "margin": "16px 0",
1331
+ "color": "#37352F"
1332
+ },
1333
+ "ol": {
1334
+ "list-style-type": "decimal",
1335
+ "padding-left": "24px",
1336
+ "margin": "16px 0",
1337
+ "color": "#37352F",
1338
+ "font-weight": "600"
1339
+ },
1340
+ "li": {
1341
+ "line-height": "{{lineHeight}}",
1342
+ "margin": "0 0 6px"
1343
+ },
1344
+ "code": {
1345
+ "color": "#EB5757",
1346
+ "background": "#F7F6F3",
1347
+ "border": "none",
1348
+ "padding": "20px",
1349
+ "margin": "0 4px",
1350
+ "border-radius": "4px",
1351
+ "font-size": "13px",
1352
+ "font-family": "\"SFMono-Regular\", Consolas, Menlo, monospace",
1353
+ "display": "block",
1354
+ "line-height": "1.6",
1355
+ "overflow-x": "auto",
1356
+ "white-space": "pre",
1357
+ "min-width": "max-content"
1358
+ },
1359
+ "pre": {
1360
+ "background-color": "#f0f4ff",
1361
+ "padding": "16px",
1362
+ "border-radius": "6px",
1363
+ "overflow-x": "auto",
1364
+ "font-size": "0.88em",
1365
+ "line-height": "1.6",
1366
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
1367
+ "color": "#3b5b9a",
1368
+ "margin": "0 0 {{spacing.block}}"
1369
+ },
1370
+ "img": {
1371
+ "display": "block",
1372
+ "margin": "30px auto",
1373
+ "width": "100%",
1374
+ "border-radius": "4px",
1375
+ "border": "1px solid #E3E2E0"
1376
+ },
1377
+ "figcaption": {
1378
+ "margin-top": "8px",
1379
+ "text-align": "center",
1380
+ "color": "#999",
1381
+ "font-size": "14px"
1382
+ },
1383
+ "hr": {
1384
+ "margin": "40px auto",
1385
+ "border": "0",
1386
+ "height": "1px",
1387
+ "background-color": "#E3E2E0",
1388
+ "width": "100%"
1389
+ },
1390
+ "a": {
1391
+ "color": "#37352F",
1392
+ "text-decoration": "none",
1393
+ "border-bottom": "1px solid #999",
1394
+ "font-weight": "500"
1395
+ },
1396
+ "strong": {
1397
+ "color": "#37352F",
1398
+ "font-weight": "600",
1399
+ "background-color": "#FDECC8",
1400
+ "padding": "2px 4px",
1401
+ "margin": "0 2px",
1402
+ "border-radius": "3px"
1403
+ }
1404
+ }
1405
+ },
1406
+ {
1407
+ "name": "luxury-gold",
1408
+ "description": "奢华金:金棕主调、庄重,适合高端/品牌向。",
1409
+ "tokens": {
1410
+ "primaryColor": "#9E8045",
1411
+ "textColor": "#222",
1412
+ "fontSize": "16px",
1413
+ "lineHeight": 1.6,
1414
+ "fontFamily": "\"Songti SC\", \"SimSun\", \"STSong\", \"Georgia\", serif",
1415
+ "spacing": {
1416
+ "block": "16px"
1417
+ }
1418
+ },
1419
+ "blocks": {
1420
+ "h1": {
1421
+ "margin": "70px 0 50px",
1422
+ "text-align": "center"
1423
+ },
1424
+ "h2": {
1425
+ "margin": "50px 0 30px",
1426
+ "text-align": "center"
1427
+ },
1428
+ "h3": {
1429
+ "margin": "40px 0 20px",
1430
+ "text-align": "center"
1431
+ },
1432
+ "p": {
1433
+ "margin": "30px 0",
1434
+ "line-height": "2.0",
1435
+ "text-align": "justify",
1436
+ "color": "#444",
1437
+ "font-size": "16px"
1438
+ },
1439
+ "blockquote": {
1440
+ "border-left": "4px solid {{primaryColor}}",
1441
+ "background-color": "#f5f9ff",
1442
+ "color": "#3a4a5a",
1443
+ "padding": "12px 16px",
1444
+ "margin": "0 0 {{spacing.block}}",
1445
+ "border-radius": "4px"
1446
+ },
1447
+ "ul": {
1448
+ "list-style": "square",
1449
+ "padding-left": "20px",
1450
+ "margin": "20px 0",
1451
+ "color": "#9E8045"
1452
+ },
1453
+ "ol": {
1454
+ "list-style": "decimal",
1455
+ "padding-left": "20px",
1456
+ "margin": "20px 0",
1457
+ "color": "#9E8045"
1458
+ },
1459
+ "li": {
1460
+ "line-height": "{{lineHeight}}",
1461
+ "margin": "0 0 6px"
1462
+ },
1463
+ "code": {
1464
+ "color": "#9E8045",
1465
+ "background": "#fcfcfc",
1466
+ "border": "1px solid #eee",
1467
+ "padding": "20px",
1468
+ "margin": "0 4px",
1469
+ "border-radius": "2px",
1470
+ "font-size": "13px",
1471
+ "font-family": "serif",
1472
+ "display": "block",
1473
+ "line-height": "1.6",
1474
+ "overflow-x": "auto",
1475
+ "white-space": "pre",
1476
+ "min-width": "max-content"
1477
+ },
1478
+ "pre": {
1479
+ "background-color": "#f0f4ff",
1480
+ "padding": "16px",
1481
+ "border-radius": "6px",
1482
+ "overflow-x": "auto",
1483
+ "font-size": "0.88em",
1484
+ "line-height": "1.6",
1485
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
1486
+ "color": "#3b5b9a",
1487
+ "margin": "0 0 {{spacing.block}}"
1488
+ },
1489
+ "img": {
1490
+ "display": "block",
1491
+ "margin": "50px auto",
1492
+ "width": "100%"
1493
+ },
1494
+ "figcaption": {
1495
+ "color": "#999",
1496
+ "font-size": "12px",
1497
+ "margin-top": "15px",
1498
+ "text-align": "center",
1499
+ "font-style": "italic",
1500
+ "font-family": "serif"
1501
+ },
1502
+ "hr": {
1503
+ "margin": "60px auto",
1504
+ "height": "1px",
1505
+ "background": "#9E8045",
1506
+ "width": "40px",
1507
+ "border": "none"
1508
+ },
1509
+ "a": {
1510
+ "color": "#000",
1511
+ "border-bottom": "1px solid #9E8045",
1512
+ "text-decoration": "none"
1513
+ },
1514
+ "strong": {
1515
+ "color": "#9E8045",
1516
+ "font-weight": "bold",
1517
+ "margin": "0 2px"
1518
+ }
1519
+ }
1520
+ },
1521
+ {
1522
+ "name": "morandi-forest",
1523
+ "description": "莫兰迪森林:低饱和绿,安宁舒缓。",
1524
+ "tokens": {
1525
+ "primaryColor": "#4F6F52",
1526
+ "textColor": "#2F3E32",
1527
+ "fontSize": "16px",
1528
+ "lineHeight": 1.6,
1529
+ "fontFamily": "\"Optima\", \"Georgia\", \"PingFang SC\", \"Microsoft YaHei\", serif",
1530
+ "spacing": {
1531
+ "block": "16px"
1532
+ }
1533
+ },
1534
+ "blocks": {
1535
+ "h1": {
1536
+ "margin-top": "60px",
1537
+ "margin-bottom": "50px",
1538
+ "text-align": "center"
1539
+ },
1540
+ "h2": {
1541
+ "margin-top": "50px",
1542
+ "margin-bottom": "24px",
1543
+ "text-align": "left",
1544
+ "border-bottom": "1px solid #E8EBE9",
1545
+ "padding-bottom": "10px"
1546
+ },
1547
+ "h3": {
1548
+ "margin-top": "40px",
1549
+ "margin-bottom": "20px",
1550
+ "text-align": "center"
1551
+ },
1552
+ "p": {
1553
+ "margin-top": "26px",
1554
+ "margin-bottom": "26px",
1555
+ "line-height": "2.0",
1556
+ "letter-spacing": "0.5px",
1557
+ "text-align": "justify",
1558
+ "color": "#3A4D39",
1559
+ "font-size": "16px"
1560
+ },
1561
+ "blockquote": {
1562
+ "border-left": "4px solid {{primaryColor}}",
1563
+ "background-color": "#f5f9ff",
1564
+ "color": "#3a4a5a",
1565
+ "padding": "12px 16px",
1566
+ "margin": "0 0 {{spacing.block}}",
1567
+ "border-radius": "4px"
1568
+ },
1569
+ "ul": {
1570
+ "list-style-type": "disc",
1571
+ "padding-left": "20px",
1572
+ "margin": "20px 0",
1573
+ "color": "#86A789"
1574
+ },
1575
+ "ol": {
1576
+ "list-style-type": "decimal",
1577
+ "padding-left": "20px",
1578
+ "margin": "20px 0",
1579
+ "color": "#4F6F52",
1580
+ "font-weight": "bold"
1581
+ },
1582
+ "li": {
1583
+ "line-height": "{{lineHeight}}",
1584
+ "margin": "0 0 6px"
1585
+ },
1586
+ "code": {
1587
+ "color": "#4F6F52",
1588
+ "background": "#F0F2F0",
1589
+ "border": "1px solid #DCE3DD",
1590
+ "padding": "20px",
1591
+ "margin": "0 4px",
1592
+ "border-radius": "6px",
1593
+ "font-size": "13px",
1594
+ "font-family": "sans-serif",
1595
+ "display": "block",
1596
+ "line-height": "1.6",
1597
+ "overflow-x": "auto",
1598
+ "white-space": "pre",
1599
+ "min-width": "max-content"
1600
+ },
1601
+ "pre": {
1602
+ "background-color": "#f0f4ff",
1603
+ "padding": "16px",
1604
+ "border-radius": "6px",
1605
+ "overflow-x": "auto",
1606
+ "font-size": "0.88em",
1607
+ "line-height": "1.6",
1608
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
1609
+ "color": "#3b5b9a",
1610
+ "margin": "0 0 {{spacing.block}}"
1611
+ },
1612
+ "img": {
1613
+ "display": "block",
1614
+ "margin": "40px auto",
1615
+ "width": "100%",
1616
+ "border-radius": "2px",
1617
+ "padding": "6px",
1618
+ "background": "#fff",
1619
+ "border": "1px solid #eee"
1620
+ },
1621
+ "figcaption": {
1622
+ "font-size": "13px",
1623
+ "color": "#889E8B",
1624
+ "margin-top": "10px",
1625
+ "font-family": "serif"
1626
+ },
1627
+ "hr": {
1628
+ "margin": "60px auto",
1629
+ "border": "0",
1630
+ "height": "1px",
1631
+ "background-color": "#D2D4D4",
1632
+ "width": "60%"
1633
+ },
1634
+ "a": {
1635
+ "color": "#4F6F52",
1636
+ "text-decoration": "none",
1637
+ "border-bottom": "1px solid #4F6F52",
1638
+ "font-weight": "600",
1639
+ "padding-bottom": "0px"
1640
+ },
1641
+ "strong": {
1642
+ "color": "#1A261D",
1643
+ "font-weight": "700",
1644
+ "background": "linear-gradient(to top, rgba(134, 167, 137, 0.4) 50%, transparent 50%)",
1645
+ "margin": "0 2px",
1646
+ "padding": "0 2px"
1647
+ }
1648
+ }
1649
+ },
1650
+ {
1651
+ "name": "modern-editorial",
1652
+ "description": "现代杂志:杂志式排版、衬线标题,适合深度长文。",
1653
+ "tokens": {
1654
+ "primaryColor": "#9f4828",
1655
+ "textColor": "#34362f",
1656
+ "fontSize": "16px",
1657
+ "lineHeight": 1.86,
1658
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"PingFang SC\", \"Microsoft YaHei\", \"Noto Sans CJK SC\", sans-serif",
1659
+ "spacing": {
1660
+ "block": "16px"
1661
+ }
1662
+ },
1663
+ "blocks": {
1664
+ "h1": {
1665
+ "padding": "24px 0 20px",
1666
+ "text-align": "left",
1667
+ "margin": "26px 0 50px",
1668
+ "border-top": "5px solid #20221e",
1669
+ "border-bottom": "3px solid #c76237",
1670
+ "background": "transparent"
1671
+ },
1672
+ "h2": {
1673
+ "padding": "0",
1674
+ "text-align": "left",
1675
+ "display": "flex",
1676
+ "gap": "14px",
1677
+ "margin": "56px 0 25px",
1678
+ "padding-bottom": "12px",
1679
+ "border-bottom": "1px solid #afb1a6"
1680
+ },
1681
+ "h3": {
1682
+ "padding": "0",
1683
+ "text-align": "left",
1684
+ "margin": "38px 0 19px"
1685
+ },
1686
+ "p": {
1687
+ "margin": "0 0 23px",
1688
+ "color": "#34362f",
1689
+ "font-size": "16px",
1690
+ "line-height": "1.86",
1691
+ "letter-spacing": "0.018em",
1692
+ "text-align": "justify"
1693
+ },
1694
+ "blockquote": {
1695
+ "border": "none"
1696
+ },
1697
+ "ul": {
1698
+ "margin": "22px 0 28px",
1699
+ "padding-left": "24px",
1700
+ "color": "#c76237",
1701
+ "list-style-type": "square"
1702
+ },
1703
+ "ol": {
1704
+ "margin": "22px 0 28px",
1705
+ "padding-left": "24px",
1706
+ "color": "#c76237",
1707
+ "list-style-type": "decimal-leading-zero"
1708
+ },
1709
+ "li": {
1710
+ "line-height": "{{lineHeight}}",
1711
+ "margin": "0 0 6px"
1712
+ },
1713
+ "code": {
1714
+ "margin": "0 2px",
1715
+ "padding": "20px 21px",
1716
+ "border": "1px solid #d2d1c7",
1717
+ "border-radius": "0",
1718
+ "color": "#e8e6dd",
1719
+ "background": "#23251f",
1720
+ "font-family": "\"SFMono-Regular\", Consolas, \"Liberation Mono\", Menlo, monospace",
1721
+ "font-size": "13px",
1722
+ "word-break": "break-all",
1723
+ "display": "block",
1724
+ "min-width": "max-content",
1725
+ "line-height": "1.72",
1726
+ "white-space": "pre"
1727
+ },
1728
+ "pre": {
1729
+ "margin": "32px 0",
1730
+ "border-top": "5px solid #c76237",
1731
+ "border-radius": "1px",
1732
+ "background": "#23251f",
1733
+ "overflow-x": "auto"
1734
+ },
1735
+ "img": {
1736
+ "display": "block",
1737
+ "max-width": "100%",
1738
+ "height": "auto",
1739
+ "margin": "0 auto",
1740
+ "padding": "7px",
1741
+ "border": "1px solid #ccccc2",
1742
+ "border-radius": "1px",
1743
+ "background": "#f7f6f0"
1744
+ },
1745
+ "figcaption": {
1746
+ "margin-top": "16px",
1747
+ "padding-left": "13px",
1748
+ "border-left": "3px solid #c76237",
1749
+ "color": "#73766b",
1750
+ "font-size": "12px",
1751
+ "line-height": "1.65",
1752
+ "letter-spacing": "0.04em",
1753
+ "text-align": "left"
1754
+ },
1755
+ "hr": {
1756
+ "width": "84px",
1757
+ "height": "5px",
1758
+ "margin": "54px auto",
1759
+ "border": "none",
1760
+ "background": "#c76237"
1761
+ },
1762
+ "a": {
1763
+ "color": "#9f4828",
1764
+ "font-weight": "600",
1765
+ "text-decoration": "none",
1766
+ "border-bottom": "1px solid #d59a7f"
1767
+ },
1768
+ "strong": {
1769
+ "color": "#242720",
1770
+ "font-weight": "700",
1771
+ "border-bottom": "2px solid #dfa187"
1772
+ }
1773
+ }
1774
+ },
1775
+ {
1776
+ "name": "neo-brutalism",
1777
+ "description": "新粗野主义:强边框、高对比色块,大胆爽利。",
1778
+ "tokens": {
1779
+ "primaryColor": "#CCFF00",
1780
+ "textColor": "#000",
1781
+ "fontSize": "16px",
1782
+ "lineHeight": 1.6,
1783
+ "fontFamily": "-apple-system, \"Helvetica Neue\", \"PingFang SC\", \"Microsoft YaHei\", sans-serif",
1784
+ "spacing": {
1785
+ "block": "16px"
1786
+ }
1787
+ },
1788
+ "blocks": {
1789
+ "h1": {
1790
+ "margin-top": "60px",
1791
+ "margin-bottom": "50px",
1792
+ "text-align": "center"
1793
+ },
1794
+ "h2": {
1795
+ "margin-top": "60px",
1796
+ "margin-bottom": "30px",
1797
+ "text-align": "left",
1798
+ "border-bottom": "3px solid #000",
1799
+ "padding-bottom": "10px"
1800
+ },
1801
+ "h3": {
1802
+ "margin-top": "40px",
1803
+ "margin-bottom": "20px"
1804
+ },
1805
+ "p": {
1806
+ "margin-top": "24px",
1807
+ "margin-bottom": "24px",
1808
+ "line-height": "1.8",
1809
+ "letter-spacing": "0.5px",
1810
+ "text-align": "justify",
1811
+ "color": "#111",
1812
+ "font-size": "16px",
1813
+ "font-weight": "400"
1814
+ },
1815
+ "blockquote": {
1816
+ "border-left": "4px solid {{primaryColor}}",
1817
+ "background-color": "#f5f9ff",
1818
+ "color": "#3a4a5a",
1819
+ "padding": "12px 16px",
1820
+ "margin": "0 0 {{spacing.block}}",
1821
+ "border-radius": "4px"
1822
+ },
1823
+ "ul": {
1824
+ "list-style-type": "square",
1825
+ "padding-left": "20px",
1826
+ "margin": "20px 0",
1827
+ "color": "#6A00FF"
1828
+ },
1829
+ "ol": {
1830
+ "list-style-type": "decimal",
1831
+ "padding-left": "20px",
1832
+ "margin": "20px 0",
1833
+ "color": "#000",
1834
+ "font-weight": "900"
1835
+ },
1836
+ "li": {
1837
+ "line-height": "{{lineHeight}}",
1838
+ "margin": "0 0 6px"
1839
+ },
1840
+ "code": {
1841
+ "color": "#CCFF00",
1842
+ "background": "#000",
1843
+ "border": "2px solid #000",
1844
+ "padding": "16px",
1845
+ "margin": "0 4px",
1846
+ "font-size": "13px",
1847
+ "font-family": "\"Menlo\", \"Courier New\", monospace",
1848
+ "font-weight": "bold",
1849
+ "display": "block",
1850
+ "line-height": "1.5",
1851
+ "border-radius": "0",
1852
+ "overflow-x": "auto",
1853
+ "white-space": "pre",
1854
+ "min-width": "max-content"
1855
+ },
1856
+ "pre": {
1857
+ "background-color": "#f0f4ff",
1858
+ "padding": "16px",
1859
+ "border-radius": "6px",
1860
+ "overflow-x": "auto",
1861
+ "font-size": "0.88em",
1862
+ "line-height": "1.6",
1863
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
1864
+ "color": "#3b5b9a",
1865
+ "margin": "0 0 {{spacing.block}}"
1866
+ },
1867
+ "img": {
1868
+ "display": "block",
1869
+ "margin": "40px auto",
1870
+ "width": "100%",
1871
+ "border": "2px solid #000",
1872
+ "padding": "0",
1873
+ "background": "#fff"
1874
+ },
1875
+ "figcaption": {
1876
+ "margin-top": "12px",
1877
+ "text-align": "center",
1878
+ "color": "#000",
1879
+ "font-size": "14px",
1880
+ "font-weight": "bold",
1881
+ "background": "#CCFF00",
1882
+ "padding": "4px 10px",
1883
+ "border": "2px solid #000",
1884
+ "display": "inline-block"
1885
+ },
1886
+ "hr": {
1887
+ "margin": "60px auto",
1888
+ "border": "0",
1889
+ "height": "4px",
1890
+ "background": "#000",
1891
+ "width": "100%"
1892
+ },
1893
+ "a": {
1894
+ "color": "#000",
1895
+ "text-decoration": "none",
1896
+ "border-bottom": "2px solid #000",
1897
+ "background": "linear-gradient(180deg, transparent 60%, #CCFF00 0)",
1898
+ "font-weight": "700",
1899
+ "padding": "0 2px"
1900
+ },
1901
+ "strong": {
1902
+ "color": "#fff",
1903
+ "background-color": "#6A00FF",
1904
+ "font-weight": "700",
1905
+ "padding": "2px 6px",
1906
+ "margin": "0 2px",
1907
+ "border": "1px solid #000"
1908
+ }
1909
+ }
1910
+ },
1911
+ {
1912
+ "name": "receipt",
1913
+ "description": "收据风:点线边框、等宽感,适合清单与记录。",
1914
+ "tokens": {
1915
+ "primaryColor": "#000",
1916
+ "textColor": "#111",
1917
+ "fontSize": "16px",
1918
+ "lineHeight": 1.6,
1919
+ "fontFamily": "\"Courier New\", \"SimSun\", \"Songti SC\", monospace",
1920
+ "spacing": {
1921
+ "block": "16px"
1922
+ }
1923
+ },
1924
+ "blocks": {
1925
+ "h1": {
1926
+ "margin": "40px 0 30px",
1927
+ "text-align": "center",
1928
+ "border-top": "2px dashed #000",
1929
+ "border-bottom": "2px dashed #000",
1930
+ "padding": "15px 0"
1931
+ },
1932
+ "h2": {
1933
+ "margin": "30px 0 20px",
1934
+ "text-align": "center"
1935
+ },
1936
+ "h3": {
1937
+ "margin": "25px 0 10px"
1938
+ },
1939
+ "p": {
1940
+ "margin": "18px 0",
1941
+ "line-height": "1.6",
1942
+ "text-align": "justify",
1943
+ "color": "#222",
1944
+ "font-size": "15px"
1945
+ },
1946
+ "blockquote": {
1947
+ "border-left": "4px solid {{primaryColor}}",
1948
+ "background-color": "#f5f9ff",
1949
+ "color": "#3a4a5a",
1950
+ "padding": "12px 16px",
1951
+ "margin": "0 0 {{spacing.block}}",
1952
+ "border-radius": "4px"
1953
+ },
1954
+ "ul": {
1955
+ "list-style": "none",
1956
+ "padding-left": "10px",
1957
+ "margin": "20px 0"
1958
+ },
1959
+ "ol": {
1960
+ "list-style": "decimal",
1961
+ "padding-left": "25px",
1962
+ "margin": "20px 0",
1963
+ "font-weight": "bold"
1964
+ },
1965
+ "li": {
1966
+ "line-height": "{{lineHeight}}",
1967
+ "margin": "0 0 6px"
1968
+ },
1969
+ "code": {
1970
+ "color": "#fff",
1971
+ "font-family": "\"Courier New\", monospace",
1972
+ "padding": "15px",
1973
+ "margin": "0 4px",
1974
+ "font-size": "13px",
1975
+ "line-height": "1.5"
1976
+ },
1977
+ "pre": {
1978
+ "background-color": "#f0f4ff",
1979
+ "padding": "16px",
1980
+ "border-radius": "6px",
1981
+ "overflow-x": "auto",
1982
+ "font-size": "0.88em",
1983
+ "line-height": "1.6",
1984
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
1985
+ "color": "#3b5b9a",
1986
+ "margin": "0 0 {{spacing.block}}"
1987
+ },
1988
+ "img": {
1989
+ "display": "block",
1990
+ "margin": "30px auto",
1991
+ "width": "100%",
1992
+ "border": "2px dashed #000",
1993
+ "padding": "8px",
1994
+ "background": "#fff"
1995
+ },
1996
+ "figcaption": {
1997
+ "margin-top": "8px",
1998
+ "text-align": "center",
1999
+ "color": "#000",
2000
+ "font-size": "13px",
2001
+ "font-family": "monospace",
2002
+ "border-top": "1px dashed #000",
2003
+ "padding-top": "6px"
2004
+ },
2005
+ "hr": {
2006
+ "margin": "30px 0",
2007
+ "border": "none",
2008
+ "border-top": "2px dashed #000"
2009
+ },
2010
+ "a": {
2011
+ "color": "#000",
2012
+ "text-decoration": "underline",
2013
+ "font-weight": "bold"
2014
+ },
2015
+ "strong": {
2016
+ "font-weight": "900",
2017
+ "background": "#ddd",
2018
+ "padding": "0 4px"
2019
+ }
2020
+ }
2021
+ },
2022
+ {
2023
+ "name": "sunset-film",
2024
+ "description": "日落胶片:暖橙胶片感,适合故事与生活。",
2025
+ "tokens": {
2026
+ "primaryColor": "#B33D25",
2027
+ "textColor": "#4A3B32",
2028
+ "fontSize": "16px",
2029
+ "lineHeight": 1.6,
2030
+ "fontFamily": "\"Songti SC\", \"SimSun\", \"STSong\", \"Georgia\", serif",
2031
+ "spacing": {
2032
+ "block": "16px"
2033
+ }
2034
+ },
2035
+ "blocks": {
2036
+ "h1": {
2037
+ "margin-top": "60px",
2038
+ "margin-bottom": "50px",
2039
+ "text-align": "center",
2040
+ "border-top": "4px double #B33D25",
2041
+ "border-bottom": "1px solid #B33D25",
2042
+ "padding": "20px 0"
2043
+ },
2044
+ "h2": {
2045
+ "margin-top": "50px",
2046
+ "margin-bottom": "30px",
2047
+ "text-align": "left"
2048
+ },
2049
+ "h3": {
2050
+ "margin-top": "40px",
2051
+ "margin-bottom": "20px"
2052
+ },
2053
+ "p": {
2054
+ "margin-top": "26px",
2055
+ "margin-bottom": "26px",
2056
+ "line-height": "1.9",
2057
+ "letter-spacing": "0.8px",
2058
+ "text-align": "justify",
2059
+ "color": "#5D4037",
2060
+ "font-size": "16px"
2061
+ },
2062
+ "blockquote": {
2063
+ "border-left": "4px solid {{primaryColor}}",
2064
+ "background-color": "#f5f9ff",
2065
+ "color": "#3a4a5a",
2066
+ "padding": "12px 16px",
2067
+ "margin": "0 0 {{spacing.block}}",
2068
+ "border-radius": "4px"
2069
+ },
2070
+ "ul": {
2071
+ "list-style-type": "square",
2072
+ "padding-left": "20px",
2073
+ "margin": "20px 0",
2074
+ "color": "#D98C45"
2075
+ },
2076
+ "ol": {
2077
+ "list-style-type": "decimal",
2078
+ "padding-left": "20px",
2079
+ "margin": "20px 0",
2080
+ "color": "#B33D25",
2081
+ "font-weight": "bold",
2082
+ "font-family": "serif"
2083
+ },
2084
+ "li": {
2085
+ "line-height": "{{lineHeight}}",
2086
+ "margin": "0 0 6px"
2087
+ },
2088
+ "code": {
2089
+ "color": "#E6CBB5",
2090
+ "background": "#4A3B32",
2091
+ "border": "4px solid #F7EED6",
2092
+ "padding": "20px",
2093
+ "margin": "0 4px",
2094
+ "border-radius": "4px",
2095
+ "font-size": "13px",
2096
+ "font-family": "\"Courier New\", Courier, monospace",
2097
+ "display": "block",
2098
+ "line-height": "1.6",
2099
+ "overflow-x": "auto",
2100
+ "white-space": "pre",
2101
+ "min-width": "max-content"
2102
+ },
2103
+ "pre": {
2104
+ "background-color": "#f0f4ff",
2105
+ "padding": "16px",
2106
+ "border-radius": "6px",
2107
+ "overflow-x": "auto",
2108
+ "font-size": "0.88em",
2109
+ "line-height": "1.6",
2110
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
2111
+ "color": "#3b5b9a",
2112
+ "margin": "0 0 {{spacing.block}}"
2113
+ },
2114
+ "img": {
2115
+ "display": "block",
2116
+ "margin": "40px auto",
2117
+ "width": "95%",
2118
+ "border": "8px solid #fff",
2119
+ "background": "#fff"
2120
+ },
2121
+ "figcaption": {
2122
+ "font-size": "13px",
2123
+ "color": "#8D5B4C",
2124
+ "margin-top": "15px",
2125
+ "font-style": "italic",
2126
+ "font-family": "serif"
2127
+ },
2128
+ "hr": {
2129
+ "margin": "60px auto",
2130
+ "border": "0",
2131
+ "height": "1px",
2132
+ "border-top": "2px dashed #D98C45",
2133
+ "width": "100%"
2134
+ },
2135
+ "a": {
2136
+ "color": "#B33D25",
2137
+ "text-decoration": "none",
2138
+ "border-bottom": "1px solid #B33D25",
2139
+ "font-weight": "bold"
2140
+ },
2141
+ "strong": {
2142
+ "color": "#B33D25",
2143
+ "font-weight": "900",
2144
+ "margin": "0 2px"
2145
+ }
2146
+ }
2147
+ },
2148
+ {
2149
+ "name": "template",
2150
+ "description": "主题模板:WeMD 官方模板基线,通用可调。",
2151
+ "tokens": {
2152
+ "primaryColor": "#1e6bb8",
2153
+ "textColor": "#333",
2154
+ "fontSize": "16px",
2155
+ "lineHeight": 1.6,
2156
+ "fontFamily": "-apple-system, BlinkMacSystemFont, \"Microsoft YaHei\", sans-serif",
2157
+ "spacing": {
2158
+ "block": "16px"
2159
+ }
2160
+ },
2161
+ "blocks": {
2162
+ "h1": {
2163
+ "margin": "40px 0 30px",
2164
+ "text-align": "center"
2165
+ },
2166
+ "h2": {
2167
+ "margin": "30px 0 20px"
2168
+ },
2169
+ "h3": {
2170
+ "margin": "25px 0 15px"
2171
+ },
2172
+ "p": {
2173
+ "margin": "16px 0",
2174
+ "line-height": "1.7",
2175
+ "text-align": "justify",
2176
+ "color": "#333",
2177
+ "font-size": "16px"
2178
+ },
2179
+ "blockquote": {
2180
+ "border-left": "4px solid {{primaryColor}}",
2181
+ "background-color": "#f5f9ff",
2182
+ "color": "#3a4a5a",
2183
+ "padding": "12px 16px",
2184
+ "margin": "0 0 {{spacing.block}}",
2185
+ "border-radius": "4px"
2186
+ },
2187
+ "ul": {
2188
+ "margin": "15px 0",
2189
+ "padding-left": "25px",
2190
+ "list-style-type": "disc"
2191
+ },
2192
+ "ol": {
2193
+ "margin": "15px 0",
2194
+ "padding-left": "25px",
2195
+ "list-style-type": "decimal"
2196
+ },
2197
+ "li": {
2198
+ "line-height": "{{lineHeight}}",
2199
+ "margin": "0 0 6px"
2200
+ },
2201
+ "code": {
2202
+ "color": "#e83e8c",
2203
+ "background": "#f5f5f5",
2204
+ "padding": "16px",
2205
+ "margin": "0 2px",
2206
+ "border-radius": "4px",
2207
+ "font-size": "13px",
2208
+ "font-family": "\"Courier New\", \"Consolas\", \"Monaco\", monospace",
2209
+ "display": "block",
2210
+ "line-height": "1.6",
2211
+ "overflow-x": "auto",
2212
+ "white-space": "pre",
2213
+ "min-width": "max-content",
2214
+ "border": "1px solid #ddd"
2215
+ },
2216
+ "pre": {
2217
+ "background-color": "#f0f4ff",
2218
+ "padding": "16px",
2219
+ "border-radius": "6px",
2220
+ "overflow-x": "auto",
2221
+ "font-size": "0.88em",
2222
+ "line-height": "1.6",
2223
+ "font-family": "Menlo, Consolas, \"Courier New\", monospace",
2224
+ "color": "#3b5b9a",
2225
+ "margin": "0 0 {{spacing.block}}"
2226
+ },
2227
+ "img": {
2228
+ "display": "block",
2229
+ "margin": "20px auto",
2230
+ "max-width": "100%",
2231
+ "border-radius": "4px"
2232
+ },
2233
+ "figcaption": {
2234
+ "margin-top": "8px",
2235
+ "color": "#999",
2236
+ "font-size": "14px"
2237
+ },
2238
+ "hr": {
2239
+ "margin": "30px 0",
2240
+ "border": "none",
2241
+ "border-top": "1px solid #ddd",
2242
+ "height": "1px"
2243
+ },
2244
+ "a": {
2245
+ "color": "#1e6bb8",
2246
+ "text-decoration": "none",
2247
+ "border-bottom": "1px solid #1e6bb8",
2248
+ "font-weight": "bold"
2249
+ },
2250
+ "strong": {
2251
+ "font-weight": "bold",
2252
+ "color": "#000"
2253
+ }
2254
+ }
2255
+ },
2256
+ {
2257
+ "name": "whitespace-gallery",
2258
+ "description": "留白画廊:大量留白、极简,适合艺术与展示。",
2259
+ "tokens": {
2260
+ "primaryColor": "#80503f",
2261
+ "textColor": "#3a3734",
2262
+ "fontSize": "17px",
2263
+ "lineHeight": 2,
2264
+ "fontFamily": "\"Songti SC\", \"STSong\", \"Noto Serif CJK SC\", SimSun, serif",
2265
+ "spacing": {
2266
+ "block": "16px"
2267
+ }
2268
+ },
2269
+ "blocks": {
2270
+ "h1": {
2271
+ "max-width": "12em",
2272
+ "margin": "58px auto 96px",
2273
+ "padding": "0",
2274
+ "border": "none",
2275
+ "text-align": "center"
2276
+ },
2277
+ "h2": {
2278
+ "max-width": "22em",
2279
+ "margin": "78px auto 34px",
2280
+ "text-align": "left"
2281
+ },
2282
+ "h3": {
2283
+ "max-width": "34em",
2284
+ "margin": "44px auto 20px",
2285
+ "padding": "0",
2286
+ "border": "none"
2287
+ },
2288
+ "p": {
2289
+ "max-width": "34em",
2290
+ "margin": "0 auto 31px",
2291
+ "color": "#3a3734",
2292
+ "font-size": "17px",
2293
+ "line-height": "2",
2294
+ "text-align": "left"
2295
+ },
2296
+ "blockquote": {
2297
+ "border": "none"
2298
+ },
2299
+ "ul": {
2300
+ "max-width": "38em",
2301
+ "margin": "24px auto 31px",
2302
+ "padding-left": "25px",
2303
+ "color": "#8b4c3b"
2304
+ },
2305
+ "ol": {
2306
+ "max-width": "38em",
2307
+ "margin": "24px auto 31px",
2308
+ "padding-left": "25px",
2309
+ "color": "#8b4c3b"
2310
+ },
2311
+ "li": {
2312
+ "line-height": "{{lineHeight}}",
2313
+ "margin": "0 0 6px"
2314
+ },
2315
+ "code": {
2316
+ "padding": "21px",
2317
+ "border-bottom": "1px solid #a7a29d",
2318
+ "color": "#f0efed",
2319
+ "background": "#2b2927",
2320
+ "font-family": "\"SFMono-Regular\", Consolas, monospace",
2321
+ "font-size": "13px",
2322
+ "display": "block",
2323
+ "min-width": "max-content",
2324
+ "line-height": "1.72",
2325
+ "white-space": "pre"
2326
+ },
2327
+ "pre": {
2328
+ "margin": "38px 0",
2329
+ "border": "1px solid #2b2927",
2330
+ "background": "#2b2927",
2331
+ "overflow-x": "auto"
2332
+ },
2333
+ "img": {
2334
+ "display": "block",
2335
+ "max-width": "100%",
2336
+ "height": "auto",
2337
+ "margin": "0 auto"
2338
+ },
2339
+ "figcaption": {
2340
+ "max-width": "34em",
2341
+ "margin": "16px auto 0",
2342
+ "padding-top": "9px",
2343
+ "border-top": "1px solid #bbb6b1",
2344
+ "color": "#77706a",
2345
+ "font-size": "12px",
2346
+ "line-height": "1.7",
2347
+ "letter-spacing": "0.055em",
2348
+ "text-align": "left"
2349
+ },
2350
+ "hr": {
2351
+ "width": "1px",
2352
+ "height": "64px",
2353
+ "margin": "72px auto",
2354
+ "border": "none",
2355
+ "background": "#2b2927"
2356
+ },
2357
+ "a": {
2358
+ "color": "#80503f",
2359
+ "font-weight": "600",
2360
+ "text-decoration": "underline"
2361
+ },
2362
+ "strong": {
2363
+ "color": "#2b2927",
2364
+ "font-weight": "750"
2365
+ }
2366
+ }
2367
+ }
2368
+ ];
2369
+ //# sourceMappingURL=wemd-presets.js.map