mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
19 lines
457 B
TypeScript
19 lines
457 B
TypeScript
export const NAV_THEME = {
|
|
light: {
|
|
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(240 5.9% 10%)",
|
|
text: "hsl(240 10% 3.9%)",
|
|
},
|
|
dark: {
|
|
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(0 0% 98%)",
|
|
text: "hsl(0 0% 98%)",
|
|
},
|
|
};
|