Theming and Appearance
Theme Properties
Fonts
Example
import { Platform } from 'react-native';
const theme = {
primary: '#09E35F',
secondary: '#5E5BD0',
tertiary: '#9C99FC',
onPrimary: '#001448',
onSecondary: '#FFFFFF',
onTertiary: '#FFFFFF',
fontFamily: {
normal:
Platform.OS === 'ios'
? 'Inter Regular'
: 'fonts/Inter-Regular.ttf',
medium:
Platform.OS === 'ios'
? 'Inter Medium'
: 'fonts/Inter-Medium.ttf',
semibold:
Platform.OS === 'ios'
? 'Inter SemiBold'
: 'fonts/Inter-SemiBold.ttf',
bold:
Platform.OS === 'ios'
? 'Inter Bold'
: 'fonts/Inter-Bold.ttf',
},
};Last updated
