- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
32 lines
1.1 KiB
CSS
32 lines
1.1 KiB
CSS
:root:has(input.theme-controller[value=black]:checked),[data-theme="black"] {
|
|
color-scheme: dark;
|
|
--color-base-100: oklch(0% 0 0);
|
|
--color-base-200: oklch(19% 0 0);
|
|
--color-base-300: oklch(22% 0 0);
|
|
--color-base-content: oklch(87.609% 0 0);
|
|
--color-primary: oklch(35% 0 0);
|
|
--color-primary-content: oklch(100% 0 0);
|
|
--color-secondary: oklch(35% 0 0);
|
|
--color-secondary-content: oklch(100% 0 0);
|
|
--color-accent: oklch(35% 0 0);
|
|
--color-accent-content: oklch(100% 0 0);
|
|
--color-neutral: oklch(35% 0 0);
|
|
--color-neutral-content: oklch(100% 0 0);
|
|
--color-info: oklch(45.201% 0.313 264.052);
|
|
--color-info-content: oklch(89.04% 0.062 264.052);
|
|
--color-success: oklch(51.975% 0.176 142.495);
|
|
--color-success-content: oklch(90.395% 0.035 142.495);
|
|
--color-warning: oklch(96.798% 0.211 109.769);
|
|
--color-warning-content: oklch(19.359% 0.042 109.769);
|
|
--color-error: oklch(62.795% 0.257 29.233);
|
|
--color-error-content: oklch(12.559% 0.051 29.233);
|
|
--radius-selector: 0rem;
|
|
--radius-field: 0rem;
|
|
--radius-box: 0rem;
|
|
--size-selector: 0.25rem;
|
|
--size-field: 0.25rem;
|
|
--border: 1px;
|
|
--depth: 0;
|
|
--noise: 0;
|
|
}
|