33 lines
665 B
TypeScript
Raw Permalink Normal View History

2025-01-28 12:56:22 -06:00
const black = '#1f1e2c';
const white = '#ECEDEE'
const darkTint = '#fff';
const lightTint = '#0a7ea4';
const darkIcon = '#9BA1A6';
const lightIcon = '#687076';
const ttBlue = '#4d5eae';
const ttDarkBlue = '#2e2f3d';
const ttLightBlue = '#c8d0d7';
2025-01-28 08:19:46 -06:00
export const Colors = {
light: {
2025-01-28 12:56:22 -06:00
text: black,
background: white,
tint: lightTint,
icon: lightIcon,
tabIconDefault: lightIcon,
tabIconSelected: lightTint,
ttBlue,
accent: ttLightBlue,
2025-01-28 08:19:46 -06:00
},
dark: {
2025-01-28 12:56:22 -06:00
text: white,
background: black,
tint: darkTint,
icon: darkIcon,
tabIconDefault: darkIcon,
tabIconSelected: darkTint,
ttBlue,
accent: ttDarkBlue,
2025-01-28 08:19:46 -06:00
},
};