Add app scaffold and workflows
All checks were successful
Continuous Integration / Validate and test changes (push) Successful in 3s

This commit is contained in:
2025-12-03 08:58:34 +01:00
parent 5a8b773e40
commit d6b61ae8fb
51 changed files with 10252 additions and 3 deletions

View File

@@ -0,0 +1,35 @@
@import "tailwindcss";
@source "./app/**/*.{js,ts,jsx,tsx,mdx}";
@source "./components/**/*.{js,ts,jsx,tsx,mdx}";
@theme {
--color-ink: #0f172a;
--color-inkSoft: #1e293b;
--color-inkMuted: #64748b;
--color-sand: #f7f7fb;
--color-card: #ffffff;
--color-success: #22c55e;
--color-danger: #ef4444;
--color-pulse: #f59e0b;
--color-accent-blue: #60a5fa;
--color-accent-mint: #34d399;
--color-accent-coral: #fb7185;
--font-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI",
sans-serif;
--font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI",
sans-serif;
}
:root {
color-scheme: light;
background-color: #f7f7fb;
}
body {
@apply min-h-screen bg-gradient-to-br from-[#f9fafb] via-[#f2f4f6] to-[#e7eaee] text-ink antialiased;
}
* {
@apply selection:bg-blue-200 selection:text-ink;
}