-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariants.toml
7458 lines (6280 loc) · 227 KB
/
variants.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
# Variants
[prime.capital-a]
sampler = "A"
tag = "cv01"
[prime.capital-a.variants.straight-serifless]
rank = 1
description = "Standard, straight `A`, without serifs"
selector.A = "straightSerifless"
selector."A/sansSerif" = "straightSerifless"
selector.AE = "straight"
[prime.capital-a.variants.curly-serifless]
rank = 2
description = "Slightly curly `A`, like Iosevka 2.x, without serifs"
selector.A = "curlySerifless"
selector."A/sansSerif" = "curlySerifless"
selector.AE = "curly"
[prime.capital-a.variants.straight-top-serifed]
rank = 3
description = "Straight `A` with serif at top"
selector.A = "straightTopSerifed"
selector."A/sansSerif" = "straightSerifless"
selector.AE = "straight"
[prime.capital-a.variants.curly-top-serifed]
rank = 4
description = "Slightly curly `A`, like Iosevka 2.x, with serif at top"
selector.A = "curlyTopSerifed"
selector."A/sansSerif" = "curlySerifless"
selector.AE = "curly"
[prime.capital-a.variants.straight-base-serifed]
rank = 5
description = "Straight `A` with serif at both top and bottom"
selector.A = "straightBaseSerifed"
selector."A/sansSerif" = "straightSerifless"
selector.AE = "straight"
[prime.capital-a.variants.curly-base-serifed]
rank = 6
description = "Slightly curly `A`, like Iosevka 2.x, with serif at both top and bottom"
selector.A = "curlyBaseSerifed"
selector."A/sansSerif" = "curlySerifless"
selector.AE = "curly"
[prime.capital-a.variants.straight-tri-serifed]
rank = 7
description = "Straight `A` with serif at both top and bottom"
selector.A = "straightTriSerifed"
selector."A/sansSerif" = "straightSerifless"
selector.AE = "straight"
[prime.capital-a.variants.curly-tri-serifed]
rank = 8
description = "Slightly curly `A`, like Iosevka 2.x, with serif at both top and bottom"
selector.A = "curlyTriSerifed"
selector."A/sansSerif" = "curlySerifless"
selector.AE = "curly"
[prime.capital-b]
sampler = "B"
tag = "cv02"
[prime.capital-b.variants.standard-serifless]
rank = 1
description = "`B` in near-symmetric proportion, without serifs"
selector.B = "standardSerifless"
selector."B/sansSerif" = "standardSerifless"
selector.smcpB = "standardSerifless"
[prime.capital-b.variants.more-asymmetric-serifless]
rank = 2
description = "`B` in more asymmetric proportion to differentiate with `8`, without serifs"
selector.B = "moreAsymmetricSerifless"
selector."B/sansSerif" = "moreAsymmetricSerifless"
selector.smcpB = "standardSerifless"
[prime.capital-b.variants.standard-unilateral-serifed]
rank = 3
description = "`B` in near-symmetric proportion with motion serifs at top"
selector.B = "standardUnilateralSerifed"
selector."B/sansSerif" = "standardSerifless"
selector.smcpB = "standardUnilateralSerifed"
[prime.capital-b.variants.more-asymmetric-unilateral-serifed]
rank = 4
description = "`B` in more asymmetric proportion with motion serifs at top"
selector.B = "moreAsymmetricUnilateralSerifed"
selector."B/sansSerif" = "moreAsymmetricSerifless"
selector.smcpB = "standardUnilateralSerifed"
[prime.capital-b.variants.standard-bilateral-serifed]
rank = 5
description = "`B` in near-symmetric proportion with motion serifs at both top and bottom"
selector.B = "standardBilateralSerifed"
selector."B/sansSerif" = "standardSerifless"
selector.smcpB = "standardBilateralSerifed"
[prime.capital-b.variants.more-asymmetric-bilateral-serifed]
rank = 6
description = "`B` in more asymmetric proportion with motion serifs at both top and bottom"
selector.B = "moreAsymmetricBilateralSerifed"
selector."B/sansSerif" = "moreAsymmetricSerifless"
selector.smcpB = "standardBilateralSerifed"
[prime.capital-b.variants.standard-interrupted-serifless]
rank = 7
description = "`B` in near-symmetric proportion with interupted middle bar, without serifs"
selector.B = "standardInterruptedSerifless"
selector."B/sansSerif" = "standardInterruptedSerifless"
selector.smcpB = "standardInterruptedSerifless"
[prime.capital-b.variants.more-asymmetric-interrupted-serifless]
rank = 8
description = "`B` in more asymmetric proportion to differentiate with `8`, with interupted middle bar, without serifs"
selector.B = "moreAsymmetricInterruptedSerifless"
selector."B/sansSerif" = "moreAsymmetricInterruptedSerifless"
selector.smcpB = "standardInterruptedSerifless"
[prime.capital-b.variants.standard-interrupted-unilateral-serifed]
rank = 9
description = "`B` in near-symmetric proportion with interupted middle bar and motion serifs at top"
selector.B = "standardInterruptedUnilateralSerifed"
selector."B/sansSerif" = "standardInterruptedSerifless"
selector.smcpB = "standardInterruptedUnilateralSerifed"
[prime.capital-b.variants.more-asymmetric-interrupted-unilateral-serifed]
rank = 10
description = "`B` in more asymmetric proportion with interupted middle bar and `8` with motion serifs at top"
selector.B = "moreAsymmetricInterruptedUnilateralSerifed"
selector."B/sansSerif" = "moreAsymmetricInterruptedSerifless"
selector.smcpB = "standardInterruptedUnilateralSerifed"
[prime.capital-b.variants.standard-interrupted-bilateral-serifed]
rank = 11
description = "`B` in near-symmetric proportion with interupted middle bar and motion serifs at both top and bottom"
selector.B = "standardInterruptedBilateralSerifed"
selector."B/sansSerif" = "standardInterruptedSerifless"
selector.smcpB = "standardInterruptedBilateralSerifed"
[prime.capital-b.variants.more-asymmetric-interrupted-bilateral-serifed]
rank = 12
description = "`B` in more asymmetric proportion with interupted middle bar and `8` with motion serifs at both top and bottom"
selector.B = "moreAsymmetricInterruptedBilateralSerifed"
selector."B/sansSerif" = "moreAsymmetricInterruptedSerifless"
selector.smcpB = "standardInterruptedBilateralSerifed"
[prime.capital-c]
sampler = "C"
tag = "cv03"
[prime.capital-c.variants.serifless]
rank = 1
description = "Serifless `C`"
selector.C = "serifless"
selector."C/sansSerif" = "serifless"
selector.CHookTop = "unilateralSerifed"
selector.CTopSerifOnly = "serifless"
[prime.capital-c.variants.unilateral-serifed]
rank = 2
description = "`C` with serif at top"
selector.C = "unilateralSerifed"
selector."C/sansSerif" = "serifless"
selector.CHookTop = "unilateralSerifed"
selector.CTopSerifOnly = "unilateralSerifed"
[prime.capital-c.variants.bilateral-serifed]
rank = 3
description = "`C` with serifs at both top and bottom"
selector.C = "bilateralSerifed"
selector."C/sansSerif" = "serifless"
selector.CHookTop = "bilateralSerifed"
selector.CTopSerifOnly = "unilateralSerifed"
[prime.capital-c.variants.unilateral-inward-serifed]
rank = 4
description = "`C` with inward serif at top"
selector.C = "unilateralInwardSerifed"
selector."C/sansSerif" = "serifless"
selector.CHookTop = "unilateralInwardSerifed"
selector.CTopSerifOnly = "unilateralInwardSerifed"
[prime.capital-c.variants.bilateral-inward-serifed]
rank = 5
description = "`C` with inward serif at both top and bottom"
selector.C = "bilateralInwardSerifed"
selector."C/sansSerif" = "serifless"
selector.CHookTop = "bilateralInwardSerifed"
selector.CTopSerifOnly = "unilateralInwardSerifed"
[prime.capital-d]
sampler = "D"
tag = "cv04"
[prime.capital-d.variants.standard-serifless]
rank = 1
description = "Standard `D` without serifs"
selector.D = "standardSerifless"
selector."D/sansSerif" = "standardSerifless"
[prime.capital-d.variants.more-rounded-serifless]
rank = 2
description = "More rounded `D` to differentiate with `O`, without serifs"
selector.D = "moreRoundedSerifless"
selector."D/sansSerif" = "moreRoundedSerifless"
[prime.capital-d.variants.standard-unilateral-serifed]
rank = 3
description = "Standard `B` with serifs at top"
selector.D = "standardUnilateralSerifed"
selector."D/sansSerif" = "standardSerifless"
[prime.capital-d.variants.more-rounded-unilateral-serifed]
rank = 4
description = "More rounded `B` to differentiate with `O` with motion serifs at top"
selector.D = "moreRoundedUnilateralSerifed"
selector."D/sansSerif" = "moreRoundedSerifless"
[prime.capital-d.variants.standard-bilateral-serifed]
rank = 5
description = "Standard `B` with serifs at both top and bottom"
selector.D = "standardBilateralSerifed"
selector."D/sansSerif" = "standardSerifless"
[prime.capital-d.variants.more-rounded-bilateral-serifed]
rank = 6
description = "More rounded `B` to differentiate with `O` with serifs at both top and bottom"
selector.D = "moreRoundedBilateralSerifed"
selector."D/sansSerif" = "moreRoundedSerifless"
[prime.capital-e]
sampler = "E"
tag = "cv05"
[prime.capital-e.variants.serifless]
rank = 1
description = "E without serifs"
selector.E = "serifless"
selector."E/sansSerif" = "serifless"
selector."AE/EHalf" = "serifless"
[prime.capital-e.variants.top-left-serifed]
rank = 2
description = "E with serif only at top left"
selector.E = "topLeftSerifed"
selector."E/sansSerif" = "serifless"
selector."AE/EHalf" = "serifless"
[prime.capital-e.variants.serifed]
rank = 3
description = "E with serifs"
selector.E = "serifed"
selector."E/sansSerif" = "serifless"
selector."AE/EHalf" = "serifed"
[prime.capital-f]
sampler = "F"
tag = "cv06"
[prime.capital-f.variants.serifless]
rank = 1
description = "F without serifs"
selector.F = "serifless"
selector."F/sansSerif" = "serifless"
[prime.capital-f.variants.top-left-serifed]
rank = 2
description = "F with serif only at top left"
selector.F = "topLeftSerifed"
selector."F/sansSerif" = "serifless"
[prime.capital-f.variants.serifed]
rank = 3
description = "F with serifs"
selector.F = "serifed"
selector."F/sansSerif" = "serifless"
[prime.capital-g]
sampler = "G"
tag = "cv07"
[prime.capital-g.variants.toothed-serifless-hookless]
rank = 1
description = "Toothed G"
selector.G = "toothedSeriflessHookless"
selector."G/sansSerif" = "toothedSeriflessHookless"
selector.GHookTop = "toothedSeriflessHookless"
[prime.capital-g.variants.toothless-corner-serifless-hookless]
rank = 2
description = "Corner toothless G"
selector.G = "toothlessCornerSeriflessHookless"
selector."G/sansSerif" = "toothlessCornerSeriflessHookless"
selector.GHookTop = "toothlessCornerSeriflessHookless"
[prime.capital-g.variants.toothless-rounded-serifless-hookless]
rank = 3
description = "Round toothless G"
selector.G = "toothlessRoundedSeriflessHookless"
selector."G/sansSerif" = "toothlessRoundedSeriflessHookless"
selector.GHookTop = "toothlessRoundedSeriflessHookless"
[prime.capital-g.variants.toothed-serifless-hooked]
rank = 4
description = "Toothed G with inward hook at terminal"
selector.G = "toothedSeriflessHooked"
selector."G/sansSerif" = "toothedSeriflessHooked"
selector.GHookTop = "toothedSeriflessHooked"
[prime.capital-g.variants.toothless-corner-serifless-hooked]
rank = 5
description = "Corner toothless G with inward hook at terminal"
selector.G = "toothlessCornerSeriflessHooked"
selector."G/sansSerif" = "toothlessCornerSeriflessHooked"
selector.GHookTop = "toothlessCornerSeriflessHooked"
[prime.capital-g.variants.toothless-rounded-serifless-hooked]
rank = 6
description = "Round toothless G with inward hook at terminal"
selector.G = "toothlessRoundedSeriflessHooked"
selector."G/sansSerif" = "toothlessRoundedSeriflessHooked"
selector.GHookTop = "toothlessRoundedSeriflessHooked"
[prime.capital-g.variants.toothed-serifless-capped]
rank = 7
description = "Toothed G with a cap terminal"
selector.G = "toothedSeriflessCapped"
selector."G/sansSerif" = "toothedSeriflessCapped"
selector.GHookTop = "toothedSeriflessCapped"
[prime.capital-g.variants.toothless-corner-serifless-capped]
rank = 8
description = "Corner toothless G with a cap terminal"
selector.G = "toothlessCornerSeriflessCapped"
selector."G/sansSerif" = "toothlessCornerSeriflessCapped"
selector.GHookTop = "toothlessCornerSeriflessCapped"
[prime.capital-g.variants.toothless-rounded-serifless-capped]
rank = 9
description = "Round toothless G with a cap terminal"
selector.G = "toothlessRoundedSeriflessCapped"
selector."G/sansSerif" = "toothlessRoundedSeriflessCapped"
selector.GHookTop = "toothlessRoundedSeriflessCapped"
[prime.capital-g.variants.toothed-serifed-hookless]
rank = 10
description = "Toothed G with top serif"
selector.G = "toothedSerifedHookless"
selector."G/sansSerif" = "toothedSeriflessHookless"
selector.GHookTop = "toothedSeriflessHookless"
[prime.capital-g.variants.toothless-corner-serifed-hookless]
rank = 11
description = "Corner toothless G with top serif"
selector.G = "toothlessCornerSerifedHookless"
selector."G/sansSerif" = "toothlessCornerSeriflessHookless"
selector.GHookTop = "toothlessCornerSeriflessHookless"
[prime.capital-g.variants.toothless-rounded-serifed-hookless]
rank = 12
description = "Round toothless G with top serif"
selector.G = "toothlessRoundedSerifedHookless"
selector."G/sansSerif" = "toothlessRoundedSeriflessHookless"
selector.GHookTop = "toothlessRoundedSeriflessHookless"
[prime.capital-g.variants.toothed-serifed-hooked]
rank = 13
description = "Toothed G with inward hook at terminal and top serif"
selector.G = "toothedSerifedHooked"
selector."G/sansSerif" = "toothedSeriflessHooked"
selector.GHookTop = "toothedSeriflessHooked"
[prime.capital-g.variants.toothless-corner-serifed-hooked]
rank = 14
description = "Corner toothless G with inward hook at terminal and top serif"
selector.G = "toothlessCornerSerifedHooked"
selector."G/sansSerif" = "toothlessCornerSeriflessHooked"
selector.GHookTop = "toothlessCornerSeriflessHooked"
[prime.capital-g.variants.toothless-rounded-serifed-hooked]
rank = 15
description = "Round toothless G with inward hook at terminal and top serif"
selector.G = "toothlessRoundedSerifedHooked"
selector."G/sansSerif" = "toothlessRoundedSeriflessHooked"
selector.GHookTop = "toothlessRoundedSeriflessHooked"
[prime.capital-g.variants.toothed-serifed-capped]
rank = 16
description = "Toothed G with a cap terminal and top serif"
selector.G = "toothedSerifedCapped"
selector."G/sansSerif" = "toothedSeriflessCapped"
selector.GHookTop = "toothedSeriflessCapped"
[prime.capital-g.variants.toothless-corner-serifed-capped]
rank = 17
description = "Corner toothless G with a cap terminal and top serif"
selector.G = "toothlessCornerSerifedCapped"
selector."G/sansSerif" = "toothlessCornerSeriflessCapped"
selector.GHookTop = "toothlessCornerSeriflessCapped"
[prime.capital-g.variants.toothless-rounded-serifed-capped]
rank = 18
description = "Round toothless G with a cap terminal and top serif"
selector.G = "toothlessRoundedSerifedCapped"
selector."G/sansSerif" = "toothlessRoundedSeriflessCapped"
selector.GHookTop = "toothlessRoundedSeriflessCapped"
[prime.capital-g.variants.toothed-inward-serifed-hookless]
rank = 19
description = "Toothed G with inward top serif"
selector.G = "toothedInwardSerifedHookless"
selector."G/sansSerif" = "toothedSeriflessHookless"
selector.GHookTop = "toothedSeriflessHookless"
[prime.capital-g.variants.toothless-corner-inward-serifed-hookless]
rank = 20
description = "Corner toothless G with inward top serif"
selector.G = "toothlessCornerInwardSerifedHookless"
selector."G/sansSerif" = "toothlessCornerSeriflessHookless"
selector.GHookTop = "toothlessCornerSeriflessHookless"
[prime.capital-g.variants.toothless-rounded-inward-serifed-hookless]
rank = 21
description = "Round toothless G with inward top serif"
selector.G = "toothlessRoundedInwardSerifedHookless"
selector."G/sansSerif" = "toothlessRoundedSeriflessHookless"
selector.GHookTop = "toothlessRoundedSeriflessHookless"
[prime.capital-g.variants.toothed-inward-serifed-hooked]
rank = 22
description = "Toothed G with inward hook at terminal and inward top serif"
selector.G = "toothedInwardSerifedHooked"
selector."G/sansSerif" = "toothedSeriflessHooked"
selector.GHookTop = "toothedSeriflessHooked"
[prime.capital-g.variants.toothless-corner-inward-serifed-hooked]
rank = 23
description = "Corner toothless G with inward hook at terminal and inward top serif"
selector.G = "toothlessCornerInwardSerifedHooked"
selector."G/sansSerif" = "toothlessCornerSeriflessHooked"
selector.GHookTop = "toothlessCornerSeriflessHooked"
[prime.capital-g.variants.toothless-rounded-inward-serifed-hooked]
rank = 24
description = "Round toothless G with inward hook at terminal and inward top serif"
selector.G = "toothlessRoundedInwardSerifedHooked"
selector."G/sansSerif" = "toothlessRoundedSeriflessHooked"
selector.GHookTop = "toothlessRoundedSeriflessHooked"
[prime.capital-g.variants.toothed-inward-serifed-capped]
rank = 25
description = "Toothed G with a cap terminal and inward top serif"
selector.G = "toothedInwardSerifedCapped"
selector."G/sansSerif" = "toothedSeriflessCapped"
selector.GHookTop = "toothedSeriflessCapped"
[prime.capital-g.variants.toothless-corner-inward-serifed-capped]
rank = 26
description = "Corner toothless G with a cap terminal and inward top serif"
selector.G = "toothlessCornerInwardSerifedCapped"
selector."G/sansSerif" = "toothlessCornerSeriflessCapped"
selector.GHookTop = "toothlessCornerSeriflessCapped"
[prime.capital-g.variants.toothless-rounded-inward-serifed-capped]
rank = 27
description = "Round toothless G with a cap terminal and inward top serif"
selector.G = "toothlessRoundedInwardSerifedCapped"
selector."G/sansSerif" = "toothlessRoundedSeriflessCapped"
selector.GHookTop = "toothlessRoundedSeriflessCapped"
[prime.capital-h]
sampler = "H"
tag = "cv08"
[prime.capital-h.variants.serifless]
rank = 1
description = "H without serifs"
selector.H = "serifless"
selector.halfH = "serifless"
selector."H/sansSerif" = "serifless"
selector.Hwair = "serifless"
selector."cyrl/Nje/leftHalf/full" = "serifless"
selector."cyrl/Nje/leftHalf/reduced" = "serifless"
[prime.capital-h.variants.top-left-serifed]
rank = 2
description = "H with serif only at top left"
selector.H = "topLeftSerifed"
selector.halfH = "topLeftSerifed"
selector."H/sansSerif" = "serifless"
selector.Hwair = "topLeftSerifed"
selector."cyrl/Nje/leftHalf/full" = "topLeftSerifed"
selector."cyrl/Nje/leftHalf/reduced" = "topLeftSerifed"
[prime.capital-h.variants.top-left-bottom-right-serifed]
rank = 3
description = "H with serif only at top left and bottom right"
selector.H = "topLeftBottomRightSerifed"
selector.halfH = "topLeftSerifed"
selector."H/sansSerif" = "serifless"
selector.Hwair = "topLeftSerifed"
selector."cyrl/Nje/leftHalf/full" = "topLeftSerifed"
selector."cyrl/Nje/leftHalf/reduced" = "topLeftSerifed"
[prime.capital-h.variants.serifed]
rank = 4
description = "H with serifs"
selector.H = "serifed"
selector.halfH = "serifed"
selector."H/sansSerif" = "serifless"
selector.Hwair = "serifedExceptBottomRight"
selector."cyrl/Nje/leftHalf/full" = "serifed"
selector."cyrl/Nje/leftHalf/reduced" = "serifedExceptBottomRight"
[prime.capital-i]
sampler = "I"
tag = "cv09"
[prime.capital-i.variants.serifed]
rank = 1
description = "I with standard (long) serifs"
selector.I = "serifed"
selector."I/sansSerif" = "serifless"
[prime.capital-i.variants.serifless]
rank = 2
description = "I without serifs, like a straight bar"
selector.I = "serifless"
selector."I/sansSerif" = "serifless"
[prime.capital-i.variants.short-serifed]
rank = 3
description = "I with short serifs"
selector.I = "shortSerifed"
selector."I/sansSerif" = "serifless"
[prime.capital-j]
sampler = "J"
tag = "cv10"
[prime.capital-j.variants.serifless]
rank = 1
description = "J without top serif"
selector.J = "serifless"
selector."J/sansSerif" = "serifless"
[prime.capital-j.variants.serifed]
rank = 2
description = "J with top serif at left side"
selector.J = "serifed"
selector."J/sansSerif" = "serifless"
[prime.capital-j.variants.serifed-both-sides]
rank = 3
description = "J with top serif at both sides (asymmetric)"
selector.J = "serifedBothSides"
selector."J/sansSerif" = "serifless"
[prime.capital-j.variants.serifed-symmetric]
rank = 4
description = "J with top serif at both sides (symmetric)"
selector.J = "serifedSymmetric"
selector."J/sansSerif" = "serifless"
[prime.capital-j.variants.flat-hook-serifless]
rank = 5
description = "J with flat hook and without top serif"
selector.J = "flatHookSerifless"
selector."J/sansSerif" = "flatHookSerifless"
[prime.capital-j.variants.flat-hook-serifed]
rank = 6
description = "J with flat hook and top serif at left side"
selector.J = "flatHookSerifed"
selector."J/sansSerif" = "flatHookSerifless"
[prime.capital-j.variants.flat-hook-serifed-both-sides]
rank = 7
description = "J with flat hook and top serif at both sides (asymmetric)"
selector.J = "flatHookSeriflessBothSides"
selector."J/sansSerif" = "flatHookSerifless"
[prime.capital-j.variants.flat-hook-serifed-symmetric]
rank = 8
description = "J with flat hook and top serif at both sides (symmetric)"
selector.J = "flatHookSerifedSymmetric"
selector."J/sansSerif" = "flatHookSerifless"
[prime.capital-j.variants.descending-serifless]
rank = 9
description = "J with hook goes below descender and without serif"
selector.J = "descendingSerifless"
selector."J/sansSerif" = "descendingSerifless"
[prime.capital-j.variants.descending-serifed]
rank = 10
description = "J with hook goes below descender and top serif at left side"
selector.J = "descendingSerifed"
selector."J/sansSerif" = "descendingSerifless"
[prime.capital-j.variants.descending-serifed-both-sides]
rank = 11
description = "J with hook goes below descender and top serif at both sides (asymmetric)"
selector.J = "descendingSerifedBothSides"
selector."J/sansSerif" = "descendingSerifless"
[prime.capital-j.variants.descending-serifed-symmetric]
rank = 12
description = "J with hook goes below descender and top serif at both sides (symmetric)"
selector.J = "descendingSerifedSymmetric"
selector."J/sansSerif" = "descendingSerifless"
[prime.capital-j.variants.descending-flat-hook-serifless]
rank = 13
description = "J with flat hook goes below descender and without serif"
selector.J = "descendingFlatHookSerifless"
selector."J/sansSerif" = "descendingFlatHookSerifless"
[prime.capital-j.variants.descending-flat-hook-serifed]
rank = 14
description = "J with flat hook goes below descender and top serif at left side"
selector.J = "descendingFlatHookSerifed"
selector."J/sansSerif" = "descendingFlatHookSerifless"
[prime.capital-k]
sampler = "K"
tag = "cv11"
[prime.capital-k.variants.straight-serifless]
rank = 1
description = "`K` with standard shape, without serifs"
selector.K = "straightSerifless"
selector."K/sansSerif" = "straightSerifless"
selector."grek/kappa" = "straightSerifless"
[prime.capital-k.variants.curly-serifless]
rank = 2
description = "Slightly curly `K`, like Iosevka 2.x, without serifs"
selector.K = "curlySerifless"
selector."K/sansSerif" = "curlySerifless"
selector."grek/kappa" = "curlySerifless"
[prime.capital-k.variants.symmetric-touching-serifless]
rank = 3
description = "`K` with symmetric legs disconnected to the vertical bar, without serifs"
selector.K = "symmetricTouchingSerifless"
selector."K/sansSerif" = "symmetricTouchingSerifless"
selector."grek/kappa" = "symmetricTouchingSerifless"
[prime.capital-k.variants.symmetric-connected-serifless]
rank = 4
description = "`K` with symmetric legs connected to the vertical bar, without serifs"
selector.K = "symmetricConnectedSerifless"
selector."K/sansSerif" = "symmetricConnectedSerifless"
selector."grek/kappa" = "symmetricConnectedSerifless"
[prime.capital-k.variants.straight-top-left-serifed]
rank = 5
description = "`K` with standard shape and serifs at top left"
selector.K = "straightTopLeftSerifed"
selector."K/sansSerif" = "straightSerifless"
selector."grek/kappa" = "straightSerifless"
[prime.capital-k.variants.curly-top-left-serifed]
rank = 6
description = "Slightly curly `K`, like Iosevka 2.x, with serifs at top left"
selector.K = "curlyTopLeftSerifed"
selector."K/sansSerif" = "curlySerifless"
selector."grek/kappa" = "curlySerifless"
[prime.capital-k.variants.symmetric-touching-top-left-serifed]
rank = 7
description = "`K` with symmetric legs disconnected to the vertical bar, and serifs at top left"
selector.K = "symmetricTouchingTopLeftSerifed"
selector."K/sansSerif" = "symmetricTouchingSerifless"
selector."grek/kappa" = "symmetricTouchingSerifless"
[prime.capital-k.variants.symmetric-connected-top-left-serifed]
rank = 8
description = "`K` with symmetric legs connected to the vertical bar, and serifs at top left"
selector.K = "symmetricConnectedTopLeftSerifed"
selector."K/sansSerif" = "symmetricConnectedSerifless"
selector."grek/kappa" = "symmetricConnectedSerifless"
[prime.capital-k.variants.straight-bottom-right-serifed]
rank = 9
description = "`K` with standard shape and serifs at bottom right"
selector.K = "straightBottomRightSerifed"
selector."K/sansSerif" = "straightSerifless"
selector."grek/kappa" = "straightSerifless"
[prime.capital-k.variants.curly-bottom-right-serifed]
rank = 10
description = "Slightly curly `K`, like Iosevka 2.x, with serifs at bottom right"
selector.K = "curlyBottomRightSerifed"
selector."K/sansSerif" = "curlySerifless"
selector."grek/kappa" = "curlySerifless"
[prime.capital-k.variants.symmetric-touching-bottom-right-serifed]
rank = 11
description = "`K` with symmetric legs disconnected to the vertical bar, and serifs at bottom right"
selector.K = "symmetricTouchingBottomRightSerifed"
selector."K/sansSerif" = "symmetricTouchingSerifless"
selector."grek/kappa" = "symmetricTouchingSerifless"
[prime.capital-k.variants.symmetric-connected-bottom-right-serifed]
rank = 12
description = "`K` with symmetric legs connected to the vertical bar, and serifs at bottom right"
selector.K = "symmetricConnectedBottomRightSerifed"
selector."K/sansSerif" = "symmetricConnectedSerifless"
selector."grek/kappa" = "symmetricConnectedSerifless"
[prime.capital-k.variants.straight-serifed]
rank = 13
description = "`K` with standard shape, and serifs"
selector.K = "straightSerifed"
selector."K/sansSerif" = "straightSerifless"
selector."grek/kappa" = "straightSerifless"
[prime.capital-k.variants.curly-serifed]
rank = 14
description = "Slightly curly `K`, like Iosevka 2.x, and with serifs"
selector.K = "curlySerifed"
selector."K/sansSerif" = "curlySerifless"
selector."grek/kappa" = "curlySerifless"
[prime.capital-k.variants.symmetric-touching-serifed]
rank = 15
description = "`K` with symmetric legs disconnected to the vertical bar, and serifs"
selector.K = "symmetricTouchingSerifed"
selector."K/sansSerif" = "symmetricTouchingSerifless"
selector."grek/kappa" = "symmetricTouchingSerifless"
[prime.capital-k.variants.symmetric-connected-serifed]
rank = 16
description = "`K` with symmetric legs connected to the vertical bar, and serifs"
selector.K = "symmetricConnectedSerifed"
selector."K/sansSerif" = "symmetricConnectedSerifless"
selector."grek/kappa" = "symmetricConnectedSerifless"
[prime.capital-l]
sampler = "L"
tag = "cv12"
[prime.capital-l.variants.serifless]
rank = 1
description = "Serifless `L`"
selector.L = "serifless"
selector."L/sansSerif" = "serifless"
[prime.capital-l.variants.motion-serifed]
rank = 2
description = "Standard `L` with motion serif at bottom right"
selector.L = "motionSerifed"
selector."L/sansSerif" = "serifless"
[prime.capital-l.variants.serifed]
rank = 3
description = "`L` with serifs"
selector.L = "serifed"
selector."L/sansSerif" = "serifless"
[prime.capital-m]
sampler = "M"
tag = "cv13"
[prime.capital-m.variants.hanging]
rank = 1
description = "`M` with middle being hanging off baseline"
selector.M = "hanging"
selector."M/sansSerif" = "hanging"
selector."cyrl/em" = "hangingSmallCyrl"
[prime.capital-m.variants.flat-bottom]
rank = 2
description = "`M` with middle aligned to baseline"
selector.M = "flatBottom"
selector."M/sansSerif" = "flatBottom"
selector."cyrl/em" = "flatBottomSmallCyrl"
[prime.capital-m.variants.slanted-sides-hanging]
rank = 3
description = "`M` with slanted sides and middle being hanging off baseline"
selector.M = "slantedSidesHanging"
selector."M/sansSerif" = "slantedSidesHanging"
selector."cyrl/em" = "slantedSidesHangingSmallCyrl"
[prime.capital-m.variants.slanted-sides-flat-bottom]
rank = 4
description = "`M` with slanted sides and middle aligned to baseline"
selector.M = "slantedSidesFlatBottom"
selector."M/sansSerif" = "slantedSidesFlatBottom"
selector."cyrl/em" = "slantedSidesFlatBottomSmallCyrl"
[prime.capital-m.variants.hanging-motion-serifed]
rank = 5
description = "`M` with middle being hanging off baseline and motion serifs"
selector.M = "hangingMotionSerifed"
selector."M/sansSerif" = "hanging"
selector."cyrl/em" = "hangingMotionSerifed"
[prime.capital-m.variants.flat-bottom-motion-serifed]
rank = 6
description = "`M` with middle aligned to baseline and motion serifs"
selector.M = "flatBottomMotionSerifed"
selector."M/sansSerif" = "flatBottom"
selector."cyrl/em" = "flatBottomMotionSerifed"
[prime.capital-m.variants.slanted-sides-hanging-motion-serifed]
rank = 7
description = "`M` with slanted sides, middle being hanging off baseline, and motion serifs"
selector.M = "slantedSidesHangingMotionSerifed"
selector."M/sansSerif" = "slantedSidesHanging"
selector."cyrl/em" = "slantedSidesHangingMotionSerifed"
[prime.capital-m.variants.slanted-sides-flat-bottom-motion-serifed]
rank = 8
description = "`M` with slanted sides, middle aligned to baseline, and motion serifs"
selector.M = "slantedSidesFlatBottomMotionSerifed"
selector."M/sansSerif" = "slantedSidesFlatBottom"
selector."cyrl/em" = "slantedSidesFlatBottomMotionSerifed"
[prime.capital-n]
sampler = "N"
tag = "cv14"
[prime.capital-n.variants.standard]
rank = 1
description = "Standard N"
selector.N = "standard"
selector."N/sansSerif" = "standard"
[prime.capital-n.variants.asymmetric]
rank = 2
description = "More asymmetric N, with the diagonal bar stops at middle of right stem"
selector.N = "asymmetric"
selector."N/sansSerif" = "asymmetric"
[prime.capital-n.variants.motion-serifed]
rank = 3
description = "Standard N with motion serifs"
selector.N = "motionSerifed"
selector."N/sansSerif" = "standard"
[prime.capital-n.variants.asymmetric-motion-serifed]
rank = 4
description = "More asymmetric N, with the diagonal bar stops at middle of right stem and motion serifs"
selector.N = "asymmetricMotionSerifed"
selector."N/sansSerif" = "asymmetric"
[prime.capital-p]
sampler = "P"
tag = "cv15"
[prime.capital-p.variants.closed]
rank = 1
description = "Closed `P`"
selector.P = "closed"
selector."P/sansSerif" = "closed"
selector."PHookLeft" = "closed"
selector."currency/rubleSign" = "closed"
[prime.capital-p.variants.open]
rank = 2
description = "P with open contour at bottom"
selector.P = "open"
selector."P/sansSerif" = "open"
selector."PHookLeft" = "open"
selector."currency/rubleSign" = "closed"
[prime.capital-p.variants.closed-motion-serifed]
rank = 3
description = "Closed `P` with motion serifs"
selector.P = "closedMotionSerifed"
selector."P/sansSerif" = "closed"
selector."PHookLeft" = "closedMotionSerifed"
selector."currency/rubleSign" = "closedMotionSerifed"
[prime.capital-p.variants.open-motion-serifed]
rank = 4
description = "P with open contour at bottom and motion serifs"
selector.P = "openMotionSerifed"
selector."P/sansSerif" = "open"
selector."PHookLeft" = "openMotionSerifed"
selector."currency/rubleSign" = "closedMotionSerifed"
[prime.capital-q]
sampler = "Q"
tag = "cv16"
[prime.capital-q.variants.curly-tailed]
rank = 1
description = "`Q` with a curly tail"
selector.Q = "curlyTailed"
[prime.capital-q.variants.crossing-curly-tailed]
rank = 2
description = "`Q` with a curly tail"
selector.Q = "crossingCurlyTailed"
[prime.capital-q.variants.straight]
rank = 3
description = "`Q` with a straight tail like in the old versions"
selector.Q = "straight"
[prime.capital-q.variants.crossing]
rank = 4
description = "`Q` with a tail crossing the ring"
selector.Q = "crossing"
[prime.capital-q.variants.vertical-crossing]
rank = 5
description = "`Q` with a vertical tail crossing the ring"
selector.Q = "verticalCrossing"
[prime.capital-q.variants.horizontal-tailed]
rank = 6
description = "`Q` with a horizontal tail, like Univers"
selector.Q = "horizontalTailed"
[prime.capital-q.variants.detached-tailed]
rank = 7
description = "`Q` with a oblique tail detached"
selector.Q = "detachedTailed"
[prime.capital-q.variants.detached-bend-tailed]
rank = 8
description = "`Q` with a bend tail detached"
selector.Q = "detachedBendTailed"
[prime.capital-r]
sampler = "R"
tag = "cv17"
[prime.capital-r.variants.straight]
rank = 1
description = "Standard, straight-leg `R`"
selector.R = "straight"
selector."R/sansSerif" = "straight"
selector.Rrotunda = "straight"
[prime.capital-r.variants.curly]
rank = 2
description = " Slightly curly-legged `R`, like Iosevka 2.x"
selector.R = "curly"
selector."R/sansSerif" = "curly"
selector.Rrotunda = "curly"
[prime.capital-r.variants.standing]
rank = 3
description = "`R` with near-vertical standing leg"
selector.R = "standing"
selector."R/sansSerif" = "standing"
selector.Rrotunda = "standing"
[prime.capital-r.variants.straight-open]
rank = 4
description = "Standard, straight-leg `R`, with open contour at bottom"
selector.R = "straightOpen"
selector."R/sansSerif" = "straightOpen"
selector.Rrotunda = "straight"
[prime.capital-r.variants.curly-open]
rank = 5
description = " Slightly curly-legged `R`, like Iosevka 2.x, with open contour at bottom"
selector.R = "curlyOpen"