-
Notifications
You must be signed in to change notification settings - Fork 93
/
fonts.json
2232 lines (2232 loc) · 80.2 KB
/
fonts.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
{
"agave": {
"author": "agaric",
"description": "A succulent monospace programming font.",
"license": "MIT",
"ligatures": false,
"name": "Agave",
"rendering": "vector",
"style": "sans",
"variants": [
"regular"
],
"website": "https://github.com/agarick/agave",
"year": 2013,
"zerostyle": "dotted"
},
"anka-coder": {
"author": "Andrey Makarov",
"description": "The Anka/Coder family is a monospaced, courier-width (60% of height; em size 2048x1229) font that can be used for source code, terminal windows etc.",
"license": "SIL OFL",
"ligatures": false,
"name": "Anka/Coder",
"rendering": "vector",
"style": "sans",
"variants": "regular, bold, italic, bold-italic; in regular, condensed and narrow widths.",
"website": "https://github.com/loafer-mka/anka-coder-fonts",
"year": 2010,
"zerostyle": "slashed"
},
"anonymous-pro": {
"author": "Mark Simonson",
"description": "Anonymous Pro is an evolution of the original Anonymous, adding lots of character sets and styles.",
"license": "SIL OFL",
"ligatures": false,
"name": "Anonymous Pro",
"rendering": "vector",
"style": "serif",
"variants": [
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "http://www.marksimonson.com/fonts/view/anonymous-pro",
"year": 2009,
"zerostyle": "slashed"
},
"apl2741": {
"author": "Adrian Smith",
"description": "This was hand digitised as a PostScript Type-3 font from an original 2741 golf-ball salvaged from an IBM selectric typewriter.",
"license": "public domain",
"ligatures": true,
"name": "APL2741",
"rendering": "vector",
"style": "sans",
"variants": [
"regular"
],
"website": "http://apl385.com/fonts/index.htm",
"year": 2003,
"zerostyle": "dotted"
},
"apl385": {
"author": "Adrian Smith",
"description": "Developed with all APL software vendors in the late 1980s and enhanced as required with new characters to meet interpreter updates. Thanks to Dave Liebtag (IBM), Richard Nabavi (APL.68000) and all at Dyalog APL for their support.",
"license": "public domain",
"ligatures": false,
"name": "APL385",
"rendering": "vector",
"style": "sans",
"variants": [
"regular"
],
"website": "http://apl385.com/fonts/index.htm",
"year": 2003,
"zerostyle": "empty"
},
"audio-link": {
"author": "llealloo",
"description": "AudioLink is a system that analyzes and processes in-world audio into many different highly reactive data streams and exposes the data to VRChat Udon, world shaders, and avatar shaders.",
"license": "SIL OFL",
"ligatures": false,
"name": "AudioLink Mono",
"rendering": "vector",
"style": "sans",
"variants": [
"regular"
],
"website": "https://audiolink.dev",
"year": 2022,
"zerostyle": "slashed"
},
"aurulent": {
"author": "Stephen G. Hartke",
"description": "Aurulent Sans is a humanist sans serif intended to be used as an interface font.",
"license": "SIL OFL",
"ligatures": false,
"name": "Aurulent Sans Mono",
"rendering": "vector",
"style": "sans",
"variants": [
"regular"
],
"website": "https://www.fontsquirrel.com/fonts/Aurulent-Sans-Mono",
"year": 2007,
"zerostyle": "empty"
},
"average": {
"author": "Richard Alexander Hall",
"description": "AverageMono is an average of thirteen different fonts which are all derivatives of the public domain Courier typeface.",
"license": "GNU GPL",
"ligatures": false,
"name": "Average Mono",
"rendering": "vector",
"style": "serif",
"variants": [
"regular"
],
"website": "http://openfontlibrary.org/en/font/average-mono",
"year": 2013,
"zerostyle": "empty"
},
"azeret": {
"author": "Displaay",
"description": "The story of the typeface began with a draft that was driven by an exploration of OCR fonts, past and futuristic operating systems, various interfaces and the nineties.",
"license": "SIL OFL",
"ligatures": false,
"name": "Azeret Mono",
"rendering": "vector",
"style": "sans",
"variants": "A variable font, available in various weights.",
"website": "https://github.com/displaay/Azeret",
"year": 2020,
"zerostyle": "empty"
},
"b612-mono": {
"author": "Nicolas Chauveau, Thomas Paillot and Jonathan Favre-Lamarine",
"description": "B612 is an highly legible open source font family designed and tested to be used on aircraft cockpit screens.",
"license": "SIL OFL",
"ligatures": false,
"name": "B612 Mono",
"rendering": "vector",
"style": "sans",
"website": "https://github.com/polarsys/b612",
"year": 2012,
"zerostyle": "empty"
},
"bedstead": {
"author": "Ben Harris",
"description": "Bedstead is a family of outline fonts based on the characters produced by the Mullard SAA5050 series of Teletext Character Generators.",
"license": "public domain",
"ligatures": false,
"name": "Bedstead",
"rendering": "vector",
"style": "sans",
"website": "https://bjh21.me.uk/bedstead/",
"year": 2018,
"zerostyle": "empty"
},
"bigblue-terminal": {
"author": "VileR",
"bitmap size": 12,
"description": "It follows the metrics and dimensions of Windows' old Terminal font (at the 9pt/12px size), but the appearance is closer to the classic IBM PC text mode character sets.",
"license": "CC BY-SA 4.0",
"ligatures": false,
"name": "BigBlue Terminal",
"rendering": "bitmap",
"style": "serif",
"variants": [
"regular"
],
"website": "https://int10h.org/blog/2015/12/bigblue-terminal-oldschool-fixed-width-font/",
"year": 2015,
"zerostyle": "dotted"
},
"binchotan-sharp": {
"author": "Rabbit Viceroy Klein",
"description": "A fixed-width typeface. Horizontal metrics compatible with CJK console fonts. Small size legibile.",
"license": "SIL OFL",
"ligatures": false,
"name": "Binchotan Sharp",
"rendering": "vector",
"style": "sans",
"variants": [
"regular"
],
"website": "https://rvklein.me/proj/binchotan/",
"year": 2017,
"zerostyle": "dotted"
},
"bitstream-vera": {
"author": "Jim Lyles",
"description": "Vera is a digital typeface (computer font) superfamily with a liberal license. It was designed by Jim Lyles from the now-defunct Bitstream Inc. type foundry.",
"license": "Bitstream Vera",
"ligatures": false,
"name": "Bitstream Vera Sans Mono",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "http://www.fontsquirrel.com/fonts/Bitstream-Vera-Sans-Mono",
"year": 2002,
"zerostyle": "dotted"
},
"borg-sans-mono": {
"author": "Marnen E. Laibow-Koser",
"description": "Droid Sans Mono Slashed + Hasklig-style ligatures!",
"license": "Apache",
"ligatures": true,
"name": "Borg Sans Mono",
"rendering": "vector",
"style": "sans",
"website": "https://github.com/marnen/borg-sans-mono",
"year": 2016,
"zerostyle": "slashed"
},
"bpmono": {
"author": "Backpacker",
"description": "A monospaced typeface suitable for technical texts and/or programming",
"license": "CC BY-ND 3.0",
"ligatures": false,
"name": "BPmono",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"italic",
"bold"
],
"website": "http://www.fontsquirrel.com/fonts/BPmono",
"year": 2007,
"zerostyle": "slashed"
},
"bront-dejavu": {
"author": "Chris Wendt",
"description": "Bront is a collection of tweaked fonts geared towards programming.",
"license": "Bitstream Vera",
"ligatures": false,
"name": "Bront DejaVu Sans Mono",
"rendering": "vector",
"style": "sans",
"website": "https://github.com/chrismwendt/bront",
"year": 2015,
"zerostyle": "slashed"
},
"bront-ubuntu": {
"author": "Chris Wendt",
"description": "Bront is a collection of tweaked fonts geared towards programming.",
"license": "none",
"ligatures": false,
"name": "Bront Ubuntu Mono",
"rendering": "vector",
"style": "sans",
"website": "https://github.com/chrismwendt/bront",
"year": 2015,
"zerostyle": "slashed"
},
"camingocode": {
"author": "Jan Fromm",
"description": "Based on CamingoMono, but has several specially drawn glyphs that work well at small sizes.",
"license": "CC BY-ND 3.0",
"ligatures": false,
"name": "CamingoCode",
"rendering": "vector",
"style": "sans",
"website": "http://www.janfromm.de/typefaces/camingomono/camingocode",
"year": 2013,
"zerostyle": "slashed"
},
"cartograph": {
"author": "Connary Fagen",
"description": "A monospaced typeface with character and warmth, Cartograph is a handsome font family featuring a lush, cursive italic, code-friendly ligatures, and a proportional set accessible via OpenType.",
"license": "commercial",
"ligatures": true,
"name": "Cartograph",
"rendering": "vector",
"style": "sans",
"variants": "8 weights and various alternatives via OpenType sets, including ligatures.",
"website": "https://connary.com/cartograph.html",
"year": 2016,
"zerostyle": "dotted"
},
"cascadia-code": {
"author": "Aaron Bell",
"description": "This is a fun, new monospaced font that includes programming ligatures and is designed to enhance the modern look and feel of the Windows Terminal.",
"license": "SIL OFL",
"ligatures": true,
"name": "Cascadia Code",
"rendering": "vector",
"style": "sans",
"variants": "6 weights and various alternatives via OpenType sets, including slashed zeroes and cursive italics.",
"website": "https://github.com/microsoft/cascadia-code",
"year": 2019,
"zerostyle": "dotted"
},
"chivo": {
"author": "Héctor Gatti & Omnibus-Type Team",
"description": "Chivo (‘goat’ in Spanish) is the first Omnibus-Type neo-grotesque typeface family.",
"license": "SIL OFL",
"ligatures": false,
"name": "Chivo Mono",
"rendering": "vector",
"style": "sans",
"variants": "A variable font ranging from Thin to Black with matching Italics",
"website": "https://www.omnibus-type.com/variable-fonts/#chivo-mono",
"year": 2022,
"zerostyle": "empty"
},
"cm-unicode": {
"author": "Donald E. Knuth",
"description": "Computer Modern is the original family of typefaces used by the typesetting program TeX.",
"license": "SIL OFL",
"ligatures": false,
"name": "Computer Modern Unicode Typewriter",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"italic",
"oblique",
"bold",
"bold-italic",
"light",
"light-italic"
],
"website": "https://cm-unicode.sourceforge.io",
"year": 1992,
"zerostyle": "empty"
},
"code-new-roman": {
"author": "Samiru R.",
"description": "Code New Roman is aimed for use in programming environments and other circumstances where a monospaced font is specified.",
"license": "SIL OFL",
"ligatures": false,
"name": "Code New Roman",
"rendering": "vector",
"style": "sans",
"website": "https://fontlibrary.org/en/font/code-new-roman",
"year": 2014,
"zerostyle": "slashed"
},
"comic-mono": {
"author": "Thai Pangsakulyanont",
"description": "A legible monospace font… the very typeface you’ve been trained to recognize since childhood. This font is a fork of Shannon Miwa’s Comic Shanns.",
"license": "MIT",
"ligatures": false,
"name": "Comic Mono",
"rendering": "vector",
"style": "sans",
"variants": [
"bold",
"regular"
],
"website": "https://dtinth.github.io/comic-mono-font/",
"year": 2019,
"zerostyle": "slashed"
},
"comic-shanns": {
"author": "Shannon Miwa",
"description": "Do you lie awake every night dreaming about a world where you could write your code in Comic Sans where it looks just as beautiful as on your dear presentations?",
"license": "MIT",
"ligatures": false,
"name": "Comic Shanns",
"rendering": "vector",
"style": "sans",
"variants": [
"regular"
],
"website": "https://github.com/shannpersand/comic-shanns",
"year": 2018,
"zerostyle": "slashed"
},
"commit-mono": {
"author": "Eigil Nikolajsen",
"description": "Commit Mono is an anonymous and neutral coding font focused on creating a better reading experience.",
"license": "SIL OFL",
"ligatures": false,
"name": "Commit Mono",
"rendering": "vector",
"style": "sans",
"variants": "A download can be customized with various of weights, ligatures, dotted or slashed zeroes, and other styles.",
"website": "https://commitmono.com",
"year": 2023,
"zerostyle": "slashed"
},
"consolamono": {
"author": "Wojciech Kalinowski",
"description": "“It's my old unfinished font. I made some sketches of several glyphs 5-6 years ago, and I never finished this. Now I made missing glyphs, did changes of some glyphs and turn into monospaced font.”",
"license": "SIL OFL",
"ligatures": false,
"name": "Consolamono",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"bold"
],
"website": "http://openfontlibrary.org/en/font/consolamono",
"year": 2011,
"zerostyle": "slashed"
},
"courier-prime": {
"author": "Alan Dague-Greene",
"description": "We set out to make the best damn Courier ever.",
"license": "SIL OFL",
"ligatures": false,
"name": "Courier Prime",
"rendering": "vector",
"style": "serif",
"variants": [
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "https://quoteunquoteapps.com/courierprime",
"year": 2013,
"zerostyle": "empty"
},
"courier-prime-code": {
"author": "Alan Dague-Greene",
"description": "The goodness of Courier Prime without the serifs. Code-optimized for programmers",
"license": "SIL OFL",
"ligatures": false,
"name": "Courier Prime Code",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"italic"
],
"website": "https://quoteunquoteapps.com/courierprime",
"year": 2013,
"zerostyle": "slashed"
},
"courier-prime-sans": {
"author": "Alan Dague-Greene",
"description": "The goodness of Courier Prime without the serifs.",
"license": "SIL OFL",
"ligatures": false,
"name": "Courier Prime Sans",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "https://quoteunquoteapps.com/courierprime",
"year": 2013,
"zerostyle": "empty"
},
"cousine": {
"author": "Steve Matteson",
"description": "An innovative, refreshing sans serif design that is metrically compatible with Courier New.",
"license": "Apache",
"ligatures": false,
"name": "Cousine",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "http://www.fontsquirrel.com/fonts/cousine",
"year": 2010,
"zerostyle": "dotted"
},
"cozette": {
"author": "Slavfox",
"bitmap size": 12,
"description": "Cozette is a 6x13px bitmap font based on Dina, which itself is based on Proggy. It's also heavily inspired by Creep.",
"license": "MIT",
"ligatures": false,
"name": "Cozette",
"rendering": "bitmap",
"style": "sans",
"variants": [
"regular"
],
"website": "https://github.com/slavfox/Cozette",
"year": 2020,
"zerostyle": "dotted"
},
"cutive": {
"author": "Vernon Adams",
"description": "The design of Cutive Mono is based on a number of classic typewriter typefaces, in particular the faces of IBM's Executive, and the older Smith-Premier.",
"license": "SIL OFL",
"ligatures": false,
"name": "Cutive Mono",
"rendering": "vector",
"style": "serif",
"website": "http://www.google.com/fonts/specimen/Cutive+Mono",
"year": 2012,
"zerostyle": "empty"
},
"d2coding": {
"author": "NAVER Corp.",
"description": " 나눔바른고딕을 바탕으로 개발자의 코딩을 위해 가독성 및 유사 문자간 변별력 뿐만 아니라 디자인적으로 한글과의 조화를 고려해 최적화시킨 글꼴입니다.",
"license": "SIL OFL",
"ligatures": true,
"name": "D2Coding",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"bold"
],
"website": "https://github.com/naver/d2codingfont",
"year": 2016,
"zerostyle": "slashed"
},
"daddytimemono": {
"author": "Jason Stewart",
"description": "A monospaced font for programmers and other terminal groupies.",
"license": "SIL OFL",
"ligatures": false,
"name": "DaddyTimeMono",
"rendering": "vector",
"style": "serif",
"variants": [
"regular"
],
"website": "https://github.com/BourgeoisBear/DaddyTimeMono",
"year": 2017,
"zerostyle": "slashed"
},
"dejavu": {
"author": "Deja Vu Project",
"description": "The DejaVu fonts are a font family based on the Vera Fonts. Its purpose is to provide a wider range of characters while maintaining the original look and feel.",
"license": "Bitstream Vera",
"ligatures": false,
"name": "DejaVu Mono",
"rendering": "vector",
"style": "sans",
"website": "https://dejavu-fonts.github.io",
"year": 2004,
"zerostyle": "dotted"
},
"departure-mono": {
"author": "Helena Zhang",
"description": "Departure Mono is a monospaced pixel font inspired by the constraints of early command-line and graphical user interfaces, the tiny pixel fonts of the late 90s/early 00s, and sci-fi concepts from film and television.",
"license": "SIL OFL",
"ligatures": false,
"name": "Departure Mono",
"rendering": "vector",
"style": "sans",
"variants": [
"regular"
],
"website": "https://departuremono.com/",
"year": 2024,
"zerostyle": "slashed"
},
"dm-mono": {
"author": "Colophon Foundry",
"description": "DM Mono is a three weight, three style family designed for DeepMind. DM Mono was loosely based off of DM Sans, with a reduction in contrast and less geometric proportions.",
"license": "SIL OFL",
"ligatures": false,
"name": "DM Mono",
"rendering": "vector",
"style": "sans",
"website": "https://fonts.google.com/specimen/DM+Mono",
"year": 2020,
"zerostyle": "slashed"
},
"dpsdbeyond": {
"author": "University of the Aegean",
"description": "DPSDbeyond is the result of an attempt by the students of the University of the Aegean, to design a typeface in a collaborative way, during a one-day workshop.",
"license": "SIL OFL",
"ligatures": false,
"name": "DPSDbeyond",
"rendering": "vector",
"style": "sans",
"variants": [
"regular"
],
"website": "https://backpacker.gr/fonts/11",
"year": 2011,
"zerostyle": "dotted"
},
"drafting": {
"author": "Owen Earl",
"description": "An ode to our past. A celebration of inconsistencies.",
"license": "SIL OFL",
"ligatures": false,
"name": "Drafting* Mono",
"rendering": "vector",
"style": "serif",
"variants": [
"thin",
"thin-italic",
"extralight",
"extralight-italic",
"light",
"light-italic",
"medium",
"medium-italic",
"semibold",
"semibold-italic",
"bold",
"bold-italic",
"regular",
"italic",
"variable"
],
"website": "https://indestructibletype.com/Drafting/",
"year": 2021,
"zerostyle": "dotted"
},
"droid-sans": {
"author": "Steve Matteson",
"description": "A font family first released in 2007 and created by Ascender Corporation for use by the Open Handset Alliance platform Android.",
"license": "Apache",
"ligatures": false,
"name": "Droid Sans",
"rendering": "vector",
"style": "sans",
"website": "https://fonts.google.com/specimen/Droid+Sans",
"year": 2006,
"zerostyle": "empty"
},
"edlo": {
"author": "Eric Hamiter",
"description": "Edlo is a modified version of Stephen G. Hartke’s Aurulent Sans, which I thought was beautiful, but hazardous for programming because the similarities between zeroes and ohs and ones and els were too close for comfort.",
"license": "SIL OFL",
"ligatures": false,
"name": "Edlo",
"rendering": "vector",
"style": "sans",
"website": "https://github.com/ehamiter/Edlo",
"year": 2011,
"zerostyle": "dotted"
},
"effects-eighty": {
"author": "Peter Hull",
"bitmap size": 16,
"description": "An homage to the dot-matrix printers of the 1980s.",
"license": "SIL OFL",
"ligatures": false,
"name": "Effects Eighty",
"rendering": "bitmap",
"style": "sans",
"website": "http://openfontlibrary.org/en/font/effects-eighty",
"year": 2013,
"zerostyle": "empty"
},
"eirian": {
"author": "GGBotNet",
"description": "GGBotNet develops, designs and distributes free fonts.",
"license": "SIL OFL",
"ligatures": false,
"name": "Eirian",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"italic"
],
"website": "https://ggbot.itch.io/eirian-font",
"year": 2022,
"zerostyle": "dotted"
},
"ellograph": {
"author": "Connary Fagen",
"description": "A friendly monospaced typeface with a soft, rounded construction and striking cursive italics. A generous x-height and short descenders allow for even, flowing lines of text.",
"license": "commercial",
"ligatures": true,
"name": "Ellograph",
"rendering": "vector",
"style": "sans",
"variants": "8 weights, italics, and additional OpenType variations.",
"website": "https://connary.com/ellograph.html",
"year": 2020
},
"envy-code-b": {
"author": "Damien Guard",
"bitmap size": 10,
"description": "It’s been a long time coming but finally – a TrueType conversion of my programming font Envy Code B.",
"license": "none",
"ligatures": false,
"name": "Envy Code B",
"rendering": "bitmap",
"style": "sans",
"zerostyle": "slashed",
"website": "https://damieng.com/blog/2006/11/06/envy-code-b-font-available-in-ttf-format/",
"year": 2006
},
"envy-code-r": {
"author": "Damien Guard",
"description": "[The] new box-drawing, shading and symbols make Envy Code R a great font for the command-prompt.",
"license": "SIL OFL",
"ligatures": false,
"name": "Envy Code R",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "https://damieng.com/blog/2008/05/26/envy-code-r-preview-7-coding-font-released",
"year": 2008
},
"fairfax": {
"author": "Rebecca G. Bettencourt",
"bitmap size": 12,
"description": "Fairfax is a 6x12 bitmap font for terminals, text editors, IDEs, etc. It supports many scripts and a large number of Unicode blocks as well as constructed scripts as encoded in the Under-ConScript Unicode Registry, pseudographics and semigraphics, and tons of private use characters.",
"license": "SIL OFL",
"ligatures": false,
"name": "Fairfax",
"rendering": "bitmap",
"style": "sans",
"variants": [
"regular",
"italic",
"bold"
],
"website": "http://www.kreativekorp.com/software/fonts/fairfax.shtml",
"year": 2008,
"zerostyle": "slashed"
},
"fairfax-hd": {
"author": "Rebecca G. Bettencourt",
"description": "Fairfax HD is a halfwidth scalable monospace font for terminals, text editors, IDEs, etc. It supports many scripts and a large number of Unicode blocks as well as constructed scripts as encoded in the Under-ConScript Unicode Registry, pseudographics and semigraphics, and tons of private use characters.",
"license": "SIL OFL",
"ligatures": false,
"name": "Fairfax HD",
"rendering": "vector",
"style": "sans",
"website": "http://www.kreativekorp.com/software/fonts/fairfaxhd.shtml",
"year": 2019,
"zerostyle": "slashed"
},
"fairfax-hd-hax": {
"author": "Rebecca G. Bettencourt",
"description": "Fairfax Hax HD adds ligatures for programming, which is apparently a thing, to Fairfax HD: a halfwidth scalable monospace font for terminals, text editors, IDEs, etc. ",
"license": "SIL OFL",
"ligatures": true,
"name": "Fairfax Hax HD",
"rendering": "vector",
"style": "sans",
"website": "http://www.kreativekorp.com/software/fonts/fairfaxhd.shtml",
"year": 2019,
"zerostyle": "slashed"
},
"fairfax-serif": {
"author": "Rebecca G. Bettencourt",
"bitmap size": 12,
"description": "Fairfax is a 6x12 bitmap font for terminals, text editors, IDEs, etc. It supports many scripts and a large number of Unicode blocks as well as constructed scripts as encoded in the Under-ConScript Unicode Registry, pseudographics and semigraphics, and tons of private use characters.",
"license": "SIL OFL",
"ligatures": false,
"name": "Fairfax Serif",
"rendering": "bitmap",
"style": "serif",
"website": "http://www.kreativekorp.com/software/fonts/fairfax.shtml",
"year": 2008,
"zerostyle": "slashed"
},
"fantasque-sans": {
"author": "Jany Belluz",
"description": "A programming font, designed with functionality in mind, and with some wibbly-wobbly handwriting-like fuzziness that makes it unassumingly cool.",
"license": "SIL OFL",
"ligatures": true,
"name": "Fantasque Sans Mono",
"rendering": "vector",
"style": "sans",
"website": "https://github.com/belluzj/fantasque-sans",
"year": 2013,
"zerostyle": "slashed"
},
"fifteen": {
"author": "James Kilfiger",
"bitmap size": 15,
"description": "It is designed to be narrow, and allow 132 columns to be comfortably fitted on a screen.",
"license": "SIL OFL",
"ligatures": false,
"name": "Fifteen",
"rendering": "bitmap",
"style": "sans",
"website": "http://openfontlibrary.org/en/font/fifteen",
"year": 2013,
"zerostyle": "slashed"
},
"fira": {
"author": "Erik Spiekerman",
"description": "Mozilla's new typeface, used in Firefox OS",
"license": "SIL OFL",
"ligatures": false,
"name": "Fira Mono",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"medium",
"bold"
],
"website": "https://github.com/mozilla/Fira",
"year": 2013,
"zerostyle": "dotted"
},
"firacode": {
"author": "Nikita Prokopov",
"description": "Free monospaced font with programming ligatures.",
"license": "SIL OFL",
"ligatures": true,
"name": "Fira Code",
"rendering": "vector",
"style": "sans",
"variants": [
"light",
"regular",
"medium",
"semibold",
"bold",
"retina"
],
"website": "https://github.com/tonsky/FiraCode",
"year": 2014,
"zerostyle": "slashed"
},
"fixedsys": {
"author": "Travis Owens",
"bitmap size": 16,
"description": "The oldest font in Microsoft Windows, and was the system font in Windows 1.0 and 2.0, where it was simply named System.",
"license": "GNU GPL",
"ligatures": false,
"name": "Fixedsys",
"rendering": "bitmap",
"style": "sans",
"website": "https://web.archive.org/web/20160316105117/http://www.moviecorner.de/en/font-fixedsys-ttf/description",
"year": 1984,
"zerostyle": "slashed"
},
"fixedsys-ligatures": {
"author": "Darien Valentine",
"bitmap size": 16,
"description": "Fixedsys Excelsior font with programming ligatures.",
"license": "public domain",
"ligatures": true,
"name": "Fixedsys with Ligatures",
"rendering": "bitmap",
"style": "sans",
"website": "https://github.com/kika/fixedsys",
"year": 2016,
"zerostyle": "slashed"
},
"font3270": {
"author": "Ricardo Bánffy",
"description": "This font is derived from the x3270 font, which, in turn, was translated from the one in Georgia Tech's 3270tool, which was itself hand-copied from a 3270 series terminal.",
"ligatures": false,
"name": "3270",
"rendering": "vector",
"style": "sans",
"variants": [
"medium",
"narrow",
"semi-narrow"
],
"website": "https://github.com/rbanffy/3270font",
"year": 2015,
"zerostyle": "dotted"
},
"fragment-mono": {
"author": "Wei H",
"description": "Fragment Mono is a monospaced coding version of Helvetica created by modifying and extending Nimbus Sans by URW Design Studio.",
"license": "SIL OFL",
"ligatures": true,
"name": "Fragment Mono",
"rendering": "vector",
"style": "sans",
"variants": [
"regular",
"italic"
],
"website": "https://github.com/weiweihuanghuang/fragment-mono",
"year": 2022,
"zerostyle": "slashed"
},
"generic": {
"author": "Luc Devroye",
"description": "A user comments: “It's functional on non-offensive, but its limited coverage and lack of bold and italics hold it back. It's hard to fault its basic design though.”",
"license": "SIL OFL",
"ligatures": false,
"name": "Generic Mono",
"rendering": "vector",
"style": "sans",
"website": "http://luc.devroye.org/fonts-75172.html",
"year": 1980,
"zerostyle": "slashed"
},
"geist": {
"author": "Vercel",
"description": "Geist is designed for legibility and simplicity. It is a modern, geometric typeface that is based on the principles of classic Swiss typography.",
"license": "SIL OFL",
"ligatures": true,
"name": "Geist",
"rendering": "vector",
"style": "sans",
"variants": "A variable font, delivered in 9 weights but no true italics.",
"website": "https://vercel.com/font/mono",
"year": 2023,
"zerostyle": "slashed"
},
"gintronic": {
"author": "Mark Frömberg",
"description": "Gintronic’s gentle appearance makes it a delight to work constantly with code.",
"license": "commercial",
"ligatures": false,
"name": "Gintronic",
"rendering": "vector",
"style": "sans",
"variants": [
"thin",
"light",
"regular",
"medium",
"bold",
"black",
"thin-italic",
"light-italic",
"italic",
"medium-italic",
"bold-italic",
"black-italic"
],
"website": "https://markfromberg.com/projects/gintronic/",
"year": 2016,
"zerostyle": "dotted"
},
"gnu-freefont": {
"author": "Primož Peterlin, Steve White",
"description": "GNU FreeFont is a free family of scalable outline fonts, suitable for general use on computers and for desktop publishing. It is Unicode-encoded for compatibility with all modern operating systems.",
"license": "GNU GPL",
"ligatures": false,
"name": "GNU Freefont",
"rendering": "vector",
"style": "serif",
"variants": [
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "https://www.gnu.org/software/freefont/",
"year": 2002,
"zerostyle": "empty"
},
"go-mono": {
"author": "Bigelow & Holmes",
"description": "The Go font was created especially for readability in the Go programming language. It’s a humanist, slab serif font created by the famous Bigelow & Holmes foundry.",
"license": "MIT",
"ligatures": false,
"name": "Go Mono",
"rendering": "vector",
"style": "serif",
"variants": [
"regular",
"bold",
"italic",
"bold-italic"
],
"website": "https://blog.golang.org/go-fonts",
"year": 2016,
"zerostyle": "slashed"
},
"gohufont-11": {
"author": "Hugo Chargois",
"bitmap size": 11,
"description": "Gohufont is a monospace bitmap font well suited for programming and terminal use. It is intended to be very legible and offers very discernable glyphs for all characters, including signs and symbols. In 11 or 14 pixels.",
"license": "WTFPL",
"ligatures": false,
"name": "Gohufont 11",
"rendering": "bitmap",
"style": "sans",
"variants": [
"regular"
],
"website": "https://font.gohu.org",
"year": 2010,
"zerostyle": "slashed"
},
"gohufont-14": {
"author": "Hugo Chargois",
"bitmap size": 14,
"description": "Gohufont is a monospace bitmap font well suited for programming and terminal use. It is intended to be very legible and offers very discernable glyphs for all characters, including signs and symbols. In 11 or 14 pixels.",
"license": "WTFPL",
"ligatures": false,
"name": "Gohufont 14",
"rendering": "bitmap",
"style": "sans",
"variants": [
"regular"
],
"website": "https://font.gohu.org",
"year": 2010,
"zerostyle": "slashed"