You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
export default {
|
|
android: {
|
|
regular: {
|
|
fontFamily: 'sans-serif',
|
|
fontWeight: 'normal',
|
|
},
|
|
light: {
|
|
fontFamily: 'sans-serif-light',
|
|
fontWeight: 'normal',
|
|
},
|
|
condensed: {
|
|
fontFamily: 'sans-serif-condensed',
|
|
fontWeight: 'normal',
|
|
},
|
|
condensed_light: {
|
|
fontFamily: 'sans-serif-condensed',
|
|
fontWeight: 'light',
|
|
},
|
|
black: {
|
|
// note(brentvatne): sans-serif-black is only supported on Android 5+,
|
|
// we can detect that here and use it in that case at some point.
|
|
fontFamily: 'sans-serif',
|
|
fontWeight: 'bold',
|
|
},
|
|
thin: {
|
|
fontFamily: 'sans-serif-thin',
|
|
fontWeight: 'normal',
|
|
},
|
|
medium: {
|
|
fontFamily: 'sans-serif-medium',
|
|
fontWeight: 'normal',
|
|
},
|
|
bold: {
|
|
fontFamily: 'sans-serif',
|
|
fontWeight: 'bold',
|
|
},
|
|
},
|
|
default: {},
|
|
};
|