feat(ui): scaffold SvelteKit app with Tailwind v4, adapter-node, zinc/amber theme

This commit is contained in:
Admin
2026-03-02 21:30:50 +05:00
parent baab66823d
commit 2f948f2a50
17 changed files with 2674 additions and 0 deletions

16
ui/src/app.css Normal file
View File

@@ -0,0 +1,16 @@
@import "tailwindcss";
@theme {
--color-brand: #f59e0b; /* amber-400 */
--color-brand-dim: #d97706; /* amber-600 */
--color-surface: #18181b; /* zinc-900 */
--color-surface-2: #27272a; /* zinc-800 */
--color-surface-3: #3f3f46; /* zinc-700 */
--color-muted: #a1a1aa; /* zinc-400 */
--color-text: #f4f4f5; /* zinc-100 */
}
html {
background-color: var(--color-surface);
color: var(--color-text);
}