Raph Levien | 8c1f936 | 2014-08-07 13:52:37 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
Raph Levien | 117cbeb | 2014-08-25 13:47:16 -0700 | [diff] [blame] | 2 | <!-- |
| 3 | NOTE: this is the newer (L) version of the system font configuration, |
| 4 | supporting richer weight selection. Some apps will expect the older |
| 5 | version, so please keep system_fonts.xml and fallback_fonts.xml in sync |
| 6 | with any changes, even though framework will only read this file. |
| 7 | |
| 8 | All fonts withohut names are added to the default list. Fonts are chosen |
| 9 | based on a match: full BCP-47 language tag including script, then just |
| 10 | language, and finally order (the first font containing the glyph). |
| 11 | |
| 12 | Order of appearance is also the tiebreaker for weight matching. This is |
| 13 | the reason why the 900 weights of Roboto precede the 700 weights - we |
| 14 | prefer the former when an 800 weight is requested. Since bold spans |
| 15 | effectively add 300 to the weight, this ensures that 900 is the bold |
| 16 | paired with the 500 weight, ensuring adequate contrast. |
| 17 | --> |
Raph Levien | 8c1f936 | 2014-08-07 13:52:37 -0700 | [diff] [blame] | 18 | <familyset version="22"> |
| 19 | <!-- first font is default --> |
| 20 | <family name="sans-serif"> |
| 21 | <font weight="100" style="normal">Roboto-Thin.ttf</font> |
| 22 | <font weight="100" style="italic">Roboto-ThinItalic.ttf</font> |
| 23 | <font weight="300" style="normal">Roboto-Light.ttf</font> |
| 24 | <font weight="300" style="italic">Roboto-LightItalic.ttf</font> |
| 25 | <font weight="400" style="normal">Roboto-Regular.ttf</font> |
| 26 | <font weight="400" style="italic">Roboto-Italic.ttf</font> |
| 27 | <font weight="500" style="normal">Roboto-Medium.ttf</font> |
| 28 | <font weight="500" style="italic">Roboto-MediumItalic.ttf</font> |
Raph Levien | 8c1f936 | 2014-08-07 13:52:37 -0700 | [diff] [blame] | 29 | <font weight="900" style="normal">Roboto-Black.ttf</font> |
| 30 | <font weight="900" style="italic">Roboto-BlackItalic.ttf</font> |
Raph Levien | 117cbeb | 2014-08-25 13:47:16 -0700 | [diff] [blame] | 31 | <font weight="700" style="normal">Roboto-Bold.ttf</font> |
| 32 | <font weight="700" style="italic">Roboto-BoldItalic.ttf</font> |
Raph Levien | 8c1f936 | 2014-08-07 13:52:37 -0700 | [diff] [blame] | 33 | </family> |
| 34 | |
| 35 | <!-- Note that aliases must come after the fonts they reference. --> |
| 36 | <alias name="sans-serif-thin" to="sans-serif" weight="100" /> |
| 37 | <alias name="sans-serif-light" to="sans-serif" weight="300" /> |
Raph Levien | 117cbeb | 2014-08-25 13:47:16 -0700 | [diff] [blame] | 38 | <alias name="sans-serif-medium" to="sans-serif" weight="500" /> |
Raph Levien | 8c1f936 | 2014-08-07 13:52:37 -0700 | [diff] [blame] | 39 | <alias name="sans-serif-black" to="sans-serif" weight="900" /> |
| 40 | <alias name="arial" to="sans-serif" /> |
| 41 | <alias name="helvetica" to="sans-serif" /> |
| 42 | <alias name="tahoma" to="sans-serif" /> |
| 43 | <alias name="verdana" to="sans-serif" /> |
| 44 | |
| 45 | <family name="sans-serif-condensed"> |
| 46 | <font weight="300" style="normal">RobotoCondensed-Light.ttf</font> |
| 47 | <font weight="300" style="italic">RobotoCondensed-LightItalic.ttf</font> |
| 48 | <font weight="400" style="normal">RobotoCondensed-Regular.ttf</font> |
| 49 | <font weight="400" style="italic">RobotoCondensed-Italic.ttf</font> |
| 50 | <font weight="700" style="normal">RobotoCondensed-Bold.ttf</font> |
| 51 | <font weight="700" style="italic">RobotoCondensed-BoldItalic.ttf</font> |
| 52 | </family> |
| 53 | <alias name="sans-serif-condensed-light" to="sans-serif-condensed" weight="300" /> |
| 54 | |
| 55 | <family name="serif"> |
| 56 | <font weight="400" style="normal">NotoSerif-Regular.ttf</font> |
| 57 | <font weight="700" style="normal">NotoSerif-Bold.ttf</font> |
| 58 | <font weight="400" style="italic">NotoSerif-Italic.ttf</font> |
| 59 | <font weight="700" style="italic">NotoSerif-BoldItalic.ttf</font> |
| 60 | </family> |
| 61 | <alias name="times" to="serif" /> |
| 62 | <alias name="times new roman" to="serif" /> |
| 63 | <alias name="palatino" to="serif" /> |
| 64 | <alias name="georgia" to="serif" /> |
| 65 | <alias name="baskerville" to="serif" /> |
| 66 | <alias name="goudy" to="serif" /> |
| 67 | <alias name="fantasy" to="serif" /> |
| 68 | <alias name="ITC Stone Serif" to="serif" /> |
| 69 | |
| 70 | <family name="monospace"> |
| 71 | <font weight="400" style="normal">DroidSansMono.ttf</font> |
| 72 | </family> |
Alan Viverette | 4f9140b | 2014-10-10 12:52:25 -0700 | [diff] [blame] | 73 | <alias name="sans-serif-monospace" to="monospace" /> |
Raph Levien | 8c1f936 | 2014-08-07 13:52:37 -0700 | [diff] [blame] | 74 | <alias name="monaco" to="monospace" /> |
| 75 | |
Alan Viverette | 4f9140b | 2014-10-10 12:52:25 -0700 | [diff] [blame] | 76 | <family name="serif-monospace"> |
| 77 | <font weight="400" style="normal">CutiveMono.ttf</font> |
| 78 | </family> |
| 79 | <alias name="courier" to="serif-monospace" /> |
| 80 | <alias name="courier new" to="serif-monospace" /> |
| 81 | |
Raph Levien | 8c1f936 | 2014-08-07 13:52:37 -0700 | [diff] [blame] | 82 | <family name="casual"> |
| 83 | <font weight="400" style="normal">ComingSoon.ttf</font> |
| 84 | </family> |
| 85 | |
| 86 | <family name="cursive"> |
| 87 | <font weight="400" style="normal">DancingScript-Regular.ttf</font> |
| 88 | <font weight="700" style="normal">DancingScript-Bold.ttf</font> |
| 89 | </family> |
| 90 | |
| 91 | <family name="sans-serif-smallcaps"> |
| 92 | <font weight="400" style="normal">CarroisGothicSC-Regular.ttf</font> |
| 93 | </family> |
| 94 | |
| 95 | <!-- fallback fonts --> |
| 96 | <family variant="elegant"> |
| 97 | <font weight="400" style="normal">NotoNaskh-Regular.ttf</font> |
| 98 | <font weight="700" style="normal">NotoNaskh-Bold.ttf</font> |
| 99 | </family> |
| 100 | <family variant="compact"> |
| 101 | <font weight="400" style="normal">NotoNaskhUI-Regular.ttf</font> |
| 102 | <font weight="700" style="normal">NotoNaskhUI-Bold.ttf</font> |
| 103 | </family> |
| 104 | <family> |
| 105 | <font weight="400" style="normal">NotoSansEthiopic-Regular.ttf</font> |
| 106 | <font weight="700" style="normal">NotoSansEthiopic-Bold.ttf</font> |
| 107 | </family> |
| 108 | <family> |
| 109 | <font weight="400" style="normal">NotoSansHebrew-Regular.ttf</font> |
| 110 | <font weight="700" style="normal">NotoSansHebrew-Bold.ttf</font> |
| 111 | </family> |
| 112 | <family variant="elegant"> |
| 113 | <font weight="400" style="normal">NotoSansThai-Regular.ttf</font> |
| 114 | <font weight="700" style="normal">NotoSansThai-Bold.ttf</font> |
| 115 | </family> |
| 116 | <family variant="compact"> |
| 117 | <font weight="400" style="normal">NotoSansThaiUI-Regular.ttf</font> |
| 118 | <font weight="700" style="normal">NotoSansThaiUI-Bold.ttf</font> |
| 119 | </family> |
| 120 | <family> |
| 121 | <font weight="400" style="normal">NotoSansArmenian-Regular.ttf</font> |
| 122 | <font weight="700" style="normal">NotoSansArmenian-Bold.ttf</font> |
| 123 | </family> |
| 124 | <family> |
| 125 | <font weight="400" style="normal">NotoSansGeorgian-Regular.ttf</font> |
| 126 | <font weight="700" style="normal">NotoSansGeorgian-Bold.ttf</font> |
| 127 | </family> |
| 128 | <family variant="elegant"> |
| 129 | <font weight="400" style="normal">NotoSansDevanagari-Regular.ttf</font> |
| 130 | <font weight="700" style="normal">NotoSansDevanagari-Bold.ttf</font> |
| 131 | </family> |
| 132 | <family variant="compact"> |
| 133 | <font weight="400" style="normal">NotoSansDevanagariUI-Regular.ttf</font> |
| 134 | <font weight="700" style="normal">NotoSansDevanagariUI-Bold.ttf</font> |
| 135 | </family> |
| 136 | <!-- Gujarati should come after Devanagari --> |
| 137 | <family variant="elegant"> |
| 138 | <font weight="400" style="normal">NotoSansGujarati-Regular.ttf</font> |
| 139 | <font weight="700" style="normal">NotoSansGujarati-Bold.ttf</font> |
| 140 | </family> |
| 141 | <family variant="compact"> |
| 142 | <font weight="400" style="normal">NotoSansGujaratiUI-Regular.ttf</font> |
| 143 | <font weight="700" style="normal">NotoSansGujaratiUI-Bold.ttf</font> |
| 144 | </family> |
| 145 | <!-- Gurmukhi should come after Devanagari --> |
| 146 | <family variant="elegant"> |
| 147 | <font weight="400" style="normal">NotoSansGurmukhi-Regular.ttf</font> |
| 148 | <font weight="700" style="normal">NotoSansGurmukhi-Bold.ttf</font> |
| 149 | </family> |
| 150 | <family variant="compact"> |
| 151 | <font weight="400" style="normal">NotoSansGurmukhiUI-Regular.ttf</font> |
| 152 | <font weight="700" style="normal">NotoSansGurmukhiUI-Bold.ttf</font> |
| 153 | </family> |
| 154 | <family variant="elegant"> |
| 155 | <font weight="400" style="normal">NotoSansTamil-Regular.ttf</font> |
| 156 | <font weight="700" style="normal">NotoSansTamil-Bold.ttf</font> |
| 157 | </family> |
| 158 | <family variant="compact"> |
| 159 | <font weight="400" style="normal">NotoSansTamilUI-Regular.ttf</font> |
| 160 | <font weight="700" style="normal">NotoSansTamilUI-Bold.ttf</font> |
| 161 | </family> |
| 162 | <family variant="elegant"> |
| 163 | <font weight="400" style="normal">NotoSansMalayalam-Regular.ttf</font> |
| 164 | <font weight="700" style="normal">NotoSansMalayalam-Bold.ttf</font> |
| 165 | </family> |
| 166 | <family variant="compact"> |
| 167 | <font weight="400" style="normal">NotoSansMalayalamUI-Regular.ttf</font> |
| 168 | <font weight="700" style="normal">NotoSansMalayalamUI-Bold.ttf</font> |
| 169 | </family> |
| 170 | <family variant="elegant"> |
| 171 | <font weight="400" style="normal">NotoSansBengali-Regular.ttf</font> |
| 172 | <font weight="700" style="normal">NotoSansBengali-Bold.ttf</font> |
| 173 | </family> |
| 174 | <family variant="compact"> |
| 175 | <font weight="400" style="normal">NotoSansBengaliUI-Regular.ttf</font> |
| 176 | <font weight="700" style="normal">NotoSansBengaliUI-Bold.ttf</font> |
| 177 | </family> |
| 178 | <family variant="elegant"> |
| 179 | <font weight="400" style="normal">NotoSansTelugu-Regular.ttf</font> |
| 180 | <font weight="700" style="normal">NotoSansTelugu-Bold.ttf</font> |
| 181 | </family> |
| 182 | <family variant="compact"> |
| 183 | <font weight="400" style="normal">NotoSansTeluguUI-Regular.ttf</font> |
| 184 | <font weight="700" style="normal">NotoSansTeluguUI-Bold.ttf</font> |
| 185 | </family> |
| 186 | <family variant="elegant"> |
| 187 | <font weight="400" style="normal">NotoSansKannada-Regular.ttf</font> |
| 188 | <font weight="700" style="normal">NotoSansKannada-Bold.ttf</font> |
| 189 | </family> |
| 190 | <family variant="compact"> |
| 191 | <font weight="400" style="normal">NotoSansKannadaUI-Regular.ttf</font> |
| 192 | <font weight="700" style="normal">NotoSansKannadaUI-Bold.ttf</font> |
| 193 | </family> |
| 194 | <family> |
| 195 | <font weight="400" style="normal">NotoSansSinhala-Regular.ttf</font> |
| 196 | <font weight="700" style="normal">NotoSansSinhala-Bold.ttf</font> |
| 197 | </family> |
| 198 | <family variant="elegant"> |
| 199 | <font weight="400" style="normal">NotoSansKhmer-Regular.ttf</font> |
| 200 | <font weight="700" style="normal">NotoSansKhmer-Bold.ttf</font> |
| 201 | </family> |
| 202 | <family variant="compact"> |
| 203 | <font weight="400" style="normal">NotoSansKhmerUI-Regular.ttf</font> |
| 204 | <font weight="700" style="normal">NotoSansKhmerUI-Bold.ttf</font> |
| 205 | </family> |
| 206 | <family variant="elegant"> |
| 207 | <font weight="400" style="normal">NotoSansLao-Regular.ttf</font> |
| 208 | <font weight="700" style="normal">NotoSansLao-Bold.ttf</font> |
| 209 | </family> |
| 210 | <family variant="compact"> |
| 211 | <font weight="400" style="normal">NotoSansLaoUI-Regular.ttf</font> |
| 212 | <font weight="700" style="normal">NotoSansLaoUI-Bold.ttf</font> |
| 213 | </family> |
| 214 | <family variant="elegant"> |
| 215 | <font weight="400" style="normal">NotoSansMyanmar-Regular.ttf</font> |
| 216 | <font weight="700" style="normal">NotoSansMyanmar-Bold.ttf</font> |
| 217 | </family> |
| 218 | <family variant="compact"> |
| 219 | <font weight="400" style="normal">NotoSansMyanmarUI-Regular.ttf</font> |
| 220 | <font weight="700" style="normal">NotoSansMyanmarUI-Bold.ttf</font> |
| 221 | </family> |
| 222 | <family> |
Roozbeh Pournader | 2ff3ba5 | 2014-10-01 22:12:36 -0700 | [diff] [blame^] | 223 | <font weight="400" style="normal">NotoSansThaana-Regular.ttf</font> |
| 224 | <font weight="700" style="normal">NotoSansThaana-Bold.ttf</font> |
| 225 | </family> |
| 226 | <family> |
| 227 | <font weight="400" style="normal">NotoSansBalinese-Regular.ttf</font> |
| 228 | </family> |
| 229 | <family> |
| 230 | <font weight="400" style="normal">NotoSansBatak-Regular.ttf</font> |
| 231 | </family> |
| 232 | <family> |
| 233 | <font weight="400" style="normal">NotoSansBuginese-Regular.ttf</font> |
| 234 | </family> |
| 235 | <family> |
| 236 | <font weight="400" style="normal">NotoSansBuhid-Regular.ttf</font> |
Raph Levien | 8c1f936 | 2014-08-07 13:52:37 -0700 | [diff] [blame] | 237 | </family> |
| 238 | <family> |
| 239 | <font weight="400" style="normal">NotoSansCanadianAboriginal-Regular.ttf</font> |
| 240 | </family> |
| 241 | <family> |
Roozbeh Pournader | 2ff3ba5 | 2014-10-01 22:12:36 -0700 | [diff] [blame^] | 242 | <font weight="400" style="normal">NotoSansCherokee-Regular.ttf</font> |
| 243 | </family> |
| 244 | <family> |
| 245 | <font weight="400" style="normal">NotoSansHanunoo-Regular.ttf</font> |
| 246 | </family> |
| 247 | <family> |
| 248 | <font weight="400" style="normal">NotoSansJavanese-Regular.ttf</font> |
| 249 | </family> |
| 250 | <family> |
| 251 | <font weight="400" style="normal">NotoSansLepcha-Regular.ttf</font> |
| 252 | </family> |
| 253 | <family> |
| 254 | <font weight="400" style="normal">NotoSansLimbu-Regular.ttf</font> |
| 255 | </family> |
| 256 | <family> |
| 257 | <font weight="400" style="normal">NotoSansMeeteiMayek-Regular.ttf</font> |
| 258 | </family> |
| 259 | <family> |
| 260 | <font weight="400" style="normal">NotoSansOlChiki-Regular.ttf</font> |
| 261 | </family> |
| 262 | <family> |
| 263 | <font weight="400" style="normal">NotoSansRejang-Regular.ttf</font> |
| 264 | </family> |
| 265 | <family> |
| 266 | <font weight="400" style="normal">NotoSansSaurashtra-Regular.ttf</font> |
| 267 | </family> |
| 268 | <family> |
| 269 | <font weight="400" style="normal">NotoSansSundanese-Regular.ttf</font> |
| 270 | </family> |
| 271 | <family> |
| 272 | <font weight="400" style="normal">NotoSansSylotiNagri-Regular.ttf</font> |
| 273 | </family> |
| 274 | <family> |
| 275 | <font weight="400" style="normal">NotoSansTagbanwa-Regular.ttf</font> |
| 276 | </family> |
| 277 | <family> |
Raph Levien | 8c1f936 | 2014-08-07 13:52:37 -0700 | [diff] [blame] | 278 | <font weight="400" style="normal">NotoSansYi-Regular.ttf</font> |
| 279 | </family> |
| 280 | <family lang="zh-Hans"> |
| 281 | <font weight="400" style="normal">NotoSansHans-Regular.otf</font> |
| 282 | </family> |
| 283 | <family lang="zh-Hant"> |
| 284 | <font weight="400" style="normal">NotoSansHant-Regular.otf</font> |
| 285 | </family> |
| 286 | <family lang="ja"> |
| 287 | <font weight="400" style="normal">NotoSansJP-Regular.otf</font> |
| 288 | </family> |
| 289 | <family lang="ko"> |
| 290 | <font weight="400" style="normal">NotoSansKR-Regular.otf</font> |
| 291 | </family> |
| 292 | <family> |
| 293 | <font weight="400" style="normal">NanumGothic.ttf</font> |
| 294 | </family> |
| 295 | <family> |
| 296 | <font weight="400" style="normal">NotoSansSymbols-Regular-Subsetted.ttf</font> |
| 297 | </family> |
| 298 | <family> |
| 299 | <font weight="400" style="normal">NotoColorEmoji.ttf</font> |
| 300 | </family> |
Raph Levien | 117cbeb | 2014-08-25 13:47:16 -0700 | [diff] [blame] | 301 | <family> |
| 302 | <font weight="400" style="normal">DroidSansFallback.ttf</font> |
| 303 | </family> |
Raph Levien | 8c1f936 | 2014-08-07 13:52:37 -0700 | [diff] [blame] | 304 | <family lang="ja"> |
| 305 | <font weight="400" style="normal">MTLmr3m.ttf</font> |
| 306 | </family> |
| 307 | </familyset> |