Initial scaffold: Expo SDK 56, expo-router, expo-sqlite, NativeWind

This commit is contained in:
2026-06-18 16:50:27 +02:00
parent f12febf122
commit 8388f49fd4
24 changed files with 10060 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}",
],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
bg: "#0f1117",
surface: "#1a1d27",
"surface-2": "#252836",
primary: "#6366f1",
"primary-dim": "#4338ca",
success: "#22c55e",
warning: "#f59e0b",
danger: "#ef4444",
"text-1": "#f1f5f9",
"text-2": "#94a3b8",
"text-dim": "#64748b",
border: "#2d3147",
},
},
},
plugins: [],
};