wavelength_app/constants/Colors.ts
2024-10-15 16:58:01 -05:00

28 lines
604 B
TypeScript

// Dark mode colors
const dark = '#2e2f3d';
const tintColorDark = '#fff';
const iconColorDark = '#9BA1A6';
// Light mode colors
const light = '#ECEDEE';
const tintColorLight = '#0a7ea4';
const iconColorLight = '#687076';
export const Colors = {
light: {
text: dark,
background: light,
tint: tintColorLight,
icon: iconColorLight,
tabIconDefault: iconColorLight,
tabIconSelected: tintColorLight,
},
dark: {
text: dark,
background: light,
tint: tintColorDark,
icon: iconColorDark,
tabIconDefault: iconColorDark,
tabIconSelected: tintColorDark,
},
};