-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
private-build-plans.toml
1031 lines (859 loc) · 26.7 KB
/
private-build-plans.toml
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
### Compact + Sans
### ==============
# Iosevka Comfy main style
# ------------------------
[buildPlans.iosevka-comfy] # <iosevka-comfy> is your plan name
family = "Iosevka Comfy" # Font menu family name
spacing = "normal" # Optional; Values: `normal`, `quasi-proportional`, `quasi-proportional-extension-only`, `term`, `fontconfig-mono`, or `fixed`
serifs = "sans" # Optional; Values: `sans` or `slab`
export-glyph-names = false # Set this to true for ligature support in Kitty (increased file size)
[buildPlans.iosevka-comfy.variants.design]
cv03 = 3 # 3 with double arc
cv05 = 5 # 5 with arched middle part and no serifs
cv07 = 1 # 7 with straight stem and no serifs
cv08 = 3 # 8 with asymmetric crossing middle part
cv10 = 26 # 0 with oval shape and mid slash separated from the outline
cv11 = 1 # A cap straight with no serifs
cv12 = 1 # B cap symmetric with no serifs
cv13 = 1 # C cap serifless
cv14 = 6 # D cap curly with top and bottom serif (without serifs TODO reads like TOOO at small point sizes)
cv15 = 1 # E cap serifless
cv16 = 1 # F cap serifless
cv17 = 2 # G cap with toothed body, inward hook terminal, and no top serif
cv18 = 1 # H cap serifless
cv19 = 2 # I cap with long serifs
cv20 = 2 # J cap with top serif and curly hook
cv21 = 6 # K cap curly with no serifs
cv22 = 1 # L cap serifless
cv23 = 7 # M cap with short middle leg and slanted sides
cv24 = 1 # N cap symmetric with no serifs
cv25 = 1 # P cap straight with no serifs
cv26 = 4 # Q cap with tail crossing the ring
cv27 = 1 # R cap straight with no serifs
cv28 = 1 # S cap serifless
cv29 = 1 # T cap serifless
cv30 = 12 # U cap rounded bottom with no serifs
cv31 = 1 # V cap straight with no serifs
cv32 = 1 # W cap straight with short middle part and no serifs
cv33 = 1 # X cap straight with no serifs
cv34 = 1 # Y cap straight with no serifs
cv35 = 1 # Z cap straight with no serifs
cv38 = 1 # c serifless
cv43 = 1 # h straight with no serifs
cv44 = 10 # i with top serif, curly base, and flat tail
cv45 = 6 # j with top serif, curly base, and flat tail
cv47 = 14 # l with top serif, curly base, and flat tail
cv52 = 9 # r hookless body shape with no serifs
cv53 = 1 # s serifless
cv54 = 7 # t with crossbar, curly base, and flat tail
cv56 = 1 # v straight with no serifs
cv57 = 1 # w straight with short middle top
cv58 = 1 # x straight with no serifs
cv59 = 16 # y open "u" top with no serifs and flat tail
cv60 = 1 # z straight with no serifs
cv61 = 4 # ß (eszet) cap with flat top and serifs
cv62 = 25 # ſ (long S) with curly top and bottom bases and flat tails
cv63 = 38 # ß (eszet) with ligature of long S (cv62) and s, containing terminal tail
cv67 = 12 # α (greek alpha) rounded with curly tail
VXAC = 2 # β (greek beta) with no bottom hook
cv68 = 1 # Γ (greek gamma cap) straight with no serifs
VXAD = 3 # γ (greek gamma) with asymmetric curly shape
cv69 = 1 # Δ (greek delta cap) straight with no serifs
cv70 = 1 # δ (greek delta) with rounded top
cv71 = 12 # ι (greek iota) with top serif, curly base, and flat tail
cv72 = 1 # Λ (greek iota) with top serif, curly base, and flat tail
cv73 = 1 # λ (greek lambda) straight with no serifs
cv74 = 1 # μ (greek me) with toothed body and no serifs
VXAE = 1 # ν (greek ne) straight with no serifs
cv75 = 2 # ξ (greek xe) with flat top
cv76 = 1 # π (greek pe) straight with top serifs
cv77 = 6 # τ (greek taf) with top serifs, curly base, and flat tail
VXAF = 1 # υ (greek ypsilon) straight with no serifs
VXAG = 2 # φ (greek phe) with open side and no stem
cv78 = 1 # χ (greek he) straight with no serifs
VXAH = 3 # ψ (greek pse) straight with no serifs and no stem
VDAA = 2 # square dots over i and j
VDAB = 2 # square dots in diacritics like ä
VDAC = 2 # square dots in punctuation marks
VDAD = 2 # square dots in braille
VSAA = 2 # ~ lower placement
VSAB = 3 # * with five points and low placement
VSAC = 2 # _ right below the baseline
VSAD = 2 # ^ at medium placement
VSAE = 1 # ` as a short, straight, diagonal line
VSAF = 1 # ' as a short, straight, vertical line
VSAG = 1 # ( with a normal contour
VSAH = 2 # { curly
VSAI = 1 # « straight
VSAJ = 1 # # column straight
VSAK = 2 # & et open top
VSAL = 2 # @ three-fold, tall height
VSAM = 2 # $ strike through
VSAN = 2 # ¢ strike through
VSAO = 1 # % percent dots
VSAP = 2 # | bar force upright
VSAQ = 1 # ? smooth
VLAA = 2 # ≥ slanted bottom lines
VLAB = 2 # ≠ slightly slanted bar
VLAC = 1 # equality ligation with notch in the middle
VLAD = 1 # hyphen minus ligation with notch in the middle
VLAE = 1 # plus plus ligation with notch in the middle
VLAF = 1 # bars in double arrow ligation with notch in the middle
VLAG = 1 # bar in single arrow ligation with notch in the middle
[buildPlans.iosevka-comfy.variants.upright]
cv36 = 4 # a double storey with a toothless corner
cv37 = 4 # b rounded
cv39 = 7 # d rounded
cv40 = 1 # e straight
cv41 = 12 # f with serifless bottom at baseline, flat top, and crossbar at the x-height
cv42 = 9 # g single storey with flat hook and earless cornered top
cv46 = 6 # k curly with no serifs
cv48 = 20 # m earless double arch short middle leg
cv49 = 8 # n earless straight
cv50 = 4 # p earless with cornered top
cv51 = 9 # q earless with cornered top
cv55 = 8 # u with toothless shape and cornered bottom with no serifs
cv01 = 3 # 1 with bottom serif and short top serif
cv02 = 1 # 2 with straight neck and no serifs
cv04 = 5 # 4 with semi-open contour and no serifs
cv06 = 3 # 6 with straight bar
cv09 = 3 # 9 with straight bar
[buildPlans.iosevka-comfy.variants.italic]
cv36 = 1 # a double storey straight
cv37 = 1 # b straight with no serifs
cv39 = 1 # d straight with no serifs
cv40 = 2 # e curly
cv41 = 16 # f with serifless extended bottom, flat top, and crossbar at the x-height
cv42 = 7 # g single storey flat hook
cv46 = 1 # k straight with no serifs
cv48 = 8 # m straight short middle leg
cv49 = 1 # n straight with no serifs
cv50 = 1 # p straight with no serifs
cv51 = 1 # q straight with no serifs
cv55 = 1 # u straight with no serifs
cv01 = 2 # 1 with top hook and no bottom serif
cv02 = 3 # 2 with curly neck and no serifs
cv04 = 1 # 4 with closed contour and crossing bar
cv06 = 1 # 6 with closed contour
cv09 = 1 # 9 with closed contour
[buildPlans.iosevka-comfy.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy.widths.normal]
shape = 525
menu = 5
css = "normal"
# Fixed spacing (no ligatures)
# ----------------------------
[buildPlans.iosevka-comfy-fixed]
family = "Iosevka Comfy Fixed"
spacing = "fixed"
serifs = "sans"
export-glyph-names = false
[buildPlans.iosevka-comfy-fixed.variants]
inherits = "buildPlans.iosevka-comfy"
[buildPlans.iosevka-comfy-fixed.variants.design]
cv19 = 2 # I cap with long serifs
[buildPlans.iosevka-comfy-fixed.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-fixed.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-fixed.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-fixed.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy-fixed.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-fixed.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-fixed.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-fixed.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy-fixed.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy-fixed.widths.normal]
shape = 525
menu = 5
css = "normal"
# Duo spacing (quasi-proportional)
# --------------------------------
[buildPlans.iosevka-comfy-duo]
family = "Iosevka Comfy Duo"
spacing = "quasi-proportional"
serifs = "sans"
export-glyph-names = false
[buildPlans.iosevka-comfy-duo.variants]
inherits = "buildPlans.iosevka-comfy"
# The '0' has a forward slash that cuts diagonally through the middle of
# the circle, connecting the bottom left part to the top right of the
# oval shape. Whereas the narrow variants have a dashed forward slash
# which does not connect the two sides as it is positioned inside the
# oval shape.
[buildPlans.iosevka-comfy-duo.variants.design]
cv10 = 20 # 0 oval forward slash
cv19 = 3 # I cap with short serifs
VSAL = 5 # @ traditional four-fold style
VSAO = 3 # % with two circles and continuous diagonal line
# The 'm' character has three legs of equal length, instead of a shorter
# middle leg. The short middle leg in the narrow variants is necessary
# for legibility, especially at small point sizes (otherwise the
# character's legs visually blend into what appears to be a solid
# block).
[buildPlans.iosevka-comfy-duo.variants.upright]
cv48 = 15 # m earless normal middle leg
[buildPlans.iosevka-comfy-duo.variants.italic]
cv48 = 1 # m straight normal middle leg
[buildPlans.iosevka-comfy-duo.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-duo.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-duo.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-duo.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy-duo.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-duo.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-duo.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-duo.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy-duo.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy-duo.widths.normal]
shape = 525
menu = 5
css = "normal"
### Compact + Serif
### ===============
# More serified, "motion" shapes
# ------------------------------
[buildPlans.iosevka-comfy-motion]
family = "Iosevka Comfy Motion"
spacing = "normal"
serifs = "slab"
export-glyph-names = false
[buildPlans.iosevka-comfy-motion.variants]
inherits = "buildPlans.iosevka-comfy"
[buildPlans.iosevka-comfy-motion.variants.design]
cv11 = 2 # A cap straight top serif
cv12 = 2 # B cap symmetric with top serif
cv13 = 4 # C cap top inward serif
cv15 = 2 # E cap top left serif
cv16 = 2 # F cap top left serif
cv18 = 2 # H cap top left serif
cv19 = 2 # I cap with long serifs
cv22 = 2 # L cap bottom right serif
cv23 = 8 # M cap with slanted sides, top left serif, and short middle joint
cv24 = 2 # N cap symmetric with top left serif
cv25 = 2 # P cap closed with top left serif
cv27 = 2 # R cap straight with top left serif
cv28 = 4 # S cap with top inward serif
cv30 = 13 # U cap with rounded bottom and top left serif
cv31 = 2 # V cap straight with top serif
cv32 = 2 # W cap straight, top left serif, and short middle joint
cv33 = 2 # X cap straight with top left serif
cv34 = 3 # Y cap straight with top left serif
cv35 = 4 # Z cap straight with top left serif
cv36 = 3 # a double storey with curly tail
cv37 = 2 # b toothed shape with top left serif
cv38 = 4 # c with top inward serif
cv39 = 2 # d toothed shape with top left serif
cv42 = 8 # g single storey with flat hook and serified top corner
cv43 = 3 # h tailed top serif
cv44 = 14 # i with top serif and slight curly tail
cv46 = 7 # k curly with top left serif
cv47 = 14 # l with top serif and curly tail
cv48 = 13 # m with top left serif, tailed bottom right corner, and short middle leg
cv49 = 6 # n with top left serif and tailed bottom right corner
cv50 = 2 # p straight with top left serif
cv51 = 3 # q straight with top right serif
cv52 = 10 # r with top left serif and hookless bottom
cv53 = 4 # s with top inward serif
cv55 = 6 # u with top left serif and bottom right tail
cv56 = 2 # v straight with top left serif
cv57 = 2 # w straight with top left serif and short middle section
cv58 = 2 # x straight with top left serif
cv59 = 17 # y with open top, flat terminal hook, and top left serif
cv60 = 4 # z straight with top left serif
[buildPlans.iosevka-comfy-motion.variants.italic]
cv54 = 1 # t with crossbar and upwardly bent hook
[buildPlans.iosevka-comfy-motion.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-motion.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-motion.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-motion.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy-motion.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-motion.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-motion.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-motion.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy-motion.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy-motion.widths.normal]
shape = 525
menu = 5
css = "normal"
# "Motion" variant with fixed spacing (no ligatures)
# --------------------------------------------------
[buildPlans.iosevka-comfy-motion-fixed]
family = "Iosevka Comfy Motion Fixed"
spacing = "fixed"
serifs = "slab"
export-glyph-names = false
[buildPlans.iosevka-comfy-motion-fixed.variants]
inherits = "buildPlans.iosevka-comfy-motion"
[buildPlans.iosevka-comfy-motion-fixed.variants.design]
cv19 = 2 # I cap with long serifs
[buildPlans.iosevka-comfy-motion-fixed.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-motion-fixed.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-motion-fixed.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-motion-fixed.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy-motion-fixed.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-motion-fixed.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-motion-fixed.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-motion-fixed.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy-motion-fixed.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy-motion-fixed.widths.normal]
shape = 525
menu = 5
css = "normal"
# Iosevka Comfy Motion with Duo spacing (quasi-proportional)
# ----------------------------------------------------------
[buildPlans.iosevka-comfy-motion-duo]
family = "Iosevka Comfy Motion Duo"
spacing = "quasi-proportional"
serifs = "slab"
export-glyph-names = false
[buildPlans.iosevka-comfy-motion-duo.variants]
inherits = "buildPlans.iosevka-comfy-motion"
[buildPlans.iosevka-comfy-motion-duo.variants.design]
cv10 = 20 # 0 oval forward slash
cv19 = 3 # I cap with short serifs
cv48 = 2 # m with top left serif and normal middle leg
VSAL = 5 # @ traditional four-fold style
VSAO = 3 # % with two circles and continuous diagonal line
[buildPlans.iosevka-comfy-motion-duo.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-motion-duo.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-motion-duo.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-motion-duo.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy-motion-duo.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-motion-duo.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-motion-duo.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-motion-duo.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy-motion-duo.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy-motion-duo.widths.normal]
shape = 525
menu = 5
css = "normal"
### Wide + Sans
### ===========
# Like iosevka-comfy but expanded
# -------------------------------
[buildPlans.iosevka-comfy-wide]
family = "Iosevka Comfy Wide"
spacing = "normal"
serifs = "sans"
export-glyph-names = false
[buildPlans.iosevka-comfy-wide.variants]
inherits = "buildPlans.iosevka-comfy"
# The '0' has a forward slash that cuts diagonally through the middle of
# the circle, connecting the bottom left part to the top right of the
# oval shape. Whereas the narrow variants have a dashed forward slash
# which does not connect the two sides as it is positioned inside the
# oval shape.
[buildPlans.iosevka-comfy-wide.variants.design]
cv10 = 20 # 0 oval forward slash
cv19 = 3 # I cap with short serifs
VSAL = 5 # @ traditional four-fold style
VSAO = 3 # % with two circles and continuous diagonal line
# The 'm' character has three legs of equal length, instead of a shorter
# middle leg. The short middle leg in the narrow variants is necessary
# for legibility, especially at small point sizes (otherwise the
# character's legs visually blend into what appears to be a solid
# block).
[buildPlans.iosevka-comfy-wide.variants.upright]
cv48 = 15 # m earless with normal middle leg
[buildPlans.iosevka-comfy-wide.variants.italic]
cv48 = 1 # m straight top left with normal middle leg
[buildPlans.iosevka-comfy-wide.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-wide.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-wide.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-wide.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy-wide.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-wide.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-wide.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-wide.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy-wide.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy-wide.widths.normal]
shape = 625
menu = 7
css = "normal"
# Like iosevka-comfy-wide but fixed monospace (no ligatures)
# ----------------------------------------------------------
[buildPlans.iosevka-comfy-wide-fixed]
family = "Iosevka Comfy Wide Fixed"
spacing = "fixed"
serifs = "sans"
export-glyph-names = false
[buildPlans.iosevka-comfy-wide-fixed.variants]
inherits = "buildPlans.iosevka-comfy-wide"
[buildPlans.iosevka-comfy-wide-fixed.variants.design]
cv19 = 3 # I cap with short serifs
[buildPlans.iosevka-comfy-wide-fixed.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-wide-fixed.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-wide-fixed.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-wide-fixed.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy-wide-fixed.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-wide-fixed.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-wide-fixed.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-wide-fixed.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy-wide-fixed.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy-wide-fixed.widths.normal]
shape = 625
menu = 7
css = "normal"
# Duo spacing but wider (quasi-proportional)
# ------------------------------------------
[buildPlans.iosevka-comfy-wide-duo]
family = "Iosevka Comfy Wide Duo"
spacing = "quasi-proportional"
serifs = "sans"
export-glyph-names = false
[buildPlans.iosevka-comfy-wide-duo.variants]
inherits = "buildPlans.iosevka-comfy-wide"
[buildPlans.iosevka-comfy-wide-duo.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-wide-duo.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-wide-duo.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-wide-duo.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy-wide-duo.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-wide-duo.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-wide-duo.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-wide-duo.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy-wide-duo.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy-wide-duo.widths.normal]
shape = 625
menu = 7
css = "normal"
### Wide + Serif
### ============
# Like iosevka-comfy-motion but expanded
# --------------------------------------
[buildPlans.iosevka-comfy-wide-motion]
family = "Iosevka Comfy Wide Motion"
spacing = "normal"
serifs = "slab"
export-glyph-names = false
[buildPlans.iosevka-comfy-wide-motion.variants]
inherits = "buildPlans.iosevka-comfy-motion"
# The '0' has a forward slash that cuts diagonally through the middle of
# the circle, connecting the bottom left part to the top right of the
# oval shape. Whereas the narrow variants have a dashed forward slash
# which does not connect the two sides as it is positioned inside the
# oval shape.
#
# The 'm' character has three legs of equal length, instead of a shorter
# middle leg. The short middle leg in the narrow variants is necessary
# for legibility, especially at small point sizes (otherwise the
# character's legs visually blend into what appears to be a solid
# block).
[buildPlans.iosevka-comfy-wide-motion.variants.design]
cv10 = 20 # 0 oval forward slash
cv19 = 3 # I cap with short serifs
cv48 = 2 # m with top left serif and normal middle leg
VSAL = 5 # @ traditional four-fold style
VSAO = 3 # % with two circles and continuous diagonal line
[buildPlans.iosevka-comfy-wide-motion.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-wide-motion.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-wide-motion.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-wide-motion.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy-wide-motion.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-wide-motion.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-wide-motion.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-wide-motion.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy-wide-motion.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy-wide-motion.widths.normal]
shape = 625
menu = 7
css = "normal"
# Like iosevka-comfy-wide-motion but fixed monospace (no ligatures)
# -----------------------------------------------------------------
[buildPlans.iosevka-comfy-wide-motion-fixed]
family = "Iosevka Comfy Wide Motion Fixed"
spacing = "fixed"
serifs = "slab"
export-glyph-names = false
[buildPlans.iosevka-comfy-wide-motion-fixed.variants]
inherits = "buildPlans.iosevka-comfy-wide-motion"
[buildPlans.iosevka-comfy-wide-motion-fixed.variants.design]
cv19 = 3 # I cap with short serifs
[buildPlans.iosevka-comfy-wide-motion-fixed.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-wide-motion-fixed.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-wide-motion-fixed.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-wide-motion-fixed.weights.medium]
shape = 500
menu = 500
css = 500
[buildPlans.iosevka-comfy-wide-motion-fixed.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-wide-motion-fixed.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-wide-motion-fixed.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-wide-motion-fixed.slopes.upright]
angle = 0
shape = "upright"
menu = "upright"
css = "normal"
[buildPlans.iosevka-comfy-wide-motion-fixed.slopes.italic]
angle = 9.4
shape = "italic"
menu = "italic"
css = "italic"
[buildPlans.iosevka-comfy-wide-motion-fixed.widths.normal]
shape = 625
menu = 7
css = "normal"
# Motion duo spacing but wider (quasi-proportional)
# -------------------------------------------------
[buildPlans.iosevka-comfy-wide-motion-duo]
family = "Iosevka Comfy Wide Motion Duo"
spacing = "quasi-proportional"
serifs = "slab"
export-glyph-names = false
[buildPlans.iosevka-comfy-wide-motion-duo.variants]
inherits = "buildPlans.iosevka-comfy-wide-motion"
[buildPlans.iosevka-comfy-wide-motion-duo.weights.light]
shape = 300
menu = 300
css = 300
[buildPlans.iosevka-comfy-wide-motion-duo.weights.semilight]
shape = 350
menu = 350
css = 350
[buildPlans.iosevka-comfy-wide-motion-duo.weights.regular]
shape = 400
menu = 400
css = 400
[buildPlans.iosevka-comfy-wide-motion-duo.weights.medium]
shape = 500
menu = 500
css = 500