forked from anishathalye/dotfiles_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fonts.conf
1542 lines (1328 loc) · 37.3 KB
/
fonts.conf
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
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!--
Documented at
http://linux.die.net/man/5/fonts-conf
To check font mapping run the command at terminal
$ fc-match 'helvetica Neue'
WARNING :: Droid Sans font with autohinter becomes bad, without autohinter looks great, but becomes smallish, cant help
even the smallish is so good, that i am using it on desktop
but cannot be used as a substitution for arial, since 12px (which is very common on websites) becomes small as if tahoma 10px
Noto sans does better in this case, can be used as arial substitution without loss of size
noto sans is slightly fatter than droid sans
Open sans is much fat, and open sans bold looks bad, hence we choose noto sans as the replacement for arial
Download the following fonts
Droid fonts whole sets
Download from google web fonts
open sans all styles
noto sans all styles
noto serif all styles
-->
<!--
.fonts.conf
release 6.3.23
Licensed under GNU GPL
================================
LCD optimized 96 dpi
"Sharp'N'Clear" font settings
with emphasis on 'msttcorefonts'
tested on Ubuntu GNU/Linux 5.10
================================
by Obi Bok
Gmail: obibok
http://linuxtuneup.blogspot.com
================================
Why was this conceived?
- some font families look better hinted by Byte Code Interpreter (BCI)
while other fonts look better hinted by Auto-Hinter
- hinting type affects italic and bold fonts differently
- antialiasing needs to be adjusted according to font families and sizes
Essentially, there is no one single rule that works for all fonts.
NOTE:
- Verdana @ 8pt doesn't render '2' and '6' right
- Arial shows 'Z' distorted in Firefox 1.5
-->
<!--
Make font sizes match the dpi set in Xorg.
Increase or decrease this value if fonts are too small or too large
for your screen resolution.
FIXME: this only affects QT-based apps?
-->
<match target="pattern">
<edit name="dpi" mode="assign">
<double>96</double>
</edit>
</match>
<!--
Enable anti-aliasing.
This only works for outline and scalable fonts.
Bitmap and PostScript fonts do not get anti-aliased.
FIXME: is this correct?
-->
<match target="font">
<edit name="antialias" mode="assign">
<bool>true</bool>
</edit>
</match>
<!--
Set sub-pixel order if not detected.
"X knows the sub pixel order already, and if this is enabled as well,
Freetype produces some very strange results. However, if you do still
have problems, consider (...) 'rgb' (the standard for LCD monitors),
'bgr' (unusual), 'vrgb' (vertical rgb, if you have a monitor that
has been rotated by 90 degrees[1]), 'vgbr' (as vrgb, but very rare)."
<http://www.linuxquestions.org/linux/answers/Hardware/\
LCD_TFT_Monitor_Configuration_in_X_Org>
Find out your LCD's sub-pixel order:
<http://grc.com/image/cleartype2c.gif>
-->
<match target="font">
<test qual="all" name="rgba" compare="eq">
<const>unknown</const>
</test>
<edit name="rgba" mode="assign">
<const>rgb</const>
</edit>
</match>
<!--
Sub-pixel hinting via BCI enabled by default if compiled in.
"Whole-pixel anti-aliasing does not represent a useful solution for
improving small point-size type. (...) By 'borrowing' sub-pixels from
adjacent whole pixels, we can fine-tune the placement and width of typeface
features with three times more horizontal accuracy then ever before!"
<http://grc.com/ctwhat.htm>
-->
<!--
Disable anti-aliasing for select fonts based on size and style.
| font | WinXP | Linux |
=========================================
Andale Mono IPA 14 13
Arial 12 13
Arial Black 12 -
Arial Narrow 14 13
Berling Antiqua 12 13
Book Antiqua 12 13
Bookdings 0 ?
Bookman Old Style 22 13
Century Gothic 16 16
Comic Sans MS 11 9/11
Courier New 26 22
Franklin Gothic Medium 12 10/12
Frutiger Linotype 12 10/12
Garamond 18 13/19
Georgia 12 12/13
Impact 16 0
Kartika 12 16
Lucida Console 12 13
Lucida Sans Typewriter 12 12
Lucida Sans Unicode 12 10/13
Marlett ? ?
Microsoft Sans Serif 12 12/13
Palatino Linotype 12 13
SylfaenARM - 13
Symbol 12 ?
Tahoma 12 12/13
Times New Roman 12 13
Trebuchet MS 12 12
Verdana 12 12
Vrinda 12 17
Webdings 20 ?
Wingdings 20 ?
=========================================
"The relationship of pixels to points depends on the number of pixels
per inch, which is typically some 'standard' value corresponding to
default screen fonts. For example, MS Windows has two standard sets of
screen fonts initially designed for IBM display systems: 'small' (VGA)
and 'large' (8514/A). 'Small' fonts are 96 pixels per inch, 'large' are
120. Macintosh systems render type at a nominal 72 pixels per inch, i.e.
one pixel = one point. Some display systems using scalable screen fonts
allow fine tuning of pixels per inch to suit user preferences."
<http://www.hpaa.com/css1/pxnpts.asp>
X pt * 96 dpi / 72 dpi = Y px
-->
<!--
font group #1: normal roman anti-aliased above 10pt/13.4px
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Franklin Gothic Medium</string>
<string>Frutiger Linotype</string>
<!-- Lucida Sans Unicode has no italic and uses artificial oblique -->
<string>Lucida Sans Unicode</string>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>13.4</double>
</test>
<test qual="any" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="eq">
<const>roman</const>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
<!--
font group #2: normal roman anti-aliased above 11pt/14.7px
Must use 15px instead of 14.7px for this to work in QT-based apps
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<!-- Comic Sans MS has no italic and uses artificial oblique -->
<string>Comic Sans MS</string>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>15</double>
</test>
<test qual="any" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="eq">
<const>roman</const>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
<!--
font group #3: normal roman anti-aliased above 12pt/16px
Must use at least 16.1px instead of 16px for this to work in Firefox
Does not work in Chrome properly
In chrome 13px evalutes to 17.4px pixelsize test, funny!
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Georgia</string>
<string>Lucida Sans</string>
<string>Lucida Sans Typewriter</string>
<!-- Microsoft Sans Serif has no italic and uses artificial oblique -->
<string>Microsoft Sans Serif</string>
<!-- Tahoma has no italic and uses artificial oblique -->
<string>Tahoma</string>
<string>Trebuchet MS</string>
<string>Verdana</string>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>16.1</double>
</test>
<test qual="any" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="eq">
<const>roman</const>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
<!--
font group #4: normal roman anti-aliased above 13pt/17.4px
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Arial</string>
<string>Arial Narrow</string>
<string>Berling Antiqua</string>
<string>Book Antiqua</string>
<string>Bookman Old Style</string>
<string>Garamond</string>
<!-- Lucida Console has no italic and uses artificial oblique -->
<string>Lucida Console</string>
<string>Palatino Linotype</string>
<string>SylfaenARM</string>
<string>Times New Roman</string>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>17.4</double>
</test>
<test qual="any" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="eq">
<const>roman</const>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
<!--
font group #5: normal roman anti-aliased above 16pt/21.4px
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Century Gothic</string>
<string>Kartika</string>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>21.4</double>
</test>
<test qual="any" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="eq">
<const>roman</const>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
<!--
font group #6: normal roman anti-aliased above 17pt/23px
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Vrinda</string>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>23</double>
</test>
<test qual="any" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="eq">
<const>roman</const>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
<!--
font group #7: normal roman anti-aliased above 22pt/29.4px
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Courier New</string>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>29.4</double>
</test>
<test qual="any" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="eq">
<const>roman</const>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
<!--
font group #8: bold roman anti-aliased above 9pt/12px
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Georgia</string>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>12</double>
</test>
<test qual="any" name="weight" compare="more">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="eq">
<const>roman</const>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
<!--
font group #9: bold roman anti-aliased above 10pt/13.4px
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Tahoma</string>
<string>Verdana</string>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>13.4</double>
</test>
<test qual="any" name="weight" compare="more">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="eq">
<const>roman</const>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
<!--
font group #10: bold roman anti-aliased above 12pt/16px
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Courier New</string>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>16</double>
</test>
<test qual="any" name="weight" compare="more">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="eq">
<const>roman</const>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
<!--
Enable FreeType Auto-Hinter for select fonts.
Auto-Hinter is disabled by default if Bytecode Interpreter was compiled in.
Some Linux "native" fonts look better hinted by Auto-Hinter,
usually in sizes 11pt-13pt; others look better hinted by BCI.
-->
<!--
Set Auto-Hinter to full hinting style.
'slight' and 'medium' hinting often produce pixel discoloration.
hintfull for all fonts by default
-->
<match target="font">
<edit name="hintstyle" mode="assign">
<const>hintfull</const>
</edit>
</match>
<!--
font group #11: hinted via Auto-Hinter
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Bitstream Charter</string>
<string>Courier 10 Pitch</string>
<string>DejaVu Sans Condensed</string>
<string>DejaVu Serif Condensed</string>
<string>FreeMono</string>
<string>FreeSans</string>
<string>FreeSerif</string>
<string>Luxi Mono</string>
<string>Luxi Sans</string>
<string>Luxi Serif</string>
<string>MgOpen Canonica</string>
<string>MgOpen Cosmetica</string>
<string>MgOpen Modata</string>
<string>MgOpen Moderna</string>
<string>URW Bookman L</string>
<string>URW Chancery L</string>
<string>URW Gothic L</string>
<string>URW Palladio L</string>
</test>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<!--
font group #12: normal italic hinted via Auto-Hinter at 9-10pt
Arial hinted via BCI at 9pt has distorted 'y', at 10pt - '2'
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Arial</string>
</test>
<test qual="any" name="pixelsize" compare="more_eq">
<double>12</double>
</test>
<test qual="any" name="pixelsize" compare="less_eq">
<double>13.4</double>
</test>
<test qual="any" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="not_eq">
<const>roman</const>
</test>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<!--
font group #13: normal italic hinted via Auto-Hinter at 12pt
This fixes distorted 'K'
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Book Antiqua</string>
</test>
<test qual="any" name="pixelsize" compare="eq">
<double>16</double>
</test>
<test qual="any" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="not_eq">
<const>roman</const>
</test>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<!--
font group #14: normal italic hinted via Auto-Hinter at all sizes
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<!-- 10, 11, 12 -->
<string>Frutiger Linotype</string>
<!-- 8-9: 'z', '2'; 10-15, 17, 19: 'z' -->
<string>Times New Roman</string>
<!-- 9-10: 'N' 'Q'; 12: 'w', 'C', 'D', 'O', 'Q', 'R', '2', '9', '0' -->
<string>Verdana</string>
</test>
<test qual="any" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test qual="any" name="slant" compare="not_eq">
<const>roman</const>
</test>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<!--
Set minimum allowed size to avoid illegible fonts.
-->
<!-- 7pt in QT-based apps -->
<match target="pattern">
<test qual="any" name="size" compare="less">
<double>7</double>
</test>
<edit name="size" mode="assign">
<double>7</double>
</edit>
</match>
<!-- 9.4px (7pt) in GTK-based apps -->
<match target="pattern">
<test qual="any" name="pixelsize" compare="less">
<double>9.4</double>
</test>
<edit name="pixelsize" mode="assign">
<double>9.4</double>
</edit>
</match>
<!--
TODO: Create rules limiting minimum sizes for these *bold* fonts:
Andale Mono | Andale Mono IPA
Arial
Arial Narrow
Berling Antiqua
Book Antiqua
Bookman Old Style
Century Gothic
Comic Sans MS
Courier New
Franklin Gothic Medium
Frutiger Linotype
Garamond
Georgia
Kartika
Lucida Console
Lucida Sans Typewriter
Lucida Sans Unicode
Microsoft Sans Serif
Palatino | Palatino Linotype
SylfaenARM
Tahoma
Times New Roman
Trebuchet MS
Verdana
Vrinda
-->
<!--
font group #15: bold fonts no smaller than 10.7px (8pt)
FIXME: for Firefox and other GTK-based apps?
-->
<match target="font">
<test qual="any" name="family" compare="eq">
<string>Arial</string>
</test>
<test qual="any" name="pixelsize" compare="less">
<double>10.7</double>
</test>
<test qual="any" name="weight" compare="more">
<const>medium</const>
</test>
<edit name="pixelsize" mode="assign">
<double>10.7</double>
</edit>
</match>
<!--
Anti-alias fonts with "fake" styles.
FIXME: QT only? GTK? Firefox?
-->
<!-- FIXME: dirty_hack(tm) - fontconfig reports syntax errors -->
<match target="font">
<test qual="any" name="matrix" compare="not_eq">
<double>0</double>
</test>
<!-- another approach - no errors but freezes Firefox 1.5 -->
<!--
<match target="font">
<test qual="any" name="matrix" compare="eq">
<name>matrix</name>
</test>
-->
<edit name="antialias" mode="assign">
<bool>true</bool>
</edit>
</match>
<!--
Substitute unavailable and/or unwanted fonts.
Aliases will not work if the actual fonts are installed.
Replacing font family works in Firefox (FIXME: and other GTK-based apps?)
QT-based apps also need font foundry replaced.
Grouping fonts for substitution doesn't work in Firefox, so we need each
font family replaced individually.
-->
<!--
sans-serif
"If the font still has no generic name, add sans-serif"
/etc/fonts.conf
Therefore, we only substitute what we need.
-->
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Bitstream Charter</string>
</test>
<edit name="family" mode="append" binding="same">
<string>serif</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Bitstream Vera Sans</string>
</test>
<edit name="family" mode="append" binding="same">
<string>sans</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>DejaVu Sans</string>
</test>
<edit name="family" mode="append" binding="same">
<string>sans</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>DejaVu Sans Condensed</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
<!--
Dont do this, overriding freesans will cause utf fonts to be come rubbish in chrome
-->
<!--
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>FreeSans</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
-->
<!--
ON web pages if font family is like this
font-family: 'Helvetica Neue', arial, sans-serif;
google chrome will immediately move to next font, if it does not find the first, even if there are append entries
But firefox will take the append entry if the font does not exist :)
-->
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Helvetica</string>
</test>
<edit name="family" mode="append" binding="same">
<string>Sans</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Helvetica Neue</string>
</test>
<edit name="family" mode="append" binding="same">
<string>Sans</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Lucida</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<!-- FIXME: may need to use "Lucida Bright" instead -->
<string>LucidaBright</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Lucida Bright</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Luxi Sans</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>MgOpen Cosmetica</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>MgOpen Modata</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>MgOpen Moderna</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>System</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>URW Gothic L</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Arial</string>
</edit>
</match>
<!--
FIXME: Verdana renders characters '2' and '6' slightly distorted
so it will be substituted with Arial.
EDIT Silver Moon : not replacing verdana with arial.
hey verdana is slightly fatty, how about replacing it with open sans or noto sans
open sans is fattier compared to droid sans
BAH, it looks good
Open Sans is cramped at 11px with autohint = true
'sa' the s and a will stick badly
'50' the 5 and 0 will stick badly
But 12px onwards Open Sans is better than Noto Sans
But the vote goes to noto sans for verdana replaced to maintain beauty at 11px
Another note
noto sans has single stroke small g , open sans has the 2 round style g
noto sans p is thin, open sans p is better looking
-->
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Verdana</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Noto Sans</string>
</edit>
<edit name="family" mode="prepend" binding="same">
<string>Open Sans</string>
</edit>
</match>
<!--
serif
-->
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Bitstream Vera Serif</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>DejaVu Serif</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>DejaVu Serif Condensed</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Luxi Serif</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>MgOpen Canonica</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>New Century Schoolbook</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>New York</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Palatino</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Times</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>URW Bookman L</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>URW Palladio L</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Georgia</string>
</edit>
</match>
<!--
monospace
-->
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Andale Mono</string>
</test>
<edit name="family" mode="append" binding="same">
<string>monospace</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Bitstream Vera Sans Mono</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Courier New</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Courier</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>monospace</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>DejaVu Sans Mono</string>
</test>
<edit name="family" mode="append" binding="same">
<string>monospace</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family" compare="eq">
<string>Fixedsys</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>Courier New</string>
</edit>
</match>