-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathfamilies.json
1800 lines (1800 loc) · 59.9 KB
/
families.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
{
"ABeeZee": ["literacy", "kids"],
"ADLaM Display": [],
"AR One Sans": ["low contrast"],
"Abel": ["condensed"],
"Abhaya Libre": [],
"Aboreto": ["caps"],
"Abril Fatface": ["heavy", "elegant", "didone", "headlines"],
"Abyssinica SIL": [],
"Aclonica": ["modern", "friendly"],
"Acme": ["cartoon", "comic", "groovy", "headlines"],
"Actor": ["thin", "legibility"],
"Adamina": ["compact", "small sizes", "transitional"],
"Advent Pro": ["modern"],
"Afacad": [],
"Afacad Flux": [],
"Agbalumo": ["brush", "slanted"],
"Agdasima": ["techno"],
"Agu Display": [],
"Aguafina Script": ["cursive", "elegant", "script"],
"Akatab": [],
"Akaya Kanadaka": [],
"Akaya Telivigala": [],
"Akronim": ["brush", "lines"],
"Akshar": ["condensed", "narrow"],
"Aladin": ["art deco"],
"Alata": ["geometric", "low contrast"],
"Alatsi": ["modern", "condensed", "geometric"],
"Albert Sans": ["geometric"],
"Aldrich": ["square", "techno"],
"Alef": ["geometric"],
"Alegreya": ["literature"],
"Alegreya SC": ["small caps", "literature"],
"Alegreya Sans": ["humanist", "literature"],
"Alegreya Sans SC": ["small caps", "literature"],
"Aleo": [],
"Alex Brush": ["brush", "cursive"],
"Alexandria": [],
"Alfa Slab One": ["slab", "heavy", "egyptian"],
"Alice": ["old style", "headlines"],
"Alike": ["legibility", "slab"],
"Alike Angular": ["legibility", "slab"],
"Alkalami": ["arabic"],
"Alkatra": ["slanted"],
"Allan": ["slanted"],
"Allerta": ["legibility"],
"Allerta Stencil": ["stencil"],
"Allison": ["calligraphic", "elegant", "formal", "slanted"],
"Allura": ["cursive"],
"Almarai": ["arabic"],
"Almendra": ["whimsical", "small sizes"],
"Almendra Display": ["whimsical", "literature"],
"Almendra SC": ["small caps", "literature"],
"Alumni Sans": ["narrow", "condensed", "light", "thin"],
"Alumni Sans Collegiate One": ["outline", "collegiate"],
"Alumni Sans Inline One": ["block", "heavy"],
"Alumni Sans Pinstripe": ["light", "thin"],
"Amarante": ["art nouveau"],
"Amaranth": ["friendly"],
"Amatic SC": ["small caps", "scrawl"],
"Amethysta": ["transitional"],
"Amiko": ["legibility"],
"Amiri": ["1900s", "elegant"],
"Amiri Quran": ["arabic"],
"Amita": ["calligraphic"],
"Anaheim": ["code"],
"Andada Pro": [],
"Andika": ["literacy"],
"Anek Bangla": [],
"Anek Devanagari": [],
"Anek Gujarati": [],
"Anek Gurmukhi": [],
"Anek Kannada": [],
"Anek Latin": [],
"Anek Malayalam": [],
"Anek Odia": [],
"Anek Tamil": [],
"Anek Telugu": [],
"Angkor": ["literacy"],
"Annapurna SIL": [],
"Annie Use Your Telescope": ["scrawl"],
"Anonymous Pro": ["code"],
"Anta": ["modern", "techno", "futuristic"],
"Antic": ["thin", "friendly"],
"Antic Didone": ["didone", "headlines"],
"Antic Slab": ["slab", "headlines"],
"Anton": ["heavy"],
"Anton SC": ["small caps"],
"Antonio": ["narrow", "futuristic", "tall", "modern", "techno"],
"Anuphan": [],
"Anybody": ["eurostile", "1990s"],
"Aoboshi One": ["japanese"],
"Arapey": ["didone"],
"Arbutus": ["heavy", "western"],
"Arbutus Slab": ["slab"],
"Architects Daughter": ["comic"],
"Archivo": [],
"Archivo Black": ["grotesque", "heavy"],
"Archivo Narrow": ["condensed"],
"Are You Serious": ["whimsical", "curls", "cute", "kids", "swirl"],
"Aref Ruqaa": ["calligraphic"],
"Aref Ruqaa Ink": ["color", "calligraphic"],
"Arima": ["low contrast"],
"Arimo": ["legibility", "literacy"],
"Arizonia": ["cursive", "brush"],
"Armata": ["low contrast"],
"Arsenal": ["thin", "light"],
"Arsenal SC": ["small caps"],
"Artifika": ["friendly"],
"Arvo": ["slab", "egyptian", "hinted", "geometric"],
"Arya": ["high contrast"],
"Asap": ["round"],
"Asap Condensed": ["condensed"],
"Asar": ["round"],
"Asset": ["wide", "fat face", "engraved", "high contrast"],
"Assistant": ["legibility"],
"Astloch": ["monolinear", "fraktur", "whimsical"],
"Asul": ["humanist"],
"Athiti": ["loopless", "friendly", "humanist"],
"Atkinson Hyperlegible": ["literacy"],
"Atma": ["uneven", "whimsical"],
"Atomic Age": ["modern", "1950s"],
"Aubrey": ["art nouveau"],
"Audiowide": ["disco", "futuristic"],
"Autour One": ["round"],
"Average": ["literature"],
"Average Sans": ["thin", "headlines"],
"Averia Gruesa Libre": ["grunge"],
"Averia Libre": ["grunge"],
"Averia Sans Libre": ["grunge"],
"Averia Serif Libre": ["grunge"],
"Azeret Mono": ["monolinear"],
"B612": ["literacy"],
"B612 Mono": ["literacy"],
"BIZ UDGothic": [],
"BIZ UDMincho": [],
"BIZ UDPGothic": [],
"BIZ UDPMincho": [],
"Babylonica": ["scrawl", "calligraphic", "elegant"],
"Bacasime Antique": [],
"Bad Script": ["script"],
"Badeen Display": [],
"Bagel Fat One": ["korean", "fat", "cute", "round"],
"Bahiana": ["uneven"],
"Bahianita": ["narrow", "condensed", "funky"],
"Bai Jamjuree": [],
"Bakbak One": ["heavy"],
"Ballet": ["cursive", "elegant", "formal", "love", "romantic"],
"Baloo 2": [],
"Baloo Bhai 2": [],
"Baloo Bhaijaan 2": [],
"Baloo Bhaina 2": [],
"Baloo Chettan 2": [],
"Baloo Da 2": [],
"Baloo Paaji 2": [],
"Baloo Tamma 2": [],
"Baloo Tammudu 2": [],
"Baloo Thambi 2": [],
"Balsamiq Sans": ["round", "friendly", "wireframe"],
"Balthazar": ["gothic", "headlines"],
"Bangers": ["comic", "slanted", "cartoon", "caps"],
"Barlow": ["low contrast"],
"Barlow Condensed": ["condensed"],
"Barlow Semi Condensed": ["condensed"],
"Barriecito": ["uneven", "fun", "playful"],
"Barrio": ["uneven", "signage"],
"Basic": ["low contrast"],
"Baskervville": [],
"Baskervville SC": ["small caps"],
"Battambang": ["tall"],
"Baumans": ["monolinear", "large sizes", "headlines", "geometric"],
"Bayon": ["monolinear"],
"Be Vietnam Pro": [],
"Beau Rivage": ["calligraphic", "elegant", "formal"],
"Bebas Neue": ["caps", "compact", "heavy", "block"],
"Beiruti": [],
"Belanosima": ["geometric"],
"Belgrano": ["slab"],
"Bellefair": ["light", "tall", "thin"],
"Belleza": ["humanist"],
"Bellota": ["whimsical", "large sizes", "cute", "decorative"],
"Bellota Text": ["large sizes", "wide"],
"BenchNine": ["condensed", "headlines"],
"Benne": [],
"Bentham": ["engraved"],
"Berkshire Swash": ["swash"],
"Besley": ["slab"],
"Beth Ellen": ["cursive", "romantic"],
"Bevan": ["slab", "heavy"],
"BhuTuka Expanded One": ["wide", "thin", "light", "expanded"],
"Big Shoulders Display": ["condensed", "tall", "narrow"],
"Big Shoulders Inline Display": ["lines"],
"Big Shoulders Inline Text": ["lines"],
"Big Shoulders Stencil Display": ["stencil"],
"Big Shoulders Stencil Text": ["stencil"],
"Big Shoulders Text": ["condensed", "tall"],
"Bigelow Rules": ["uneven", "whimsical"],
"Bigshot One": ["didone"],
"Bilbo": ["headlines"],
"Bilbo Swash Caps": ["swash", "headlines"],
"BioRhyme": ["slab"],
"BioRhyme Expanded": ["slab", "expanded"],
"Birthstone": ["cursive", "elegant", "small sizes", "formal"],
"Birthstone Bounce": ["cursive", "elegant", "formal", "playful"],
"Biryani": ["monolinear", "geometric"],
"Bitter": ["slab"],
"Black And White Picture": ["swirl", "spicy", "playful", "fuzzy"],
"Black Han Sans": ["heavy"],
"Black Ops One": ["stencil", "large sizes", "low contrast"],
"Blaka": ["gothic", "arabic"],
"Blaka Hollow": ["gothic", "arabic", "outline"],
"Blaka Ink": ["arabic", "color"],
"Blinker": ["futuristic", "square"],
"Bodoni Moda": ["high contrast"],
"Bodoni Moda SC": ["small caps"],
"Bokor": ["cambodian", "khmer"],
"Bona Nova": [],
"Bona Nova SC": ["small caps"],
"Bonbon": ["cute", "decorative", "headlines"],
"Bonheur Royale": ["brush", "calligraphic", "cursive", "elegant", "formal"],
"Boogaloo": ["1960s"],
"Borel": ["french", "cursive", "connected"],
"Bowlby One": ["heavy", "headlines"],
"Bowlby One SC": ["small caps", "heavy", "headlines"],
"Braah One": ["block"],
"Brawler": ["compact"],
"Bree Serif": ["friendly"],
"Bricolage Grotesque": [],
"Bruno Ace": ["techno", "geometric"],
"Bruno Ace SC": ["small caps", "techno", "geometric"],
"Brygada 1918": ["1900s"],
"Bubblegum Sans": ["fun"],
"Bubbler One": ["thin"],
"Buda": ["thin"],
"Buenard": ["transitional"],
"Bungee": ["signage"],
"Bungee Hairline": ["thin", "signage"],
"Bungee Inline": ["signage"],
"Bungee Outline": ["outline", "signage"],
"Bungee Shade": ["shadow", "signage"],
"Bungee Spice": ["gradient", "color"],
"Bungee Tint": ["color", "caps"],
"Butcherman": ["halloween"],
"Butterfly Kids": ["kids", "cute"],
"Cabin": ["humanist", "geometric"],
"Cabin Condensed": ["condensed", "humanist"],
"Cabin Sketch": ["sketch"],
"Cactus Classical Serif": [],
"Caesar Dressing": ["ancient", "roman"],
"Cagliostro": ["1920s"],
"Cairo": ["calligraphic", "modern", "wide"],
"Cairo Play": ["color"],
"Caladea": [],
"Calistoga": ["heavy", "vintage"],
"Calligraffitti": ["calligraphic"],
"Cambay": [],
"Cambo": ["khmer", "condensed"],
"Candal": ["heavy"],
"Cantarell": ["humanist"],
"Cantata One": ["didone"],
"Cantora One": ["friendly", "headlines"],
"Caprasimo": ["heavy"],
"Capriola": ["round"],
"Caramel": ["calligraphic", "cursive", "elegant", "formal"],
"Carattere": ["formal", "elegant"],
"Cardo": ["old style"],
"Carlito": [],
"Carme": ["legibility"],
"Carrois Gothic": ["gothic"],
"Carrois Gothic SC": ["small caps", "gothic"],
"Carter One": ["pulp"],
"Castoro": [],
"Castoro Titling": ["caps"],
"Catamaran": ["monolinear"],
"Caudex": [],
"Caveat": ["scrawl"],
"Caveat Brush": ["brush"],
"Cedarville Cursive": ["cursive"],
"Ceviche One": ["1960s", "headlines"],
"Chakra Petch": ["square", "techno"],
"Changa": ["square"],
"Changa One": ["heavy"],
"Chango": ["heavy"],
"Charis SIL": [],
"Charm": ["calligraphic"],
"Charmonman": ["cursive", "tall"],
"Chathura": ["square"],
"Chau Philomene One": ["headlines"],
"Chela One": ["brush"],
"Chelsea Market": ["kids", "fun"],
"Chenla": ["cambodian", "khmer"],
"Cherish": ["brush", "cursive", "elegant"],
"Cherry Bomb One": ["heavy", "cute", "japanese", "round"],
"Cherry Cream Soda": ["1950s"],
"Cherry Swash": ["swash", "headlines"],
"Chewy": ["cartoon"],
"Chicle": ["disco", "groovy"],
"Chilanka": ["handwritten", "kids"],
"Chivo": ["grotesque", "headlines"],
"Chivo Mono": [],
"Chocolate Classical Sans": [],
"Chokokutai": ["japanese", "funky"],
"Chonburi": ["wide", "high contrast"],
"Cinzel": ["caps"],
"Cinzel Decorative": ["caps", "roman", "ancient"],
"Clicker Script": ["cursive", "1960s", "script"],
"Climate Crisis": ["heavy", "block", "round", "headlines"],
"Coda": ["code", "large sizes"],
"Codystar": ["dotted"],
"Coiny": ["brush"],
"Combo": ["marker", "fun", "headlines"],
"Comfortaa": ["round", "geometric", "large sizes"],
"Comforter": ["brush", "cursive", "elegant"],
"Comforter Brush": ["brush", "cursive", "elegant"],
"Comic Neue": ["comic"],
"Coming Soon": ["scrawl", "kids"],
"Comme": [],
"Commissioner": ["low contrast"],
"Concert One": ["round"],
"Condiment": ["brush", "slanted"],
"Content": ["cambodian", "khmer"],
"Contrail One": ["slanted", "large sizes", "low contrast", "headlines"],
"Convergence": ["friendly", "low contrast"],
"Cookie": ["cursive", "1950s", "brush", "calligraphic"],
"Copse": ["slab"],
"Corben": ["round"],
"Corinthia": ["cursive", "elegant", "romantic"],
"Cormorant": ["light"],
"Cormorant Garamond": [],
"Cormorant Infant": ["celtic"],
"Cormorant SC": ["small caps"],
"Cormorant Unicase": ["celtic", "unicase"],
"Cormorant Upright": ["celtic"],
"Courgette": ["brush"],
"Courier Prime": ["low contrast", "monolinear", "typewriter"],
"Cousine": ["code"],
"Coustard": ["friendly"],
"Covered By Your Grace": ["marker"],
"Crafty Girls": ["bubbly"],
"Creepster": ["halloween"],
"Crete Round": ["slab", "low contrast", "round"],
"Crimson Pro": ["old style"],
"Crimson Text": ["old style"],
"Croissant One": ["french"],
"Crushed": ["condensed", "unicase"],
"Cuprum": ["condensed", "grotesque"],
"Cute Font": ["round"],
"Cutive": ["typewriter"],
"Cutive Mono": ["typewriter", "code"],
"DM Mono": [],
"DM Sans": ["geometric"],
"DM Serif Display": ["high contrast", "transitional"],
"DM Serif Text": ["geometric", "low contrast"],
"Dai Banna SIL": [],
"Damion": ["cursive"],
"Dancing Script": ["cursive", "1950s", "script"],
"Danfo": ["groovy"],
"Dangrek": ["round"],
"Darker Grotesque": ["light"],
"Darumadrop One": ["handwritten"],
"David Libre": ["hebrew"],
"Dawning of a New Day": ["cursive"],
"Days One": ["heavy", "headlines"],
"Dekko": ["kids"],
"Dela Gothic One": ["heavy", "block", "wide"],
"Delicious Handrawn": ["handwritten"],
"Delius": ["round", "comic"],
"Delius Swash Caps": ["cute", "swash", "round"],
"Delius Unicase": ["round", "comic", "unicase"],
"Della Respira": ["art deco"],
"Denk One": ["tapered"],
"Devonshire": ["brush"],
"Dhurjati": ["headlines"],
"Didact Gothic": ["literacy"],
"Diphylleia": ["korean", "brush"],
"Diplomata": ["wide", "headlines"],
"Diplomata SC": ["small caps", "wide", "headlines"],
"Do Hyeon": ["korean"],
"Dokdo": ["uneven"],
"Domine": [],
"Donegal One": ["legibility"],
"Dongle": ["round"],
"Doppio One": ["low contrast"],
"Dorsa": ["condensed"],
"Dosis": ["round"],
"DotGothic16": ["pixel", "game"],
"Doto": ["dotted", "code"],
"Dr Sugiyama": ["cursive"],
"Duru Sans": ["humanist"],
"DynaPuff": ["playful"],
"Dynalight": ["cursive", "vintage"],
"EB Garamond": ["legibility"],
"Eagle Lake": ["calligraphic", "celtic"],
"East Sea Dokdo": ["uneven"],
"Eater": ["halloween"],
"Economica": ["condensed"],
"Eczar": [],
"Edu AU VIC WA NT Arrows": [],
"Edu AU VIC WA NT Dots": [],
"Edu AU VIC WA NT Guides": [],
"Edu AU VIC WA NT Hand": ["slanted", "literacy"],
"Edu AU VIC WA NT Pre": [],
"Edu NSW ACT Foundation": ["handwritten"],
"Edu QLD Beginner": ["handwritten"],
"Edu SA Beginner": ["slanted"],
"Edu TAS Beginner": ["slanted"],
"Edu VIC WA NT Beginner": ["slanted"],
"El Messiri": ["arabic"],
"Electrolize": ["techno", "geometric", "square"],
"Elsie": ["swirl"],
"Elsie Swash Caps": ["swash"],
"Emblema One": ["stencil", "slanted", "large sizes"],
"Emilys Candy": ["cute", "love", "hearts"],
"Encode Sans": ["round", "humanist", "geometric"],
"Encode Sans Condensed": ["condensed"],
"Encode Sans Expanded": ["expanded"],
"Encode Sans SC": ["caps", "small caps"],
"Encode Sans Semi Condensed": ["condensed"],
"Encode Sans Semi Expanded": ["expanded"],
"Engagement": ["formal", "cursive", "vintage"],
"Englebert": ["1930s", "playful"],
"Enriqueta": ["slab", "egyptian"],
"Ephesis": ["cursive"],
"Epilogue": [],
"Erica One": ["fat"],
"Esteban": ["literature"],
"Estonia": ["calligraphic"],
"Euphoria Script": ["brush", "copperplate", "script"],
"Ewert": ["western", "outline", "decorative"],
"Exo": ["geometric", "techno"],
"Exo 2": ["geometric", "techno"],
"Expletus Sans": ["stencil"],
"Explora": ["light", "slanted"],
"Faculty Glyphic": [],
"Fahkwang": ["high contrast"],
"Familjen Grotesk": [],
"Fanwood Text": ["1940s"],
"Farro": ["humanist"],
"Farsan": ["slanted"],
"Fascinate": ["art deco", "high contrast"],
"Fascinate Inline": ["art deco", "high contrast"],
"Faster One": ["lines", "speed", "headlines"],
"Fasthand": ["monolinear", "slanted", "friendly"],
"Fauna One": ["headlines"],
"Faustina": [],
"Federant": ["antiqua"],
"Federo": ["art deco", "1900s"],
"Felipa": ["calligraphic"],
"Fenix": [],
"Festive": ["decorative", "fun", "swirl", "whimsical"],
"Figtree": ["geometric"],
"Finger Paint": ["brush", "kids"],
"Finlandica": [],
"Fira Code": ["code"],
"Fira Mono": ["code"],
"Fira Sans": ["legibility"],
"Fira Sans Condensed": ["condensed"],
"Fira Sans Extra Condensed": ["condensed"],
"Fjalla One": ["narrow"],
"Fjord One": ["low contrast"],
"Flamenco": ["slab", "monolinear"],
"Flavors": ["fun", "spicy"],
"Fleur De Leah": ["cursive", "elegant", "formal", "decorative"],
"Flow Block": ["wireframe"],
"Flow Circular": ["wireframe"],
"Flow Rounded": ["wireframe", "round"],
"Foldit": ["color"],
"Fondamento": ["calligraphic"],
"Fontdiner Swanky": ["1950s", "funky", "uneven"],
"Forum": ["roman"],
"Fragment Mono": [],
"Francois One": ["gothic"],
"Frank Ruhl Libre": [],
"Fraunces": [],
"Freckle Face": ["kids"],
"Fredericka the Great": ["sketch"],
"Fredoka": ["round"],
"Freehand": ["monolinear", "slanted"],
"Freeman": ["heavy", "gothic"],
"Fresca": ["friendly", "comic"],
"Frijole": ["fun", "spicy"],
"Fruktur": ["fraktur", "large sizes", "blackletter"],
"Fugaz One": ["geometric", "slanted"],
"Fuggles": ["scrawl", "handwritten"],
"Funnel Display": [],
"Funnel Sans": [],
"Fustat": [],
"Fuzzy Bubbles": ["cute", "kids", "playful", "handwritten"],
"GFS Didot": ["neoclassical"],
"GFS Neohellenic": ["round", "monolinear", "1930s"],
"Ga Maamli": ["marker", "caps", "heavy", "handwritten"],
"Gabarito": ["geometric"],
"Gabriela": ["curls"],
"Gaegu": ["korean", "handwritten"],
"Gafata": [],
"Gajraj One": ["heavy", "futuristic", "techno", "square"],
"Galada": ["cursive"],
"Galdeano": ["humanist"],
"Galindo": ["fun"],
"Gamja Flower": ["korean", "handwritten"],
"Gantari": ["geometric"],
"Gasoek One": ["korean", "fat"],
"Gayathri": ["modern"],
"Geist": ["modern"],
"Geist Mono": [],
"Gelasio": [],
"Gemunu Libre": ["futuristic", "techno", "square"],
"Genos": ["futuristic", "square"],
"Gentium Book Plus": [],
"Gentium Plus": [],
"Geo": ["square", "geometric"],
"Geologica": ["humanist"],
"Georama": [],
"Geostar": ["square", "outline", "headlines"],
"Geostar Fill": ["square", "headlines"],
"Germania One": ["fraktur", "geometric"],
"Gideon Roman": ["roman"],
"Gidugu": ["headlines"],
"Gilda Display": ["headlines"],
"Girassol": ["caps"],
"Give You Glory": ["scrawl", "handwritten"],
"Glass Antiqua": ["retro", "antiqua"],
"Glegoo": ["slab", "hinted"],
"Gloock": ["high contrast"],
"Gloria Hallelujah": ["scrawl", "comic"],
"Glory": ["modern"],
"Gluten": ["round", "fun"],
"Goblin One": ["wide", "headlines"],
"Gochi Hand": ["scrawl", "cartoon"],
"Goldman": ["futuristic", "techno", "square"],
"Golos Text": [],
"Gorditas": ["love", "cute", "hearts"],
"Gothic A1": ["korean"],
"Gotu": [],
"Goudy Bookletter 1911": ["old style"],
"Gowun Batang": [],
"Gowun Dodum": ["korean"],
"Graduate": ["collegiate", "block"],
"Grand Hotel": ["cursive", "1930s"],
"Grandiflora One": ["korean", "connected"],
"Grandstander": ["kids", "round", "friendly"],
"Grape Nuts": ["handwritten", "light", "slanted"],
"Gravitas One": ["heavy", "fat face", "large sizes"],
"Great Vibes": ["cursive", "elegant"],
"Grechen Fuemen": ["playful", "uneven"],
"Grenze": ["roman", "blackletter"],
"Grenze Gotisch": ["roman", "blackletter"],
"Grey Qo": ["calligraphic", "cursive", "elegant", "light"],
"Griffy": ["swirl", "whimsical"],
"Gruppo": ["thin"],
"Gudea": [],
"Gugi": ["korean", "futuristic"],
"Gulzar": [],
"Gupter": ["compact"],
"Gurajada": ["small sizes"],
"Gwendolyn": ["cursive", "light", "romantic"],
"Habibi": ["high contrast"],
"Hachi Maru Pop": ["1970s", "1980s", "cute", "japanese"],
"Hahmlet": ["korean"],
"Halant": [],
"Hammersmith One": ["low contrast"],
"Hanalei": ["fun", "bamboo"],
"Hanalei Fill": ["fun", "bamboo"],
"Handjet": ["pixel"],
"Handlee": ["small sizes"],
"Hanken Grotesk": [],
"Hanuman": ["tall"],
"Happy Monkey": ["round", "headlines", "fun"],
"Harmattan": ["arabic"],
"Headland One": [],
"Hedvig Letters Sans": [],
"Hedvig Letters Serif": [],
"Heebo": ["hebrew"],
"Henny Penny": ["whimsical", "uneven"],
"Hepta Slab": ["slab"],
"Herr Von Muellerhoff": ["cursive", "formal"],
"Hi Melody": ["cute", "korean"],
"Hina Mincho": ["japanese"],
"Hind": ["humanist", "monolinear"],
"Hind Guntur": ["humanist"],
"Hind Madurai": ["humanist"],
"Hind Mysuru": [],
"Hind Siliguri": ["monolinear"],
"Hind Vadodara": ["monolinear"],
"Holtwood One SC": ["small caps", "heavy", "block"],
"Homemade Apple": ["cursive"],
"Homenaje": ["condensed", "grotesque"],
"Honk": ["color", "shadow"],
"Host Grotesk": [],
"Hubballi": ["monolinear"],
"Hubot Sans": [],
"Hurricane": ["brush"],
"IBM Plex Mono": ["grotesque", "code"],
"IBM Plex Sans": ["grotesque"],
"IBM Plex Sans Arabic": ["arabic"],
"IBM Plex Sans Condensed": ["grotesque", "condensed"],
"IBM Plex Sans Devanagari": [],
"IBM Plex Sans Hebrew": ["hebrew"],
"IBM Plex Sans JP": [],
"IBM Plex Sans KR": ["korean"],
"IBM Plex Sans Thai": [],
"IBM Plex Sans Thai Looped": [],
"IBM Plex Serif": ["grotesque"],
"IM Fell DW Pica": ["grunge"],
"IM Fell DW Pica SC": ["small caps", "grunge"],
"IM Fell Double Pica": ["high contrast"],
"IM Fell Double Pica SC": ["small caps"],
"IM Fell English": ["typewriter"],
"IM Fell English SC": ["small caps", "typewriter"],
"IM Fell French Canon": ["high contrast"],
"IM Fell French Canon SC": ["small caps"],
"IM Fell Great Primer": ["high contrast"],
"IM Fell Great Primer SC": ["small caps"],
"Ibarra Real Nova": [],
"Iceberg": ["code", "techno", "monolinear", "large sizes"],
"Iceland": ["1950s", "square", "eurostile"],
"Imbue": ["condensed", "compact"],
"Imperial Script": ["formal", "elegant"],
"Imprima": ["friendly"],
"Inclusive Sans": ["friendly"],
"Inconsolata": ["code"],
"Inder": ["art nouveau", "low contrast"],
"Indie Flower": ["bubbly", "scrawl"],
"Ingrid Darling": ["cursive", "cute", "playful", "swirl", "whimsical"],
"Inika": [],
"Inknut Antiqua": ["literature", "antiqua"],
"Inria Sans": ["humanist", "modern"],
"Inria Serif": [],
"Inspiration": ["fun", "script"],
"Instrument Sans": ["grotesque", "legibility"],
"Instrument Serif": ["condensed"],
"Inter": ["legibility"],
"Inter Tight": ["friendly"],
"Irish Grover": ["fun", "uneven"],
"Island Moments": ["brush"],
"Istok Web": ["hinted"],
"Italiana": ["thin", "didone", "headlines"],
"Italianno": ["calligraphic", "formal"],
"Itim": ["round", "friendly"],
"Jacquard 12": ["knit"],
"Jacquard 12 Charted": ["knit"],
"Jacquard 24": ["knit"],
"Jacquard 24 Charted": ["knit"],
"Jacquarda Bastarda 9": ["needlepoint", "pixel"],
"Jacquarda Bastarda 9 Charted": ["needlepoint"],
"Jacques Francois": ["1700s"],
"Jacques Francois Shadow": ["outline", "shadow", "1700s", "large sizes"],
"Jaini": [],
"Jaini Purva": [],
"Jaldi": [],
"Jaro": ["heavy", "techno"],
"Jersey 10": ["knit", "sport"],
"Jersey 10 Charted": ["knit", "sport"],
"Jersey 15": ["knit", "sport"],
"Jersey 15 Charted": ["knit", "sport"],
"Jersey 20": ["knit", "sport"],
"Jersey 20 Charted": ["knit", "sport"],
"Jersey 25": ["knit", "sport"],
"Jersey 25 Charted": ["knit", "sport"],
"JetBrains Mono": ["code"],
"Jim Nightshade": ["calligraphic"],
"Joan": [],
"Jockey One": ["block"],
"Jolly Lodger": ["1950s", "uneven"],
"Jomhuria": ["arabic", "heavy"],
"Jomolhari": [],
"Josefin Sans": ["thin", "geometric"],
"Josefin Slab": ["slab", "thin"],
"Jost": ["geometric"],
"Joti One": ["fun", "cartoon", "headlines"],
"Jua": ["korean", "round"],
"Judson": ["literacy"],
"Julee": ["handwritten"],
"Julius Sans One": ["caps", "thin"],
"Junge": ["elegant"],
"Jura": ["eurostile"],
"Just Another Hand": ["marker", "brush"],
"Just Me Again Down Here": ["scrawl"],
"K2D": ["modern"],
"Kablammo": ["1990s", "cartoon", "fun", "caps"],
"Kadwa": ["humanist"],
"Kaisei Decol": [],
"Kaisei HarunoUmi": [],
"Kaisei Opti": ["japanese"],
"Kaisei Tokumin": [],
"Kalam": ["handwritten"],
"Kalnia": ["high contrast"],
"Kalnia Glaze": ["gradient", "color", "outline"],
"Kameron": ["slab", "egyptian"],
"Kanit": ["humanist", "futuristic", "loopless"],
"Kantumruy Pro": [],
"Karantina": ["condensed", "hebrew"],
"Karla": ["grotesque"],
"Karla Tamil Inclined": [],
"Karla Tamil Upright": [],
"Karma": [],
"Katibeh": [],
"Kaushan Script": ["brush", "script"],
"Kavivanar": ["slanted", "calligraphic"],
"Kavoon": ["brush"],
"Kay Pho Du": [],
"Kdam Thmor Pro": ["khmer", "square", "modern", "futuristic"],
"Keania One": ["stencil"],
"Kelly Slab": ["slab", "geometric", "1930s"],
"Kenia": ["stencil", "headlines"],
"Khand": ["monolinear"],
"Khmer": ["cambodian", "khmer"],
"Khula": [],
"Kings": ["calligraphic", "blackletter"],
"Kirang Haerang": ["korean", "uneven"],
"Kite One": ["monolinear", "slanted", "whimsical"],
"Kiwi Maru": ["cute"],
"Klee One": ["friendly", "round"],
"Knewave": ["brush"],
"KoHo": ["geometric"],
"Kodchasan": ["kids"],
"Kode Mono": ["code"],
"Koh Santepheap": [],
"Kolker Brush": ["brush"],
"Konkhmer Sleokchher": ["brush", "decorative"],
"Kosugi": [],
"Kosugi Maru": ["japanese"],
"Kotta One": ["slanted", "geometric", "modern"],
"Koulen": ["square", "heavy"],
"Kranky": ["outline"],
"Kreon": ["low contrast"],
"Kristi": ["cursive", "scrawl"],
"Krona One": ["wide"],
"Krub": [],
"Kufam": ["modern", "arabic"],
"Kulim Park": ["low contrast"],
"Kumar One": ["futuristic", "geometric", "wide"],
"Kumar One Outline": ["outline"],
"Kumbh Sans": ["geometric"],
"Kurale": ["curls", "headlines"],
"LXGW WenKai Mono TC": [],
"LXGW WenKai TC": [],
"La Belle Aurore": ["cursive", "love"],
"Labrada": [],
"Lacquer": ["caps", "handwritten"],
"Laila": ["friendly"],
"Lakki Reddy": ["uneven"],
"Lalezar": ["heavy", "1960s", "1970s"],
"Lancelot": ["swash", "french"],
"Langar": [],
"Lateef": ["arabic"],
"Lato": ["friendly", "modern"],
"Lavishly Yours": ["cursive", "romantic"],
"League Gothic": ["gothic", "condensed"],
"League Script": ["cursive", "1920s", "love", "script"],
"League Spartan": ["geometric"],
"Leckerli One": ["cursive"],
"Ledger": [],
"Lekton": ["typewriter", "code"],
"Lemon": ["disco", "brush"],
"Lemonada": ["slanted"],
"Lexend": ["legibility"],
"Lexend Deca": ["legibility"],
"Lexend Exa": ["legibility"],
"Lexend Giga": ["legibility"],
"Lexend Mega": ["wide", "legibility"],
"Lexend Peta": ["wide", "legibility"],
"Lexend Tera": ["wide", "legibility"],
"Lexend Zetta": ["wide", "legibility"],
"Libre Barcode 128": ["barcode"],
"Libre Barcode 128 Text": ["barcode"],
"Libre Barcode 39": ["barcode"],
"Libre Barcode 39 Extended": ["barcode"],
"Libre Barcode 39 Extended Text": ["barcode"],
"Libre Barcode 39 Text": ["barcode"],
"Libre Barcode EAN13 Text": ["barcode"],
"Libre Baskerville": ["transitional"],
"Libre Bodoni": [],
"Libre Caslon Display": ["1950s"],
"Libre Caslon Text": ["1950s"],
"Libre Franklin": ["1900s"],
"Licorice": ["playful"],
"Life Savers": ["1950s"],
"Lilita One": ["heavy", "headlines"],
"Lily Script One": ["cute", "script"],
"Limelight": ["1920s", "art deco", "high contrast"],
"Linden Hill": ["1920s"],
"Linefont": ["lines", "diagram"],
"Lisu Bosa": [],
"Literata": ["high contrast"],
"Liu Jian Mao Cao": ["scrawl", "handwritten"],
"Livvic": ["friendly"],
"Lobster": ["fun"],
"Lobster Two": ["fun"],
"Londrina Outline": ["fun", "outline", "handwritten"],
"Londrina Shadow": ["outline", "shadow", "handwritten"],
"Londrina Sketch": ["outline", "sketch", "handwritten"],
"Londrina Solid": ["fun", "block", "handwritten"],
"Long Cang": ["handwritten"],
"Lora": [],
"Love Light": ["romantic", "hearts"],
"Love Ya Like A Sister": ["kids"],
"Loved by the King": ["scrawl"],
"Lovers Quarrel": ["cursive", "decorative"],
"Luckiest Guy": ["cartoon", "heavy", "1950s"],
"Lugrasimo": ["slanted", "formal"],
"Lumanosimo": ["slanted"],
"Lunasima": [],
"Lusitana": [],
"Lustria": ["round"],
"Luxurious Roman": ["roman"],
"Luxurious Script": ["formal", "slanted"],
"M PLUS 1": ["japanese"],
"M PLUS 1 Code": ["code", "japanese"],
"M PLUS 1p": ["japanese"],
"M PLUS 2": ["japanese"],
"M PLUS Code Latin": ["code"],
"M PLUS Rounded 1c": ["round"],
"Ma Shan Zheng": ["heavy"],
"Macondo": ["fun"],
"Macondo Swash Caps": ["swash", "fun"],
"Mada": ["low contrast"],
"Madimi One": ["round", "geometric"],
"Magra": ["humanist"],
"Maiden Orange": ["1950s", "retro"],
"Maitree": ["legibility"],
"Major Mono Display": ["uneven", "caps", "geometric"],
"Mako": [],
"Mali": ["kids"],
"Mallanna": ["round"],
"Maname": [],
"Mandali": ["round"],
"Manjari": [],
"Manrope": ["round"],
"Mansalva": ["handwritten"],
"Manuale": [],
"Marcellus": ["roman"],
"Marcellus SC": ["small caps", "roman"],
"Marck Script": ["marker", "script"],
"Margarine": ["fuzzy"],
"Marhey": ["arabic", "marker"],
"Markazi Text": [],
"Marko One": ["kids", "whimsical", "literature", "large sizes", "headlines"],
"Marmelad": ["round", "headlines"],
"Martel": [],
"Martel Sans": ["low contrast"],
"Martian Mono": ["code"],
"Marvel": ["condensed", "headlines"],
"Mate": ["vintage"],
"Mate SC": ["small caps"],
"Matemasie": ["fat", "cute", "round", "cartoon"],
"Material Icons": ["icons"],
"Material Icons Outlined": ["outline", "icons"],
"Material Icons Round": ["round", "icons"],
"Material Icons Sharp": ["icons"],
"Material Icons Two Tone": ["icons"],
"Material Symbols Outlined": ["outline", "icons"],
"Material Symbols Rounded": ["round", "icons"],
"Material Symbols Sharp": ["icons"],
"Maven Pro": ["techno"],
"McLaren": ["comic"],
"Mea Culpa": ["formal", "cursive", "elegant"],
"Meddon": ["cursive", "1700s"],
"MedievalSharp": ["engraved"],
"Medula One": ["condensed", "brush"],
"Meera Inimai": [],
"Megrim": ["futuristic"],
"Meie Script": ["vintage", "cursive", "script"],
"Meow Script": ["cursive", "fun"],
"Merienda": ["brush", "headlines"],
"Merriweather": [],
"Merriweather Sans": ["low contrast", "condensed"],
"Metal": ["slanted"],
"Metal Mania": ["rock"],
"Metamorphous": ["roman", "gothic"],
"Metrophobic": ["geometric"],
"Michroma": ["futuristic", "eurostile"],
"Micro 5": ["small sizes"],
"Micro 5 Charted": ["knit", "small sizes"],
"Milonga": ["whimsical", "headlines"],
"Miltonian": ["outline", "tattoo"],
"Miltonian Tattoo": ["tattoo"],
"Mina": ["geometric", "small sizes"],
"Mingzat": [],
"Miniver": ["cursive", "playful"],
"Miriam Libre": ["monolinear"],
"Mirza": ["arabic"],
"Miss Fajardose": ["cursive", "whimsical", "love"],
"Mitr": ["round"],
"Mochiy Pop One": ["japanese", "gothic", "cute", "manga"],
"Mochiy Pop P One": ["japanese", "gothic", "cute", "signage", "manga"],
"Modak": ["disco", "fat"],
"Modern Antiqua": ["whimsical", "antiqua"],
"Moderustic": ["modern"],
"Mogra": ["slanted", "marker"],
"Mohave": ["narrow"],
"Moirai One": ["korean", "outline"],
"Molengo": [],
"Molle": ["cursive", "heavy"],
"Mona Sans": [],
"Monda": ["techno"],
"Monofett": [],
"Monomaniac One": ["round", "heavy", "japanese"],
"Monoton": ["disco", "lines", "outline"],
"Monsieur La Doulaise": ["cursive", "formal", "love"],
"Montaga": ["old style"],
"Montagu Slab": ["slab"],
"MonteCarlo": ["cursive", "formal", "elegant"],
"Montez": ["1960s", "elegant"],
"Montserrat": ["signage", "urban", "vintage"],
"Montserrat Alternates": ["signage", "urban", "vintage"],
"Montserrat Subrayada": ["connected", "signage", "urban", "vintage"],
"Montserrat Underline": ["connected"],
"Moo Lah Lah": ["kids", "fun"],
"Mooli": [],
"Moon Dance": ["slanted", "calligraphic", "handwritten"],
"Moul": ["calligraphic"],
"Moulpali": ["cambodian", "khmer"],
"Mountains of Christmas": ["whimsical", "uneven"],
"Mouse Memoirs": ["cartoon", "1950s", "1960s", "comic"],
"Mr Bedfort": ["cursive", "brush"],
"Mr Dafoe": ["cursive", "brush"],
"Mr De Haviland": ["cursive", "love"],
"Mrs Saint Delafield": ["cursive", "love"],
"Mrs Sheppards": ["brush"],
"Ms Madi": ["monolinear"],
"Mukta": ["monolinear", "humanist"],
"Mukta Mahee": [],
"Mukta Malar": [],
"Mukta Vaani": ["humanist", "monolinear"],
"Mulish": [],
"Murecho": ["japanese"],
"MuseoModerno": ["geometric"],
"My Soul": ["calligraphic"],
"Mynerve": ["handwritten"],
"Mystery Quest": ["1960s", "swirl"],
"NTR": ["round"],
"Nabla": ["game", "square", "gradient", "color"],
"Namdhinggo": [],
"Nanum Brush Script": ["korean", "brush"],
"Nanum Gothic": [],
"Nanum Gothic Coding": ["korean", "code"],
"Nanum Myeongjo": ["korean"],
"Nanum Pen Script": ["korean", "handwritten"],
"Narnoor": [],
"Neonderthaw": ["cursive", "outline"],
"Nerko One": ["marker", "friendly"],
"Neucha": ["fun"],
"Neuton": [],
"New Amsterdam": [],
"New Rocker": ["rock", "tattoo", "blackletter"],
"New Tegomin": ["typewriter"],
"News Cycle": ["gothic"],
"Newsreader": ["legibility"],
"Niconne": ["cursive"],
"Niramit": [],
"Nixie One": ["typewriter"],
"Nobile": ["legibility"],
"Nokora": ["modern", "legibility"],
"Norican": ["cursive"],
"Nosifer": ["halloween"],
"Notable": ["caps", "high contrast"],
"Nothing You Could Do": ["scrawl", "handwritten"],
"Noticia Text": ["slab", "humanist", "small sizes", "hinted"],
"Noto Color Emoji": ["color", "icons"],
"Noto Emoji": ["icons"],
"Noto Kufi Arabic": ["arabic"],
"Noto Music": ["icons"],
"Noto Naskh Arabic": ["arabic"],
"Noto Nastaliq Urdu": [],
"Noto Rashi Hebrew": ["hebrew"],
"Noto Sans": ["hinted"],
"Noto Sans Adlam": [],
"Noto Sans Adlam Unjoined": [],
"Noto Sans Anatolian Hieroglyphs": [],
"Noto Sans Arabic": ["arabic"],
"Noto Sans Armenian": [],
"Noto Sans Avestan": [],
"Noto Sans Balinese": [],
"Noto Sans Bamum": [],
"Noto Sans Bassa Vah": [],
"Noto Sans Batak": [],
"Noto Sans Bengali": [],
"Noto Sans Bhaiksuki": [],
"Noto Sans Brahmi": [],
"Noto Sans Buginese": [],
"Noto Sans Buhid": [],
"Noto Sans Canadian Aboriginal": [],
"Noto Sans Carian": [],
"Noto Sans Caucasian Albanian": [],
"Noto Sans Chakma": [],
"Noto Sans Cham": [],
"Noto Sans Cherokee": [],
"Noto Sans Chorasmian": [],
"Noto Sans Coptic": [],
"Noto Sans Cuneiform": [],
"Noto Sans Cypriot": [],
"Noto Sans Cypro Minoan": [],
"Noto Sans Deseret": [],
"Noto Sans Devanagari": [],
"Noto Sans Display": [],
"Noto Sans Duployan": [],
"Noto Sans Egyptian Hieroglyphs": ["egyptian"],
"Noto Sans Elbasan": [],
"Noto Sans Elymaic": [],