forked from braver/programmingfonts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fonts.json
1480 lines (1480 loc) · 49.5 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": "Although in intention simple and systematic, Agave has lots of quirky character. Distinct, readable and well aligned characters round out a font that should cover all characters in most code use cases if not all languages of the world. The capital Q is particularly cool. Sadly, like a lot of alternatives, it doesn’t offer true bold and italic.",
"license": "MIT",
"ligatures": false,
"name": "Agave",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"regular"
],
"website": "https://github.com/agarick/agave",
"year": 2013
},
"anka-coder": {
"author": "Andrey Makarov",
"ligatures": false,
"name": "Anka/Coder",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"variants": [
"regular",
"condensed",
"narrow"
],
"website": "https://github.com/loafer-mka/anka-coder-fonts",
"year": 2010
},
"anonymous-pro": {
"author": "Mark Simonson",
"description": "Anonymous Pro is an evolution of the original Anonymous, adding lots of character sets and styles. It covers all the characters (624 glyphs), styles and weights anyone will ever need, and with all characters easily distinguishable. For fans of having lots of code on screen, it even features bitmap versions for really tiny characters (without anti-aliasing). It’s a truly professional option with a splash of character.",
"license": "SIL OFL",
"ligatures": false,
"name": "Anonymous Pro",
"rendering": "vector",
"style": "serif",
"zerostyle": "slashed",
"variants": [
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "http://www.marksimonson.com/fonts/view/anonymous-pro",
"year": 2009
},
"apl2741": {
"author": "Adrian Smith",
"ligatures": true,
"name": "APL2741",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"regular"
],
"website": "http://apl385.com/fonts/index.htm",
"year": 2003
},
"apl385": {
"author": "Adrian Smith",
"ligatures": false,
"name": "APL385",
"rendering": "vector",
"style": "sans",
"zerostyle": "empty",
"variants": [
"regular"
],
"website": "http://apl385.com/fonts/index.htm",
"year": 2003
},
"aurulent": {
"author": "Stephen G. Hartke",
"ligatures": false,
"name": "Aurulent Sans Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "empty",
"variants": [
"regular"
],
"website": "http://delubrum.org",
"year": 2007
},
"average": {
"author": "Richard Alexander Hall",
"license": "GNU GPL",
"ligatures": false,
"name": "Average Mono",
"rendering": "vector",
"style": "serif",
"zerostyle": "empty",
"variants": [
"regular"
],
"website": "http://openfontlibrary.org/en/font/average-mono",
"year": 2013
},
"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",
"zerostyle": "empty",
"variants": [
"thin",
"thin-italic",
"light",
"light-italic",
"extrabold",
"extrabold-italic",
"black",
"black-italic",
"extralight",
"extralight-italic",
"medium",
"medium-italic",
"semibold",
"semibold-italic",
"regular",
"italic",
"variable"
],
"website": "https://github.com/displaay/Azeret",
"year": 2020
},
"b612-mono": {
"author": "Nicolas Chauveau, Thomas Paillot and Jonathan Favre-Lamarine",
"license": "SIL OFL",
"ligatures": false,
"name": "B612 Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "empty",
"website": "https://github.com/polarsys/b612",
"year": 2012
},
"bedstead": {
"author": "Ben Harris",
"license": "public domain",
"ligatures": false,
"name": "Bedstead",
"rendering": "vector",
"style": "sans",
"zerostyle": "empty",
"website": "https://bjh21.me.uk/bedstead/",
"year": 2018
},
"bigblue-terminal": {
"author": "VileR",
"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",
"zerostyle": "dotted",
"variants": [
"regular"
],
"website": "https://int10h.org/blog/2015/12/bigblue-terminal-oldschool-fixed-width-font/",
"year": 2015
},
"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",
"zerostyle": "dotted",
"variants": [
"regular"
],
"website": "https://rvklein.me/proj/binchotan/",
"year": 2017
},
"bitstream-vera": {
"author": "Jim Lyles",
"ligatures": false,
"name": "Bitstream Vera Sans Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "http://www.fontsquirrel.com/fonts/Bitstream-Vera-Sans-Mono",
"year": 2002
},
"borg-sans-mono": {
"author": "Marnen E. Laibow-Koser",
"ligatures": true,
"name": "Borg Sans Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "https://github.com/marnen/borg-sans-mono",
"year": 2016
},
"bpmono": {
"author": "Backpacker",
"ligatures": false,
"name": "BPmono",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "http://www.fontsquirrel.com/fonts/BPmono",
"year": 2007
},
"bront-dejavu": {
"author": "Chris Wendt",
"ligatures": false,
"name": "Bront DejaVu Sans Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "https://github.com/chrismwendt/bront",
"year": 2015
},
"bront-ubuntu": {
"author": "Chris Wendt",
"ligatures": false,
"name": "Bront Ubuntu Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "https://github.com/chrismwendt/bront",
"year": 2015
},
"camingocode": {
"author": "Jan Fromm",
"ligatures": false,
"name": "CamingoCode",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "http://www.janfromm.de/typefaces/camingomono/camingocode",
"year": 2013
},
"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. A tribute to the utilitarian beauty of terminals and typewriters, Cartograph excels in code and prose.",
"license": "commercial",
"ligatures": true,
"name": "Cartograph",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"regular",
"italic",
"bold",
"bold-italic",
"demi-bold",
"demi-bold-italic",
"extra-bold",
"extra-bold-italic",
"heavy",
"heavy-italic",
"light",
"light-italic",
"extra-light",
"extra-light-italic",
"thin",
"thin-italic"
],
"website": "https://connary.com/cartograph.html",
"year": 2016
},
"cascadia-code": {
"author": "Aaron Bell",
"ligatures": true,
"name": "Cascadia Code",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "https://github.com/microsoft/cascadia-code",
"year": 2019
},
"code-new-roman": {
"author": "Samiru R.",
"ligatures": false,
"name": "Code New Roman",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "http://sourceforge.net/projects/codenewroman/",
"year": 2014
},
"comic-shanns": {
"author": "Shannon Miwa",
"description": "Like if someone made a dumbass version of Comic Sans that is monospaced.",
"license": "MIT",
"ligatures": false,
"name": "Comic Shanns",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"variants": [
"regular"
],
"website": "https://github.com/shannpersand/comic-shanns",
"year": 2018
},
"consolamono": {
"author": "Wojciech Kalinowski",
"ligatures": false,
"name": "Consolamono",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "http://openfontlibrary.org/en/font/consolamono",
"year": 2011
},
"courier-prime": {
"author": "Alan Dague-Greene",
"license": "SIL OFL",
"ligatures": false,
"name": "Courier Prime",
"rendering": "vector",
"style": "serif",
"zerostyle": "empty",
"website": "https://quoteunquoteapps.com/courierprime",
"year": 2013
},
"courier-prime-code": {
"author": "Alan Dague-Greene",
"description": "Courier Prime by Quote-Unquote Apps is designed to make screenplays (which are traditionally set in Courier at 12 points) more readable. Originally a typewriter font has been transferred to digital several times but all of them have problems. This adaptation is a bit fatter to look as good on displays as on paper. For programming use the Courier Prime Code variant, based on the new sans. Several characters are now more easily distinguished and there is a slasheded zero.",
"license": "SIL OFL",
"ligatures": false,
"name": "Courier Prime Code",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"variants": [
"regular",
"italic"
],
"website": "https://quoteunquoteapps.com/courierprime",
"year": 2013
},
"cousine": {
"author": "Steve Matteson",
"description": "This font was designed by Steve Matteson, more widely known for his work on the Droid fontfaces you’ll find on any Android device. It was created especially for on-screen use, and covers regular, bold and italic in an amazing 2391 Glyphs. Compatibility might be its strongest feat, but it’s a serious font for every day use.",
"license": "Apache",
"ligatures": false,
"name": "Cousine",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "http://www.fontsquirrel.com/fonts/cousine",
"year": 2010
},
"cozette": {
"author": "Slavfox",
"ligatures": false,
"name": "Cozette",
"rendering": "bitmap",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"regular"
],
"website": "https://github.com/slavfox/Cozette",
"year": 2020
},
"cutive": {
"author": "Vernon Adams",
"ligatures": false,
"name": "Cutive Mono",
"rendering": "vector",
"style": "serif",
"zerostyle": "empty",
"website": "http://www.google.com/fonts/specimen/Cutive+Mono",
"year": 2012
},
"d2coding": {
"author": "NAVER Corp.",
"license": "SIL OFL",
"ligatures": true,
"name": "D2Coding",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "https://github.com/naver/d2codingfont",
"year": 2016,
"variants": [
"regular",
"bold"
]
},
"daddytimemono": {
"author": "Jason Stewart",
"license": "SIL OFL",
"ligatures": false,
"name": "DaddyTimeMono",
"rendering": "vector",
"style": "serif",
"zerostyle": "slashed",
"website": "https://github.com/BourgeoisBear/DaddyTimeMono",
"year": 2017,
"variants": [
"regular"
]
},
"dejavu": {
"author": "Deja Vu Project",
"ligatures": false,
"name": "DejaVu Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "https://dejavu-fonts.github.io",
"year": 2004
},
"dm-mono": {
"author": "Colophon Foundry",
"ligatures": false,
"name": "DM Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "https://fonts.google.com/specimen/DM+Mono",
"year": 2020
},
"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",
"zerostyle": "dotted",
"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
},
"droid-sans": {
"author": "Steve Matteson",
"ligatures": false,
"name": "Droid Sans",
"rendering": "vector",
"style": "sans",
"zerostyle": "empty",
"website": "https://fonts.google.com/specimen/Droid+Sans",
"year": 2006
},
"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",
"zerostyle": "dotted",
"website": "https://github.com/ehamiter/Edlo",
"year": 2011
},
"effects-eighty": {
"author": "Peter Hull",
"ligatures": false,
"name": "Effects Eighty",
"rendering": "bitmap",
"style": "sans",
"zerostyle": "empty",
"website": "http://openfontlibrary.org/en/font/effects-eighty",
"year": 2013
},
"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. Beautiful as a coding font; charming in logos, headlines, and print.",
"license": "commercial",
"ligatures": true,
"name": "Ellograph",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"variants": [
"bold",
"bold-italic",
"demibold",
"demibold-italic",
"extrabold",
"extrabold-italic",
"extralight",
"extralight-italic",
"heavy",
"heavy-italic",
"light",
"light-italic",
"regular",
"regular-italic",
"thin",
"thin-italic"
],
"website": "https://connary.com/ellograph.html",
"year": 2020
},
"envy-code-r": {
"author": "Damien Guard",
"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",
"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.",
"ligatures": false,
"name": "Fairfax",
"rendering": "bitmap",
"style": "sans",
"zerostyle": "slashed",
"variants": [
"regular",
"italic",
"bold"
],
"website": "http://www.kreativekorp.com/software/fonts/fairfax.shtml",
"year": 2008
},
"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",
"zerostyle": "slashed",
"website": "http://www.kreativekorp.com/software/fonts/fairfaxhd.shtml",
"year": 2019
},
"fairfax-serif": {
"author": "Rebecca G. Bettencourt",
"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.",
"ligatures": false,
"name": "Fairfax Serif",
"rendering": "bitmap",
"style": "serif",
"zerostyle": "slashed",
"website": "http://www.kreativekorp.com/software/fonts/fairfax.shtml",
"year": 2008
},
"fantasque-sans": {
"author": "Jany Belluz",
"ligatures": true,
"name": "Fantasque Sans Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "https://github.com/belluzj/fantasque-sans",
"year": 2013
},
"fifteen": {
"author": "James Kilfiger",
"ligatures": false,
"name": "Fifteen",
"rendering": "bitmap",
"style": "sans",
"zerostyle": "slashed",
"website": "http://openfontlibrary.org/en/font/fifteen",
"year": 2013
},
"fira": {
"author": "Erik Spiekerman",
"ligatures": false,
"name": "Fira Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "https://github.com/mozilla/Fira",
"year": 2013
},
"firacode": {
"author": "Nikita Prokopov",
"ligatures": true,
"name": "Fira Code",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "https://github.com/tonsky/FiraCode",
"year": 2014
},
"fixedsys": {
"author": "Microsoft",
"ligatures": false,
"name": "Fixedsys",
"rendering": "bitmap",
"style": "sans",
"zerostyle": "slashed",
"website": "http://www.moviecorner.de/en/font-fixedsys-ttf/description",
"year": 1980
},
"fixedsys-ligatures": {
"author": "Kirill Pertsev",
"ligatures": true,
"name": "Fixedsys with Ligatures",
"rendering": "bitmap",
"style": "sans",
"zerostyle": "slashed",
"website": "https://github.com/kika/fixedsys",
"year": 2016
},
"font3270": {
"author": "Ricardo Bánffy",
"ligatures": false,
"name": "3270",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"medium",
"narrow",
"semi-narrow"
],
"website": "https://github.com/rbanffy/3270font",
"year": 2015
},
"generic": {
"author": "Luc Devroye",
"ligatures": false,
"name": "Generic Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "http://luc.devroye.org/fonts-75172.html",
"year": 1980
},
"gintronic": {
"author": "Mark Frömberg",
"license": "commercial",
"ligatures": false,
"name": "Gintronic",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"thin",
"light",
"regular",
"medium",
"bold",
"black",
"thin-italic",
"light-italic",
"italic",
"medium-italic",
"bold-italic",
"black-italic"
],
"website": "https://bboxtype.com/typefaces/Gintronic",
"year": 2016
},
"gnu-freefont": {
"author": "Primož Peterlin, Steve White",
"description": "This isn’t a designer’s font, but an open source community effort to create a single font that has it all. It comes in bold and italic and has the most complete coverage of any font featured on this blog. While an OS will mix and match fonts for missing glyphs FreeFont looks to be a consistent source for anything mankind has ever put into writing. Still, every now and then new releases improve the offering. If you need specific scripts or write a lot of math in LateX, this font will not let you down. It would have been better with a more distinct zero though, it lacks a slashed or dotted to set it apart from the capital o.",
"license": "GNU GPL",
"ligatures": false,
"name": "GNU Freefont",
"rendering": "vector",
"style": "serif",
"zerostyle": "empty",
"variants": [
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "https://www.gnu.org/software/freefont/",
"year": 2002
},
"go-mono": {
"author": "Bigelow & Holmes",
"description": "The new Go font was created especially for readability in the Go programming language. It’s a humanist, slab serif font created by the Bigelow & Holmes foundry (known for Lucida, Luxi Mono and several other fonts that are part of the Mac OS). Go is metrically compatible with Courier, but appears to be much larger for better legibility in smaller sizes. There’s obviously a lot of attention to detail here, and the true italics are especially well done. The font covers WGL4 and it’s a real solid choice all around if you like a serif on your mono font.",
"license": "MIT",
"ligatures": false,
"name": "Go Mono",
"rendering": "vector",
"style": "serif",
"zerostyle": "slashed",
"variants": [
"regular",
"bold",
"italic",
"bold-italic"
],
"website": "https://blog.golang.org/go-fonts",
"year": 2016
},
"hack": {
"author": "Christopher Simpkins",
"ligatures": false,
"name": "Hack",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "https://github.com/chrissimpkins/Hack",
"year": 2015
},
"hasklig": {
"author": "Ian Tuomi",
"ligatures": true,
"name": "Hasklig",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "https://github.com/i-tu/Hasklig",
"year": 2014
},
"hermit": {
"author": "Pablo Caro",
"ligatures": false,
"name": "Hermit",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "https://pcaro.es/p/hermit/",
"year": 2013
},
"ia-writer-mono": {
"author": "Oliver Reichenstein, Bold Monday, Mike Abbink, Paul van der Laan, Pieter van Rosmalen",
"ligatures": false,
"name": "iA Writer Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "https://ia.net/writer/blog/a-typographic-christmas",
"year": 2018
},
"inconsolata": {
"author": "Raph Levien",
"ligatures": false,
"name": "Inconsolata",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "http://www.levien.com/type/myfonts/inconsolata.html",
"year": 2001
},
"inconsolata-g": {
"author": "Leonardo Maffi",
"ligatures": false,
"name": "Inconsolata-g",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "http://leonardo-m.livejournal.com/77079.html",
"year": 2009
},
"input": {
"author": "David Jonathan Ross",
"ligatures": false,
"name": "Input",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "http://input.fontbureau.com",
"year": 2014
},
"iosevka": {
"author": "Belleve Invis",
"ligatures": true,
"name": "Iosevka",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "http://be5invis.github.io/Iosevka/",
"year": 2015
},
"jetbrainsmono": {
"author": "Philipp Nurullin",
"license": "Apache",
"ligatures": true,
"name": "JetBrains Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"bold-italic",
"bold",
"extrabold-italic",
"extrabold",
"italic",
"medium-italic",
"medium",
"regular"
],
"website": "https://www.jetbrains.com/lp/mono/",
"year": 2020
},
"julia-mono": {
"author": "cormullion",
"license": "SIL OFL",
"ligatures": true,
"name": "JuliaMono",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"black",
"bold",
"extrabold",
"light",
"medium",
"regular"
],
"website": "https://juliamono.netlify.app",
"year": 2020
},
"latin-modern": {
"author": "Donald E. Knuth",
"ligatures": false,
"name": "Latin Modern Mono",
"rendering": "vector",
"style": "serif",
"zerostyle": "empty",
"website": "http://www.gust.org.pl/gust/projects/e-foundry/latin-modern",
"year": 2002
},
"league": {
"author": "Tyler Fink",
"description": "League Mono is a new monospaced font that’s clean, practical and sans-serif. Glyphs are well aligned and distinct, featuring a dottedted zero. With about 374 characters it has plenty of language support. Although there are no true italics the 5 weights from ultra light to bold provide a lot of creative options. There is now even a new variable variant for endless possibilities.",
"license": "SIL OFL",
"ligatures": false,
"name": "League Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800"
],
"website": "https://www.tylerfinck.com/leaguemono/",
"year": 2017
},
"lekton": {
"author": "Accademia di Belle Arti di Urbino",
"ligatures": false,
"name": "Lekton",
"rendering": "vector",
"style": "sans",
"zerostyle": "empty",
"website": "http://www.fontsquirrel.com/fonts/lekton",
"year": 2008
},
"liberation": {
"author": "Steve Matteson",
"ligatures": false,
"name": "Liberation Mono",
"rendering": "vector",
"style": "sans",
"zerostyle": "empty",
"website": "https://fedorahosted.org/liberation-fonts/",
"year": 2007
},
"lilex": {
"author": "Mikhael Khrustik",
"ligatures": true,
"name": "Lilex",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"website": "https://github.com/mishamyrt/Lilex",
"license": "SIL OFL",
"year": 2019
},
"lotion": {
"author": "Nina Belikova",
"description": "A free monospace font for programming! There are variants with and without ligatures.",
"license": "SIL OFL",
"ligatures": true,
"name": "Lotion",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"variants": [
"regular"
],
"website": "https://font.nina.coffee",
"year": 2019
},
"luculent": {
"author": "Andrew Kensler",
"description": "Luculent is a narrow typeface with full bold, italic versions, each covering 643 characters. All glyphs are distinct and full of character. Additionally, the italics bring a wonderful twist to what is already an outstanding and unique font.",
"license": "SIL OFL",
"ligatures": false,
"name": "Luculent",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"variants": [
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "http://eastfarthing.com/luculent/",
"year": 2008
},
"luxi": {
"author": "Kris Holmes, Charles Bigelow",
"ligatures": false,
"name": "Luxi Mono",
"rendering": "vector",
"style": "serif",
"zerostyle": "empty",
"website": "http://www.fontsquirrel.com/fonts/Luxi-Mono",
"year": 2001
},
"mensch": {
"author": "Robey Pointer",
"ligatures": false,
"name": "Mensch",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"regular"
],
"website": "https://robey.lag.net/2010/06/21/mensch-font.html",
"year": 2010
},
"meslo": {
"author": "André Berg",
"ligatures": false,
"name": "Meslo",
"rendering": "vector",
"style": "sans",
"zerostyle": "slashed",
"website": "https://github.com/andreberg/Meslo-Font",
"year": 2010
},
"monoflow": {
"author": "Prof. Hans R. Heitmann, Johannes Ammon",
"description": "A monospace typeface with unique character and beautiful spacing.",
"license": "commercial",
"ligatures": false,
"name": "Monoflow",
"rendering": "vector",
"style": "sans",
"zerostyle": "dotted",
"variants": [
"light",
"light-italic",
"medium",
"medium-italic",
"regular",
"italic",
"bold",
"bold-italic"
],
"website": "https://finaltype.de/en/projects/monoflow",
"year": 2020
},
"monofur": {
"author": "Tobias Benjamin Köhler",
"ligatures": false,
"name": "Monofur",
"rendering": "vector",
"style": "sans",