UNPKG

1.07 kBJavaScriptView Raw
1export default {
2 android: {
3 regular: {
4 fontFamily: 'sans-serif',
5 fontWeight: 'normal',
6 },
7 light: {
8 fontFamily: 'sans-serif-light',
9 fontWeight: 'normal',
10 },
11 condensed: {
12 fontFamily: 'sans-serif-condensed',
13 fontWeight: 'normal',
14 },
15 condensed_light: {
16 fontFamily: 'sans-serif-condensed',
17 fontWeight: 'light',
18 },
19 black: {
20 // note(brentvatne): sans-serif-black is only supported on Android 5+,
21 // we can detect that here and use it in that case at some point.
22 fontFamily: 'sans-serif',
23 fontWeight: 'bold',
24 },
25 thin: {
26 fontFamily: 'sans-serif-thin',
27 fontWeight: 'normal',
28 },
29 medium: {
30 fontFamily: 'sans-serif-medium',
31 fontWeight: 'normal',
32 },
33 bold: {
34 fontFamily: 'sans-serif',
35 fontWeight: 'bold',
36 },
37 },
38 default: {},
39};