POWR/lib/constants.ts

30 lines
813 B
TypeScript
Raw Normal View History

2025-02-09 20:38:38 -05:00
// lib/constants.ts
2025-02-12 12:55:51 -05:00
import type { NavigationThemeColors } from './theme';
export const NAV_THEME: {
light: NavigationThemeColors;
dark: NavigationThemeColors;
} = {
light: {
2025-02-12 12:55:51 -05:00
background: 'hsl(0, 0%, 100%)',
border: 'hsl(240, 5.9%, 90%)',
card: 'hsl(0, 0%, 100%)',
notification: 'hsl(0, 84.2%, 60.2%)',
primary: 'hsl(261, 90%, 66%)',
text: 'hsl(240, 10%, 3.9%)',
2025-02-15 14:03:42 -05:00
tabActive: '#000000',
tabInactive: '#737373',
2025-02-12 12:55:51 -05:00
tabIndicator: 'hsl(261, 90%, 66%)',
},
dark: {
2025-02-12 12:55:51 -05:00
background: 'hsl(240, 10%, 3.9%)',
border: 'hsl(240, 3.7%, 15.9%)',
card: 'hsl(240, 10%, 3.9%)',
notification: 'hsl(0, 72%, 51%)',
primary: 'hsl(261, 90%, 66%)',
text: 'hsl(0, 0%, 98%)',
2025-02-15 14:03:42 -05:00
tabActive: '#FFFFFF',
tabInactive: '#A3A3A3',
2025-02-12 12:55:51 -05:00
tabIndicator: 'hsl(261, 90%, 66%)',
},
2025-02-12 12:55:51 -05:00
};