Colors.ts 380 B

12345678910111213141516171819
  1. const tintColorLight = '#FFC21C';
  2. const tintColorDark = '#fff';
  3. export default {
  4. light: {
  5. text: '#000',
  6. background: '#fff',
  7. tint: tintColorLight,
  8. tabIconDefault: '#ccc',
  9. tabIconSelected: tintColorLight,
  10. },
  11. dark: {
  12. text: '#fff',
  13. background: '#000',
  14. tint: tintColorDark,
  15. tabIconDefault: '#ccc',
  16. tabIconSelected: tintColorDark,
  17. },
  18. };