Theme.js 308 B

12345678910111213141516
  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. info: '#B4B4B4',
  11. lightInfo: '#F0F0F0',
  12. },
  13. };
  14. export default theme;