Themes
Fonts
Available Fonts
- SFProText (Apple's system font)
- Raleway (Default)
- Poppins
- Merriweather
- Roboto
Add New Font
- Place
.ttffiles inapp/assets/fonts/ - Run:
npx react-native-asset - Add to
app/configs/index.ts:fontSupport: [..., 'MyNewFont'] - Rebuild:
yarn clean && yarn setup && yarn ios/android
Change Default Font
// app/configs/index.ts
export const Settings = {
defaultFont: 'Poppins', // Change here
};
Themes
Available Themes
- Default: Orange-red (#E5634D) + Teal (#4A90A4)
- Gold: Gold (#fa8c16) + Teal (#4a91a4)
- Blue: iOS Blue (#007aff) + Teal (#4a91a4)
- Violet: Purple (#962af0) + Teal (#4a91a4)
Add New Theme
// app/configs/theme.ts
export const themeSupport = [
// ... existing themes
{
id: 'emerald',
primary: '#10b981',
secondary: '#3b82f6'
},
];