forked from protesilaos/iosevka-comfy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
private-build-plans.toml
1013 lines (842 loc) · 24 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 = true # Set this to true for ligature support in Kitty (increased file size)
[buildPlans.iosevka-comfy.variants.design]
cv01 = 1 # A cap straight
cv02 = 1 # B cap symmetric
cv03 = 1 # C cap serifless
cv04 = 6 # D cap curly with top and bottom serif (without serifs TODO reads like TOOO at small point sizes)
cv05 = 1 # E cap serifless
cv06 = 1 # F cap serifless
cv07 = 2 # G cap toothed serifless
cv08 = 1 # H cap serifless
cv09 = 1 # I cap long serifs
cv10 = 2 # J cap serified asymmetric
cv11 = 6 # K cap curly
cv12 = 1 # L cap serifless
cv13 = 4 # M cap short middle leg slanted sides
cv14 = 1 # N cap symmetric
cv15 = 1 # P cap straight
cv16 = 4 # Q cap crossing tail
cv17 = 1 # R cap straight
cv18 = 1 # S cap serifless
cv19 = 1 # T cap serifless
cv20 = 11 # U cap rounded serifless
cv21 = 1 # V cap straight
cv22 = 1 # W cap straight
cv23 = 1 # X cap straight
cv24 = 1 # Y cap straight
cv25 = 1 # Z cap straight
cv28 = 1 # c serifless
cv33 = 1 # h straight
cv34 = 10 # i serified flat tailed
cv35 = 6 # j flat hook serified
cv37 = 10 # l serified flat tailed
cv42 = 9 # r hookless, serifless
cv43 = 1 # s serifless
cv44 = 2 # t flat hook
cv46 = 1 # v straight
cv47 = 1 # w straight short middle top
cv48 = 1 # x straight
cv49 = 16 # y cursive flat hook serifless
cv50 = 1 # z straight
cv51 = 22 # ſ flat hook tailed
cv52 = 38 # ß flat hook tailed, serifless
cv83 = 26 # 0 oval dashed forward slash
cv86 = 2 # 3 arched
cv88 = 2 # 5 open contour
cv90 = 1 # 7 straight
cv91 = 3 # 8 two asymmetric circles
cv93 = 2 # ijäöü square diacretics
cv94 = 2 # .:; square punctuation marks
cv95 = 2 # ~ tilde low
cv96 = 3 # * asterisk five-pointed low
cv97 = 2 # _ underscore right below baseline
cv98 = 2 # ^ uptick medium
cv99 = 1 # ( parentheses normal slope
VSAA = 2 # { braces curly
VSAB = 1 # « guillemet straight
VSAC = 1 # # column straight
VSAD = 2 # & et open top (ampersand)
VSAE = 2 # @ three-fold, tall height
VSAF = 2 # $ dollar strike through
VSAG = 1 # % percent dots
VSAH = 2 # | bar force upright
VSAI = 1 # ' single quote straight
VSAJ = 1 # ` grave/backtick straight
VSAK = 1 # ? smooth
VSAM = 2 # ¢ cent strike through
VLAA = 2 # ≥ equal-or-{higher,lower} slanted
VLAB = 2 # ≠ not equal slight slant
[buildPlans.iosevka-comfy.variants.upright]
cv26 = 3 # a double storey toothless
cv27 = 4 # b rounded
cv29 = 4 # d rounded
cv30 = 1 # e straight
cv31 = 4 # f serifless bottom flat top with crossbar at x height
cv32 = 9 # g single storey flat hook earless cornered top
cv36 = 6 # k curly
cv38 = 20 # m earless double arch short middle leg
cv39 = 8 # n earless straight
cv40 = 4 # p earless
cv41 = 8 # q earless
cv45 = 8 # u toothless
cv84 = 3 # 1 serified with base
cv85 = 1 # 2 straight
cv87 = 3 # 4 semi-open contour
cv89 = 3 # 6 straight
cv92 = 3 # 9 straight
[buildPlans.iosevka-comfy.variants.italic]
cv26 = 1 # a double storey straight
cv27 = 1 # b straight
cv29 = 1 # d straight
cv30 = 2 # e curly
cv31 = 12 # f serifless extended bottom with flat top and crossbar at x height
cv32 = 7 # g single storey flat hook
cv36 = 1 # k straight
cv38 = 8 # m straight short middle leg
cv39 = 1 # n straight
cv40 = 1 # p straight
cv41 = 1 # q straight
cv45 = 1 # u straight
cv84 = 2 # 1 serified no base
cv85 = 2 # 2 curly
cv87 = 1 # 4 closed contour crossing
cv89 = 1 # 6 closed contour
cv92 = 1 # 9 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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[buildPlans.iosevka-comfy-fixed.variants]
inherits = "buildPlans.iosevka-comfy"
[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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[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]
cv83 = 20 # 0 oval forward slash
VSAE = 5 # @ traditional four-fold style
VSAG = 2 # % with two circles
# The 'm' character has three legs of equal length, insetad 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]
cv38 = 15 # m earless normal middle leg
[buildPlans.iosevka-comfy-duo.variants.italic]
cv38 = 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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[buildPlans.iosevka-comfy-motion.variants]
inherits = "buildPlans.iosevka-comfy"
[buildPlans.iosevka-comfy-motion.variants.design]
cv01 = 2 # A cap straight top serif
cv02 = 2 # B cap symmetric with top serif
cv03 = 4 # C cap top inward serif
cv05 = 2 # E cap top-left serif
cv06 = 2 # F cap top-left serif
cv08 = 2 # H cap top-left serif
cv12 = 2 # L cap bottom right serif
cv13 = 4 # M cap slanted sides top serif short middle joint
cv14 = 2 # N cap symmetric top serif
cv15 = 2 # P cap closed top serif
cv17 = 2 # R cap straight top serif
cv18 = 4 # S cap top inward serif
cv20 = 4 # U cap toothless top serif
cv21 = 2 # V cap straight top serif
cv22 = 2 # W cap straight top serif short middle joint
cv23 = 2 # X cap straight top serif
cv24 = 3 # Y cap straight top serif
cv25 = 10 # Z cap straight top serif
cv26 = 2 # a double storey tailed
cv27 = 2 # b toothed top serif
cv28 = 4 # c top inward serif
cv29 = 2 # d toothed top serif
cv32 = 8 # g single storey flat hook serified top
cv33 = 3 # h tailed top serif
cv34 = 8 # i serified tailed
cv36 = 7 # k curly top serif
cv37 = 8 # l serified tailed
cv38 = 13 # m top serif tailed with short middle leg
cv39 = 6 # n top serif tailed
cv40 = 2 # p top serif
cv41 = 2 # q top serif
cv42 = 10 # r top serif hookless
cv43 = 4 # s top inward serif
cv45 = 2 # u top serif tailed
cv46 = 2 # v top serif
cv47 = 2 # w top serif
cv48 = 2 # x top serif
cv49 = 17 # y cursive flat terminal hook serified top left
cv50 = 10 # z top serif
[buildPlans.iosevka-comfy-motion.variants.italic]
cv44 = 1 # t curly
[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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[buildPlans.iosevka-comfy-motion-fixed.variants]
inherits = "buildPlans.iosevka-comfy-motion"
[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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[buildPlans.iosevka-comfy-motion-duo.variants]
inherits = "buildPlans.iosevka-comfy-motion"
[buildPlans.iosevka-comfy-motion-duo.variants.design]
cv38 = 2 # m top serif tailed with normal middle leg
cv83 = 20 # 0 oval forward slash
VSAE = 5 # @ traditional four-fold style
VSAG = 3 # % with two circles
[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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[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]
cv83 = 20 # 0 oval forward slash
VSAE = 5 # @ traditional four-fold style
VSAG = 2 # % with two circles
# The 'm' character has three legs of equal length, insetad 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]
cv38 = 15 # m earless normal middle leg
[buildPlans.iosevka-comfy-wide.variants.italic]
cv38 = 1 # m straight 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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[buildPlans.iosevka-comfy-wide-fixed.variants]
inherits = "buildPlans.iosevka-comfy-wide"
[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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[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, insetad 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]
cv38 = 2 # m top serif tailed with normal middle leg
cv83 = 20 # 0 oval forward slash
VSAE = 5 # @ traditional four-fold style
VSAG = 3 # % with two circles
[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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[buildPlans.iosevka-comfy-wide-motion-fixed.variants]
inherits = "buildPlans.iosevka-comfy-wide-motion"
[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
# It seems we can inherit variants, but not weights, slopes, widths,
# metric-override...
[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
[buildPlans.iosevka-comfy-wide-motion-duo.weights.semibold]
shape = 600
menu = 600
css = 600
[buildPlans.iosevka-comfy-wide-motion-duo.weights.bold]
shape = 700
menu = 700
css = 700
[buildPlans.iosevka-comfy-wide-motion-duo.weights.extrabold]
shape = 800
menu = 800
css = 800
[buildPlans.iosevka-comfy-wide-motion-duo.slopes.upright]
angle = 0
shape = "upright"