選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Colors.ts 750B

1234567891011121314151617181920212223242526
  1. /**
  2. * Below are the colors that are used in the app. The colors are defined in the light and dark mode.
  3. * There are many other ways to style your app. For example, [Nativewind](https://www.nativewind.dev/), [Tamagui](https://tamagui.dev/), [unistyles](https://reactnativeunistyles.vercel.app), etc.
  4. */
  5. const tintColorLight = '#0a7ea4';
  6. const tintColorDark = '#fff';
  7. export const Colors = {
  8. light: {
  9. text: '#11181C',
  10. background: '#fff',
  11. tint: tintColorLight,
  12. icon: '#687076',
  13. tabIconDefault: '#687076',
  14. tabIconSelected: tintColorLight,
  15. },
  16. dark: {
  17. text: '#ECEDEE',
  18. background: '#151718',
  19. tint: tintColorDark,
  20. icon: '#9BA1A6',
  21. tabIconDefault: '#9BA1A6',
  22. tabIconSelected: tintColorDark,
  23. },
  24. };