mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-19 19:01:18 +00:00
26 lines
771 B
TypeScript
26 lines
771 B
TypeScript
// lib/constants.ts
|
|
export const NAV_THEME = {
|
|
light: {
|
|
background: 'hsl(0 0% 100%)', // background
|
|
border: 'hsl(240 5.9% 90%)', // border
|
|
card: 'hsl(0 0% 100%)', // card
|
|
notification: 'hsl(0 84.2% 60.2%)', // destructive
|
|
primary: 'hsl(240 5.9% 10%)', // primary
|
|
text: 'hsl(240 10% 3.9%)', // foreground
|
|
},
|
|
dark: {
|
|
background: 'hsl(240 10% 3.9%)', // background
|
|
border: 'hsl(240 3.7% 15.9%)', // border
|
|
card: 'hsl(240 10% 3.9%)', // card
|
|
notification: 'hsl(0 72% 51%)', // destructive
|
|
primary: 'hsl(0 0% 98%)', // primary
|
|
text: 'hsl(0 0% 98%)', // foreground
|
|
},
|
|
};
|
|
|
|
export const CUSTOM_COLORS = {
|
|
purple: '#8B5CF6',
|
|
purplePressed: '#7C3AED', // Slightly darker for pressed state
|
|
orange: '#F97316'
|
|
} as const;
|