initial: standalone repo from monorepo split

This commit is contained in:
kevin-asprec
2026-04-13 09:36:30 +08:00
commit e3fead36d5
19 changed files with 597 additions and 0 deletions

30
src/app/globals.css Normal file
View File

@@ -0,0 +1,30 @@
@import 'tailwindcss';
@theme {
--color-brand-50: #f0fdfa;
--color-brand-100: #ccfbf1;
--color-brand-200: #99f6e4;
--color-brand-300: #5eead4;
--color-brand-400: #2dd4bf;
--color-brand-500: #14b8a6;
--color-brand-600: #0d9488;
--color-brand-700: #0f766e;
--color-brand-800: #115e59;
--color-brand-900: #134e4a;
--color-brand-950: #042f2e;
--color-surface-50: #f8fafc;
--color-surface-100: #f1f5f9;
--color-surface-200: #e2e8f0;
--color-surface-300: #cbd5e1;
--color-surface-400: #94a3b8;
--color-surface-500: #64748b;
--color-surface-600: #475569;
--color-surface-700: #334155;
--color-surface-800: #1e293b;
--color-surface-900: #0f172a;
--font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
}
*:focus-visible { outline: 2px solid var(--color-brand-500); outline-offset: 2px; }