First working POC

This commit is contained in:
2026-01-26 22:21:54 +01:00
commit cfddc1edea
255 changed files with 77606 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
@import "tailwindcss";
/* Custom theme variables for JellyTau */
@theme {
--color-jellyfin: #00a4dc;
--color-jellyfin-dark: #0085b3;
--color-background: #101010;
--color-surface: #1a1a1a;
--color-surface-hover: #252525;
}
/* Global styles */
html, body {
@apply h-full;
background-color: var(--color-background);
}
body {
@apply text-white antialiased;
font-family: system-ui, -apple-system, sans-serif;
/* Handle safe areas for mobile devices (status bar, notches, etc.) */
padding-top: env(safe-area-inset-top);
padding-bottom: env(safe-area-inset-bottom);
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}