Initial commit: monorepo Naturcalabacera reservas (apps/api + apps/web + packages/shared)

This commit is contained in:
2026-04-30 10:09:44 +01:00
commit a0ccb8ca64
188 changed files with 16418 additions and 0 deletions

39
src/index.css Normal file
View File

@@ -0,0 +1,39 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--color-teneriffa: #60a5fa;
/* Keep brand colors for now, or shift if requested */
--color-natur: #facc15;
}
/* Default to Light Mode */
html,
body {
background-color: #fafaf9;
/* stone-50 */
color: #1c1917;
/* stone-900 */
}
/* Dark Mode Overrides */
.dark html,
.dark body {
background-color: #020617;
/* slate-950 / black */
color: #f1f5f9;
/* slate-100 */
}
body {
margin: 0;
padding: 0;
}
#root {
min-height: 100vh;
@apply bg-stone-50 dark:bg-black transition-colors duration-500;
}
}