2024-10-15 16:58:01 -05:00
|
|
|
// Dark mode colors
|
|
|
|
const dark = '#2e2f3d';
|
2024-10-15 08:27:18 -05:00
|
|
|
const tintColorDark = '#fff';
|
2024-10-15 16:58:01 -05:00
|
|
|
const iconColorDark = '#9BA1A6';
|
|
|
|
// Light mode colors
|
|
|
|
const light = '#ECEDEE';
|
|
|
|
const tintColorLight = '#0a7ea4';
|
|
|
|
const iconColorLight = '#687076';
|
2024-10-15 08:27:18 -05:00
|
|
|
|
|
|
|
export const Colors = {
|
|
|
|
light: {
|
2024-10-15 16:58:01 -05:00
|
|
|
text: dark,
|
|
|
|
background: light,
|
2024-10-15 08:27:18 -05:00
|
|
|
tint: tintColorLight,
|
2024-10-15 16:58:01 -05:00
|
|
|
icon: iconColorLight,
|
|
|
|
tabIconDefault: iconColorLight,
|
2024-10-15 08:27:18 -05:00
|
|
|
tabIconSelected: tintColorLight,
|
|
|
|
},
|
|
|
|
dark: {
|
2024-10-15 16:58:01 -05:00
|
|
|
text: dark,
|
|
|
|
background: light,
|
2024-10-15 08:27:18 -05:00
|
|
|
tint: tintColorDark,
|
2024-10-15 16:58:01 -05:00
|
|
|
icon: iconColorDark,
|
|
|
|
tabIconDefault: iconColorDark,
|
2024-10-15 08:27:18 -05:00
|
|
|
tabIconSelected: tintColorDark,
|
|
|
|
},
|
|
|
|
};
|