this repo has no description
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
6const tintColorLight = '#0a7ea4';
7const tintColorDark = '#fff';
8
9export const Colors = {
10 light: {
11 text: '#11181C',
12 background: '#fff',
13 tint: tintColorLight,
14 icon: '#687076',
15 tabIconDefault: '#687076',
16 tabIconSelected: tintColorLight,
17 },
18 dark: {
19 text: '#ECEDEE',
20 background: '#151718',
21 tint: tintColorDark,
22 icon: '#9BA1A6',
23 tabIconDefault: '#9BA1A6',
24 tabIconSelected: tintColorDark,
25 },
26};