theme.js 237 B

123456789101112
  1. import { DefaultTheme } from 'react-native-paper';
  2. export const theme = {
  3. ...DefaultTheme,
  4. colors: {
  5. ...DefaultTheme.colors,
  6. primary: '#4994EC',
  7. surface: '#4994EC',
  8. secondary: '#414757',
  9. error: '#f13a59',
  10. },
  11. };