Theme.js 256 B

1234567891011121314
  1. import { DefaultTheme } from 'react-native-paper'
  2. const theme = {
  3. ...DefaultTheme,
  4. colors: {
  5. ...DefaultTheme.colors,
  6. primary: '#FFC21C',
  7. accent: '#03dac4',
  8. error: '#B00020',
  9. text: '#000',
  10. },
  11. }
  12. export default theme