forked from jaywcjlove/free-font
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
5440 lines (5440 loc) · 153 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "阿里妈妈刀隶体",
"path": "fonts/阿里巴巴/阿里妈妈刀隶体.ttf",
"home": "https://www.alibabafonts.com/#/more",
"size": "5.13 MB",
"ctime": 1721144379848
},
{
"name": "阿里妈妈东方大楷",
"type": "楷体",
"path": "fonts/阿里巴巴/阿里妈妈东方大楷.ttf",
"home": "https://www.alibabafonts.com/#/more",
"size": "5.22 MB",
"ctime": 1721144741694
},
{
"name": "阿里妈妈方圆体",
"path": "fonts/阿里巴巴/阿里妈妈方圆体.ttf",
"home": "https://www.alibabafonts.com/#/more",
"size": "7.4 MB",
"ctime": 1721141598384
},
{
"name": "阿里妈妈灵动体",
"path": "fonts/阿里巴巴/阿里妈妈灵动体.ttf",
"home": "https://www.alibabafonts.com/#/more",
"size": "109 kB",
"ctime": 1721142869896
},
{
"name": "包图小白体",
"type": "艺术体",
"path": "fonts/其他字体/包图小白体.ttf",
"size": "6.23 MB",
"ctime": 1721128750984
},
{
"name": "辰宇落雁體",
"type": "手绘体",
"license": "OFL-1.1",
"home": "https://github.com/Chenyu-otf/chenyuluoyan_thin",
"path": "fonts/辰宇落雁體/辰宇落雁體.ttf",
"size": "4.51 MB",
"ctime": 1721247029479
},
{
"name": "得意黑",
"type": "黑体",
"license": "OFL-1.1",
"home": "https://github.com/atelier-anchor/smiley-sans",
"path": "fonts/其他字体/得意黑.ttf",
"size": "2.63 MB",
"ctime": 1721204245441
},
{
"name": "抖音美好体",
"path": "fonts/其他字体/抖音美好体.ttf",
"home": "https://github.com/bytedance/fonts",
"size": "1.92 MB",
"ctime": 1721145926102
},
{
"name": "方正仿宋简体",
"type": "宋体",
"path": "fonts/方正字体系列/方正仿宋简体.ttf",
"size": "3.72 MB",
"ctime": 1721128750986
},
{
"name": "方正黑体简体",
"type": "黑体",
"path": "fonts/方正字体系列/方正黑体简体.ttf",
"size": "3.19 MB",
"ctime": 1721128750986
},
{
"name": "方正楷体简体",
"type": "楷体",
"license": "需要授权",
"path": "fonts/方正字体系列/方正楷体简体.ttf",
"size": "3.93 MB",
"ctime": 1721128750986
},
{
"name": "方正书宋简体",
"type": "宋体",
"path": "fonts/方正字体系列/方正书宋简体.ttf",
"size": "3.08 MB",
"ctime": 1721128750986
},
{
"name": "飞花宋体",
"type": "宋体",
"home": "https://github.com/Skr-ZERO/FlyFlowerSong",
"path": "fonts/其他字体/飞花宋体.ttf",
"size": "15.3 MB",
"ctime": 1721241139136
},
{
"name": "寒蝉端黑宋",
"license": "OFL-1.1",
"type": "宋体",
"home": "https://github.com/Warren2060/ChillDuanHeiSong",
"path": "fonts/寒蝉端黑宋/寒蝉端黑宋.otf",
"size": "37.9 MB",
"ctime": 1721446144398
},
{
"name": "和田研细丸",
"path": "fonts/其他字体/和田研字体/和田研细丸.ttf",
"size": "9.01 MB",
"ctime": 1721128750984
},
{
"name": "和田研中丸",
"type": "艺术体",
"path": "fonts/其他字体/和田研字体/和田研中丸.ttf",
"size": "10.8 MB",
"ctime": 1721128750984
},
{
"name": "胡晓波男神体",
"type": "艺术体",
"path": "fonts/胡晓波字体系列/胡晓波男神体.otf",
"size": "4.07 MB",
"ctime": 1721074252376
},
{
"name": "胡晓波骚包体",
"type": "艺术体",
"path": "fonts/胡晓波字体系列/胡晓波骚包体.otf",
"size": "7.47 MB",
"ctime": 1721074252376
},
{
"name": "胡晓波真帅体",
"type": "艺术体",
"path": "fonts/胡晓波字体系列/胡晓波真帅体.otf",
"size": "3.24 MB",
"ctime": 1721074252376
},
{
"name": "匯文明朝體",
"type": "艺术体",
"home": "https://zhuanlan.zhihu.com/p/344103391",
"path": "fonts/其他字体/匯文明朝體.otf",
"size": "24.4 MB",
"ctime": 1721202722902
},
{
"name": "加粉圓",
"license": "OFL-1.1",
"home": "https://github.com/justfont/open-huninn-font",
"path": "fonts/其他字体/加粉圓.ttf",
"size": "4.57 MB",
"ctime": 1721238183243
},
{
"name": "江西拙楷",
"type": "楷体",
"path": "fonts/其他字体/江西拙楷.ttf",
"size": "9.92 MB",
"ctime": 1721128750984
},
{
"name": "金山技术体",
"home": "https://design.ksyun.com/font",
"path": "fonts/其他字体/金山技术体.ttf",
"size": "3.32 MB",
"ctime": 1721241416738
},
{
"name": "京華老宋体",
"type": "宋体",
"path": "fonts/其他字体/京華老宋体.ttf",
"home": "https://zhuanlan.zhihu.com/p/677725322",
"size": "36.6 MB",
"ctime": 1721196214788
},
{
"name": "荆南波波黑",
"type": "黑体",
"license": "OFL-1.1",
"home": "https://github.com/maoken-fonts/KNBobohei",
"path": "fonts/荆南字坊/荆南波波黑.ttf",
"size": "5.39 MB",
"ctime": 1721230675326
},
{
"name": "荆南麦圆体",
"type": "艺术体",
"license": "OFL-1.1",
"home": "https://github.com/maoken-fonts/KNMaiyuan",
"path": "fonts/荆南字坊/荆南麦圆体.ttf",
"size": "8 MB",
"ctime": 1721230788817
},
{
"name": "荆南缘默体",
"type": "艺术体",
"license": "OFL-1.1",
"home": "https://github.com/maoken-fonts/KNYuanmo",
"path": "fonts/荆南字坊/荆南缘默体.ttf",
"size": "3.12 MB",
"ctime": 1721230784738
},
{
"name": "精品點陣體",
"type": "艺术体",
"license": "OFL-1.1",
"home": "https://github.com/scott0107000/BoutiqueBitmap9x9",
"path": "fonts/精品點陣體/精品點陣體.ttf",
"size": "2.13 MB",
"ctime": 1721330748055
},
{
"name": "刻石录鋼筆鶴體",
"type": "手绘体",
"path": "fonts/刻石录系列/刻石录鋼筆鶴體.ttf",
"size": "13.1 MB",
"ctime": 1721128750984
},
{
"name": "刻石录明體",
"path": "fonts/刻石录系列/刻石录明體.ttf",
"size": "25.1 MB",
"ctime": 1721128750984
},
{
"name": "刻石录顏體",
"type": "艺术体",
"path": "fonts/刻石录系列/刻石录顏體.ttf",
"size": "8.95 MB",
"ctime": 1721128750985
},
{
"name": "联盟起艺卢帅正锐黑体",
"type": "黑体",
"path": "fonts/其他字体/联盟起艺卢帅正锐黑体.ttf",
"size": "1.39 MB",
"ctime": 1721128750984
},
{
"name": "令东齐伋体",
"type": "艺术体",
"path": "fonts/其他字体/令东齐伋体.ttf",
"size": "38.8 MB",
"ctime": 1721128750984
},
{
"name": "猫啃什锦黑",
"type": "黑体",
"license": "OFL-1.1",
"home": "https://github.com/Skr-ZERO/MaokenAssortedSans",
"path": "fonts/猫啃什锦黑/猫啃什锦黑.ttf",
"size": "12.3 MB",
"ctime": 1721358891138
},
{
"name": "美績点陣體",
"license": "OFL-1.1",
"type": "艺术体",
"home": "https://github.com/ItMarki/MisekiBitmap",
"path": "fonts/美績点陣體/美績点陣體.ttf",
"size": "2.53 MB",
"ctime": 1721209928370
},
{
"name": "萌神拼音手写体",
"type": "手绘体",
"license": "OFL-1.1",
"home": "https://github.com/MaruTama/Mengshen-pinyin-font",
"path": "fonts/萌神/萌神拼音手写体.ttf",
"size": "19.7 MB",
"ctime": 1721201150106
},
{
"name": "沐瑶软笔手写体",
"type": "手绘体",
"path": "fonts/沐瑶字体系列/沐瑶软笔手写体.ttf",
"size": "4.67 MB",
"ctime": 1721128750987
},
{
"name": "沐瑶随心手写体",
"type": "手绘体",
"path": "fonts/沐瑶字体系列/沐瑶随心手写体.ttf",
"size": "3.51 MB",
"ctime": 1721128750987
},
{
"name": "庞门正道标题体",
"type": "艺术体",
"home": "https://mp.weixin.qq.com/s/1ccpLCOrIn81JhV9ulwPIQ",
"path": "fonts/庞门正道字体系列/庞门正道标题体.ttf",
"size": "3.07 MB",
"ctime": 1721128750985
},
{
"name": "庞门正道粗书体",
"type": "手绘体",
"home": "https://mp.weixin.qq.com/s/LZ_PMNc-3uX-Atmri4OLGQ",
"path": "fonts/庞门正道字体系列/庞门正道粗书体.ttf",
"size": "11.1 MB",
"ctime": 1721128750985
},
{
"name": "庞门正道轻松体",
"type": "艺术体",
"home": "https://mp.weixin.qq.com/s/1ccpLCOrIn81JhV9ulwPIQ",
"path": "fonts/庞门正道字体系列/庞门正道轻松体.otf",
"size": "3.26 MB",
"ctime": 1721074252378
},
{
"name": "齊伋體",
"type": "艺术体",
"license": "OFL-1.1",
"home": "https://github.com/LingDong-/qiji-font",
"path": "fonts/齊伋體/齊伋體.ttf",
"size": "11 MB",
"ctime": 1721205484228
},
{
"name": "千图小兔体",
"type": "艺术体",
"path": "fonts/其他字体/千图小兔体.ttf",
"size": "5.51 MB",
"ctime": 1721128750984
},
{
"name": "秋水書体",
"type": "楷体",
"license": "OFL-1.1",
"home": "https://github.com/NoHeartPen/QiushuiShotai",
"path": "fonts/秋水書体/秋水書体.ttf",
"size": "19.2 MB",
"ctime": 1721364398269
},
{
"name": "全字庫說文解字",
"path": "fonts/全字库系列/全字庫說文解字.ttf",
"size": "10.4 MB",
"ctime": 1721128750983
},
{
"name": "锐字真言体",
"type": "艺术体",
"path": "fonts/其他字体/锐字真言体.ttf",
"size": "1.43 MB",
"ctime": 1721225234713
},
{
"name": "润植家康熙字典美化体",
"home": "https://mp.weixin.qq.com/s/Qr5-0zkUVhc_CYApCZ382g",
"path": "fonts/润植家康熙字典美化体/润植家康熙字典美化体.ttf",
"size": "6.24 MB",
"ctime": 1721245522978
},
{
"name": "摄图摩登小方体",
"type": "艺术体",
"path": "fonts/其他字体/摄图摩登小方体.ttf",
"size": "1.59 MB",
"ctime": 1721128750984
},
{
"name": "手书体",
"type": "手绘体",
"path": "fonts/其他字体/手书体.ttf",
"size": "9.02 MB",
"ctime": 1721128750984
},
{
"name": "鼠标仿手写体",
"license": "OFL-1.1",
"type": "手绘体",
"home": "https://github.com/Partyb0ssishere/cef-fonts-cjk",
"path": "fonts/鼠标仿手写体/鼠标仿手写体.ttf",
"size": "23.4 MB",
"ctime": 1721208095996
},
{
"name": "隨峰體",
"type": "手绘体",
"path": "fonts/其他字体/隨峰體.ttf",
"size": "10.5 MB",
"ctime": 1721143264634
},
{
"name": "剔骨仿宋",
"type": "艺术体",
"license": "OFL-1.1",
"home": "https://github.com/LingDong-/tk-fangsong-font",
"path": "fonts/其他字体/剔骨仿宋.ttf",
"size": "31.5 MB",
"ctime": 1721208732892
},
{
"name": "铁蒺藜体",
"type": "艺术体",
"license": "OFL-1.1",
"home": "https://github.com/Buernia/Tiejili",
"path": "fonts/其他字体/铁蒺藜体.ttf",
"size": "5.8 MB",
"ctime": 1721206445948
},
{
"name": "王漢宗標楷體空心",
"type": "楷体",
"path": "fonts/王汉宗字体系列/王漢宗標楷體空心.ttf",
"size": "21.6 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗波卡體空陰",
"path": "fonts/王汉宗字体系列/王漢宗波卡體空陰.ttf",
"size": "14.6 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗超黑體俏皮動物一",
"type": "黑体",
"path": "fonts/王汉宗字体系列/王漢宗超黑體俏皮動物一.ttf",
"size": "7.31 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗超明體繁",
"path": "fonts/王汉宗字体系列/王漢宗超明體繁.ttf",
"size": "8.88 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗超明體線空",
"path": "fonts/王汉宗字体系列/王漢宗超明體線空.ttf",
"size": "16.3 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗粗鋼體標準",
"path": "fonts/王汉宗字体系列/王漢宗粗鋼體標準.ttf",
"size": "12.7 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗粗黑體實陰",
"type": "黑体",
"path": "fonts/王汉宗字体系列/王漢宗粗黑體實陰.ttf",
"size": "10.6 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗粗楷體簡",
"type": "楷体",
"path": "fonts/王汉宗字体系列/王漢宗粗楷體簡.ttf",
"size": "10.6 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗粗明體繁",
"path": "fonts/王汉宗字体系列/王漢宗粗明體繁.ttf",
"size": "9.52 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗粗圓體雙空",
"path": "fonts/王汉宗字体系列/王漢宗粗圓體雙空.ttf",
"size": "12.3 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗仿宋體標準",
"type": "宋体",
"path": "fonts/王汉宗字体系列/王漢宗仿宋體標準.ttf",
"size": "11 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗鋼筆行楷繁",
"type": "楷体",
"path": "fonts/王汉宗字体系列/王漢宗鋼筆行楷繁.ttf",
"size": "6.28 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗海報體半天水",
"path": "fonts/王汉宗字体系列/王漢宗海報體半天水.ttf",
"size": "12 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗勘亭流繁",
"path": "fonts/王汉宗字体系列/王漢宗勘亭流繁.ttf",
"size": "3.92 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗勘亭流隨波",
"path": "fonts/王汉宗字体系列/王漢宗勘亭流隨波.ttf",
"size": "9.07 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗空疊圓繁",
"path": "fonts/王汉宗字体系列/王漢宗空疊圓繁.ttf",
"size": "4.99 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗空心勘亭簡",
"path": "fonts/王汉宗字体系列/王漢宗空心勘亭簡.ttf",
"size": "9.95 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗酷儷海報",
"type": "艺术体",
"path": "fonts/王汉宗字体系列/王漢宗酷儷海報.ttf",
"size": "8.14 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗酷正海報",
"type": "艺术体",
"path": "fonts/王汉宗字体系列/王漢宗酷正海報.ttf",
"size": "3.62 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗特黑體繁",
"type": "黑体",
"path": "fonts/王汉宗字体系列/王漢宗特黑體繁.ttf",
"size": "6.97 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗特明體標準",
"path": "fonts/王汉宗字体系列/王漢宗特明體標準.ttf",
"size": "6.99 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗特明體繁",
"path": "fonts/王汉宗字体系列/王漢宗特明體繁.ttf",
"size": "9.35 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗特圓體繁",
"path": "fonts/王汉宗字体系列/王漢宗特圓體繁.ttf",
"size": "8.3 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗魏碑體左下空陰",
"error": "无法预览??",
"path": "fonts/王汉宗字体系列/王漢宗魏碑體左下空陰.ttf",
"size": "16.8 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗細黑體繁",
"type": "黑体",
"path": "fonts/王汉宗字体系列/王漢宗細黑體繁.ttf",
"size": "6.58 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗細明體繁",
"path": "fonts/王汉宗字体系列/王漢宗細明體繁.ttf",
"size": "9.28 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗細新宋簡",
"type": "宋体",
"path": "fonts/王汉宗字体系列/王漢宗細新宋簡.ttf",
"size": "9.54 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗細圓體繁",
"path": "fonts/王汉宗字体系列/王漢宗細圓體繁.ttf",
"size": "8.64 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗新潮體",
"path": "fonts/王汉宗字体系列/王漢宗新潮體.ttf",
"size": "23.8 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗新粗標魏碑空心",
"path": "fonts/王汉宗字体系列/王漢宗新粗標魏碑空心.ttf",
"size": "7.74 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗顏楷體繁",
"type": "楷体",
"path": "fonts/王汉宗字体系列/王漢宗顏楷體繁.ttf",
"size": "8.57 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗中仿宋繁",
"type": "宋体",
"path": "fonts/王汉宗字体系列/王漢宗中仿宋繁.ttf",
"size": "9.72 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗中仿宋簡",
"type": "宋体",
"path": "fonts/王汉宗字体系列/王漢宗中仿宋簡.ttf",
"size": "10.7 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗中楷體破音二",
"type": "楷体",
"path": "fonts/王汉宗字体系列/王漢宗中楷體破音二.ttf",
"size": "973 kB",
"ctime": 1721128750987
},
{
"name": "王漢宗中楷體破音三",
"type": "楷体",
"path": "fonts/王汉宗字体系列/王漢宗中楷體破音三.ttf",
"size": "491 kB",
"ctime": 1721128750987
},
{
"name": "王漢宗中楷體破音一",
"type": "楷体",
"path": "fonts/王汉宗字体系列/王漢宗中楷體破音一.ttf",
"size": "3.57 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗中楷體注音",
"type": "楷体",
"path": "fonts/王汉宗字体系列/王漢宗中楷體注音.ttf",
"size": "13.7 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗中隸書繁",
"path": "fonts/王汉宗字体系列/王漢宗中隸書繁.ttf",
"size": "8.46 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗中明體繁",
"path": "fonts/王汉宗字体系列/王漢宗中明體繁.ttf",
"size": "8.94 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗中明體破音二",
"path": "fonts/王汉宗字体系列/王漢宗中明體破音二.ttf",
"size": "951 kB",
"ctime": 1721128750987
},
{
"name": "王漢宗中明體破音三",
"path": "fonts/王汉宗字体系列/王漢宗中明體破音三.ttf",
"size": "484 kB",
"ctime": 1721128750987
},
{
"name": "王漢宗中明體破音一",
"path": "fonts/王汉宗字体系列/王漢宗中明體破音一.ttf",
"size": "3.47 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗中明體注音",
"path": "fonts/王汉宗字体系列/王漢宗中明體注音.ttf",
"size": "13.4 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗中魏碑簡",
"path": "fonts/王汉宗字体系列/王漢宗中魏碑簡.ttf",
"size": "10.5 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗中行書繁",
"type": "手绘体",
"path": "fonts/王汉宗字体系列/王漢宗中行書繁.ttf",
"size": "9.62 MB",
"ctime": 1721128750987
},
{
"name": "王漢宗綜藝體繁",
"path": "fonts/王汉宗字体系列/王漢宗綜藝體繁.ttf",
"size": "6.44 MB",
"ctime": 1721128750988
},
{
"name": "王漢宗綜藝體雙空陰",
"type": "艺术体",
"path": "fonts/王汉宗字体系列/王漢宗綜藝體雙空陰.ttf",
"size": "22.3 MB",
"ctime": 1721128750988
},
{
"name": "问藏书房",
"type": "艺术体",
"path": "fonts/其他字体/问藏书房.ttf",
"size": "2.85 MB",
"ctime": 1721128750984
},
{
"name": "无界黑",
"type": "黑体",
"license": "OFL-1.1",
"home": "https://github.com/maoken-fonts/unbounded-sans",
"path": "fonts/无界黑/无界黑.ttf",
"size": "4.26 MB",
"ctime": 1721359917777
},
{
"name": "霞鹜漫黑",
"type": "艺术体",
"license": "OFL-1.1",
"home": "https://github.com/lxgw/LxgwMarkerGothic",
"path": "fonts/霞鹜/黑体/霞鹜漫黑.ttf",
"size": "2.74 MB",
"ctime": 1721204000662
},
{
"name": "霞鹜铭心宋",
"license": "IPA-1.0",
"type": "宋体",
"home": "https://github.com/lxgw/LxgwHeartSerif",
"path": "fonts/霞鹜/宋体/霞鹜铭心宋.ttf",
"size": "11.1 MB",
"ctime": 1721199444827
},
{
"name": "霞鹜尚智黑",
"type": "黑体",
"license": "IPA-1.0",
"home": "https://github.com/lxgw/LxgwXiHei",
"path": "fonts/霞鹜/黑体/霞鹜尚智黑.ttf",
"size": "5 MB",
"ctime": 1721198224096
},
{
"name": "霞鹜新晰黑",
"type": "黑体",
"license": "IPA-1.0",
"home": "https://github.com/lxgw/LxgwXiHei",
"path": "fonts/霞鹜/黑体/霞鹜新晰黑.ttf",
"size": "5.64 MB",
"ctime": 1721198224125
},
{
"name": "贤二体",
"path": "fonts/其他字体/贤二体.ttf",
"size": "11 MB",
"ctime": 1721128750984
},
{
"name": "新叶念体",
"type": "手绘体",
"path": "fonts/其他字体/新叶念体.otf",
"size": "3.69 MB",
"ctime": 1721225231074
},
{
"name": "芫荽",
"type": "楷体",
"license": "OFL-1.1",
"home": "https://github.com/ButTaiwan/iansui",
"path": "fonts/其他字体/芫荽.ttf",
"size": "8.56 MB",
"ctime": 1721364203415
},
{
"name": "演示春风楷",
"type": "楷体",
"path": "fonts/其他字体/演示春风楷.ttf",
"size": "9.67 MB",
"ctime": 1721128750984
},
{
"name": "演示佛系体",
"type": "手绘体",
"path": "fonts/其他字体/演示佛系体.ttf",
"size": "15.2 MB",
"ctime": 1721128750984
},
{
"name": "演示秋鸿楷",
"type": "楷体",
"path": "fonts/其他字体/演示秋鸿楷.ttf",
"size": "14.9 MB",
"ctime": 1721128750984
},
{
"name": "演示夏行楷",
"type": "楷体",
"path": "fonts/其他字体/演示夏行楷.ttf",
"size": "10.1 MB",
"ctime": 1721128750984
},
{
"name": "演示悠然小楷",
"type": "楷体",
"path": "fonts/其他字体/演示悠然小楷.ttf",
"size": "12.6 MB",
"ctime": 1721128750984
},
{
"name": "优设标题黑",
"type": "黑体",
"home": "https://www.uisdc.com/uisdc-first-free-font",
"path": "fonts/其他字体/优设标题黑.ttf",
"size": "1.41 MB",
"ctime": 1721128750984
},
{
"name": "优设鲨鱼菲特健康体",
"home": "https://www.uisdc.com/uisdc-sharkfit-font",
"path": "fonts/其他字体/优设鲨鱼菲特健康体.ttf",
"size": "3.28 MB",
"ctime": 1721242876732
},
{
"name": "宇文天穹",
"type": "艺术体",
"license": "OFL-1.1",
"home": "https://github.com/MoonlitOwen/ThenKhung",
"path": "fonts/其他字体/宇文天穹.ttf",
"size": "4.75 MB",
"ctime": 1721370304279
},
{
"name": "宅在家粉條甜",
"type": "艺术体",
"home": "https://home.gamer.com.tw/creationDetail.php?sn=5378926",
"path": "fonts/其他字体/宅在家粉條甜.ttf",
"size": "21.6 MB",
"ctime": 1721244943200
},
{
"name": "站酷高端黑",
"type": "黑体",
"path": "fonts/站酷字体系列/站酷高端黑.ttf",
"size": "3.95 MB",
"ctime": 1721128750988
},
{
"name": "站酷酷黑体",
"type": "黑体",
"path": "fonts/站酷字体系列/站酷酷黑体.ttf",
"size": "2.14 MB",
"ctime": 1721128750988
},
{
"name": "站酷快乐体",
"type": "艺术体",
"path": "fonts/站酷字体系列/站酷快乐体.ttf",
"size": "1.67 MB",
"ctime": 1721128750988
},
{
"name": "站酷庆科黄油体",
"type": "艺术体",
"path": "fonts/站酷字体系列/站酷庆科黄油体.ttf",
"size": "9.75 MB",
"ctime": 1721128750988
},
{
"name": "站酷文艺体",
"type": "艺术体",
"path": "fonts/站酷字体系列/站酷文艺体.ttf",
"size": "3.97 MB",
"ctime": 1721128750988
},
{
"name": "钟齐志莽行书",
"type": "手绘体",
"home": "https://github.com/m4rc1e/zhimangxing/",
"path": "fonts/其他字体/钟齐志莽行书.ttf",
"size": "4.06 MB",
"ctime": 1721128750984
},
{
"name": "朱雀仿宋",
"type": "宋体",
"license": "OFL-1.1",
"home": "https://github.com/TrionesType/zhuque",
"path": "fonts/其他字体/朱雀仿宋.ttf",
"size": "4.82 MB",
"ctime": 1721234499579
},
{
"name": "卓健橄榄简体",
"type": "艺术体",
"path": "fonts/其他字体/卓健橄榄简体.ttf",
"size": "3.84 MB",
"ctime": 1721128750984
},
{
"name": "字体视界法棍体",
"type": "艺术体",
"path": "fonts/其他字体/字体视界法棍体.ttf",
"size": "2.89 MB",
"ctime": 1721225238741
},
{
"name": "字体视界法棍体拼音版",
"type": "艺术体",
"path": "fonts/其他字体/字体视界法棍体拼音版.ttf",
"size": "7.44 MB",
"ctime": 1721128750984
},
{
"name": "最像素体",
"license": "个人免费",
"type": "艺术体",
"home": "https://github.com/SolidZORO/zpix-pixel-font",
"path": "fonts/其他字体/最像素体.ttf",
"size": "7.18 MB",
"ctime": 1721234797167
},
{
"name": "3270-Condensed-Regular",
"license": "OFL-1.1",
"home": "https://github.com/rbanffy/3270font",
"path": "fonts/english/3270/3270-Condensed-Regular.ttf",
"size": "255 kB",
"ctime": 1721322647211
},
{
"name": "3270-Regular",
"license": "OFL-1.1",
"home": "https://github.com/rbanffy/3270font",
"path": "fonts/english/3270/3270-Regular.ttf",
"size": "255 kB",
"ctime": 1721322647265
},
{
"name": "3270-SemiCondensed-Regular",
"license": "OFL-1.1",
"home": "https://github.com/rbanffy/3270font",
"path": "fonts/english/3270/3270-SemiCondensed-Regular.ttf",
"size": "255 kB",
"ctime": 1721322647307
},
{
"name": "851电机文字体",
"type": "艺术体",
"home": "https://pm85122.onamae.jp/851Gkktt.html",
"path": "fonts/其他字体/851电机文字体.ttf",
"size": "1.41 MB",
"ctime": 1721272298391
},
{
"name": "阿里巴巴普惠体-Bold",
"path": "fonts/阿里巴巴普惠体/阿里巴巴普惠体-Bold.ttf",
"size": "9.31 MB",
"ctime": 1721128750988
},
{
"name": "阿里巴巴普惠体-Heavy",
"path": "fonts/阿里巴巴普惠体/阿里巴巴普惠体-Heavy.ttf",
"size": "2.17 MB",
"ctime": 1721128750988
},
{
"name": "阿里巴巴普惠体-Light",
"path": "fonts/阿里巴巴普惠体/阿里巴巴普惠体-Light.ttf",
"size": "9.71 MB",
"ctime": 1721128750988
},
{
"name": "阿里巴巴普惠体-Medium",
"path": "fonts/阿里巴巴普惠体/阿里巴巴普惠体-Medium.ttf",
"size": "9.56 MB",
"ctime": 1721128750988
},
{
"name": "阿里巴巴普惠体-Regular",
"path": "fonts/阿里巴巴普惠体/阿里巴巴普惠体-Regular.ttf",
"size": "9.72 MB",
"ctime": 1721128750988
},
{
"name": "阿里妈妈数黑体-Bold",
"type": "黑体",
"path": "fonts/阿里巴巴/阿里妈妈数黑体-Bold.ttf",