Files
native-app/apps/mobile/styles/global.tsx
2024-01-22 22:43:19 +01:00

23 lines
484 B
TypeScript

import { StyleSheet } from 'react-native';
export const globalStyles = StyleSheet.create({
fOpenSansLight: {
fontFamily: 'OpenSansLight',
},
fOpenSansBold: {
fontFamily: 'OpenSansBold',
},
fOpenSansSemiBold: {
fontFamily: 'OpenSansSemiBold',
},
fOpenSansMedium: {
fontFamily: 'OpenSansMedium',
},
fOpenSansExtraBold: {
fontFamily: 'OpenSansExtraBold',
},
fOpenSansRegular: {
fontFamily: 'OpenSansRegular',
},
});