- 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=forest]:checked),[data-theme="forest"] {
|
|
color-scheme: dark;
|
|
--color-base-100: oklch(20.84% 0.008 17.911);
|
|
--color-base-200: oklch(18.522% 0.007 17.911);
|
|
--color-base-300: oklch(16.203% 0.007 17.911);
|
|
--color-base-content: oklch(83.768% 0.001 17.911);
|
|
--color-primary: oklch(68.628% 0.185 148.958);
|
|
--color-primary-content: oklch(0% 0 0);
|
|
--color-secondary: oklch(69.776% 0.135 168.327);
|
|
--color-secondary-content: oklch(13.955% 0.027 168.327);
|
|
--color-accent: oklch(70.628% 0.119 185.713);
|
|
--color-accent-content: oklch(14.125% 0.023 185.713);
|
|
--color-neutral: oklch(30.698% 0.039 171.364);
|
|
--color-neutral-content: oklch(86.139% 0.007 171.364);
|
|
--color-info: oklch(72.06% 0.191 231.6);
|
|
--color-info-content: oklch(0% 0 0);
|
|
--color-success: oklch(64.8% 0.15 160);
|
|
--color-success-content: oklch(0% 0 0);
|
|
--color-warning: oklch(84.71% 0.199 83.87);
|
|
--color-warning-content: oklch(0% 0 0);
|
|
--color-error: oklch(71.76% 0.221 22.18);
|
|
--color-error-content: oklch(0% 0 0);
|
|
--radius-selector: 1rem;
|
|
--radius-field: 2rem;
|
|
--radius-box: 1rem;
|
|
--size-selector: 0.25rem;
|
|
--size-field: 0.25rem;
|
|
--border: 1px;
|
|
--depth: 0;
|
|
--noise: 0;
|
|
}
|