-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcommon.conf
More file actions
118 lines (81 loc) · 4.73 KB
/
common.conf
File metadata and controls
118 lines (81 loc) · 4.73 KB
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
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<description>Common aliases for all screens</description>
<!-- Most of the following common typefaces are not perfectly hinted for
low DPI screens, but they are typically used at bigger sizes. -->
<!-- Metrically-identical replacements. -->
<!-- Arial Black, Helvetica Black, Nimbus Sans Black.
The hinted TTF for low DPI setups, the OTFs for high DPI. -->
<include prefix="xdg">fontconfig/common/archivo-black.conf</include>
<!-- Some of the URW base 35 fonts. TTF for low DPI, OTF for high DPI.
Only those good enough for loDPI screens too, because they are either:
* highly legible even at small sizes (Century Gothic),
* not typically used at very small sizes (Palatino),
* or of special type (Dingbats, Symbol). -->
<!-- Avant Garde, Century Gothic, etc.
Century Gothic used on: https://www.nationalgeographic.com (fallback),
https://e.foundation. -->
<include prefix="xdg">fontconfig/common/urw-gothic.conf</include>
<!-- Bitter. An open-source font frequently used for the web.
TTF version from the googlefontdirectory repo is to be
used on low DPI screens. Latest version only for high DPI screens.
Used on: https://arstechnica.com. -->
<include prefix="xdg">fontconfig/common/bitter.conf</include>
<!-- Book Antiqua, Palatino, Palatino Lynotype, etc.
Palatino used on: https://www.nature.com (fallback). -->
<include prefix="xdg">fontconfig/common/urw-p052.conf</include>
<!-- Dingbats, Zapf Dingbats, etc. -->
<include prefix="xdg">fontconfig/common/urw-d050000l.conf</include>
<!-- Symbols, etc. -->
<include prefix="xdg">fontconfig/common/urw-standard-symbols-ps.conf</include>
<!-- Some more rules that come with the above URW base fonts. -->
<include prefix="xdg">fontconfig/common/urw-fallback-backwards.conf</include>
<include prefix="xdg">fontconfig/common/urw-fallback-generics.conf</include>
<include prefix="xdg">fontconfig/common/urw-fallback-specifics.conf</include>
<!-- Charter, Bitstream Charter, ITC Charter.
Used on: https://medium.com, https://www.economist.com (fallback). -->
<include prefix="xdg">fontconfig/common/charter.conf</include>
<!-- Comic Sans MS, Chalkboard. The latter is not metrically-identical. -->
<include prefix="xdg">fontconfig/common/comic-relief.conf</include>
<!-- End of metrically-identical replacements -->
<!-- From here on, matches are not that great,
but it's better to differentiate these typefaces. -->
<!-- Fonts perfectly hinted at small sizes. -->
<!-- Trebuchet MS. TTF version from the googlefontdirectory repo is to be
used on low DPI screens. Latest version only for high DPI screens.
Used on: https://www.lidl.com, https://www.nih.gov (fallback). -->
<include prefix="xdg">fontconfig/common/cabin.conf</include>
<!-- End of list of fonts perfectly hinted at small sizes. -->
<!-- Arial Rounded MT Bold, Helvetica Rounded LT Std Bold. -->
<include prefix="xdg">fontconfig/common/varela-round.conf</include>
<!-- Baskerville, Baskerville Old Face, Baskerville PT.
Used on: https://theconversation.com, https://www.the-scientist.com.-->
<include prefix="xdg">fontconfig/common/libre-baskerville.conf</include>
<!-- Brush Script MT. -->
<include prefix="xdg">fontconfig/common/kaushan-script.conf</include>
<!-- Copperplate, Copperplate Gothic. -->
<include prefix="xdg">fontconfig/common/cinzel-decorative.conf</include>
<!-- Economica, Impact.
Economica used on: https://arstechnica.com.
Impact used on: https://www.rottentomatoes.com (fallback). -->
<include prefix="xdg">fontconfig/common/oswald.conf</include>
<!-- Garamond, Garamond MT, Garamond Premier Pro.
Used on: https://theatlantic.com, https://harpers.org (fallback). -->
<include prefix="xdg">fontconfig/common/garamond-libre.conf</include>
<!-- Gill Sans, Gill Sans MT.
Used on: https://www.biorxiv.org, https://www.nationalgeographic.com
(fallback). -->
<include prefix="xdg">fontconfig/common/gillius-adf-no2.conf</include>
<!-- Emoji settings and aliases -->
<!-- Twemoji and derivatives is better for Firefox-based browsers.
For Chrome-based ones, Noto Color Emoji is best. -->
<include prefix="xdg">fontconfig/common/twitter-color-emoji.conf</include>
<!-- Extra rules -->
<alias binding="same">
<family>Font Awesome</family>
<prefer>
<family>Font Awesome 5 Free Solid</family>
</prefer>
</alias>
</fontconfig>