Added support for building mobile applications with Expo

This commit is contained in:
Aman Varshney
2025-03-29 12:31:51 +05:30
parent 228f24d6db
commit 1c66d64be5
90 changed files with 981 additions and 204 deletions

View File

@@ -0,0 +1,18 @@
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
},
};