- 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.2 KiB
CSS
32 lines
1.2 KiB
CSS
:root:has(input.theme-controller[value=cupcake]:checked),[data-theme="cupcake"] {
|
|
color-scheme: light;
|
|
--color-base-100: oklch(97.788% 0.004 56.375);
|
|
--color-base-200: oklch(93.982% 0.007 61.449);
|
|
--color-base-300: oklch(91.586% 0.006 53.44);
|
|
--color-base-content: oklch(23.574% 0.066 313.189);
|
|
--color-primary: oklch(85% 0.138 181.071);
|
|
--color-primary-content: oklch(43% 0.078 188.216);
|
|
--color-secondary: oklch(89% 0.061 343.231);
|
|
--color-secondary-content: oklch(45% 0.187 3.815);
|
|
--color-accent: oklch(90% 0.076 70.697);
|
|
--color-accent-content: oklch(47% 0.157 37.304);
|
|
--color-neutral: oklch(27% 0.006 286.033);
|
|
--color-neutral-content: oklch(92% 0.004 286.32);
|
|
--color-info: oklch(68% 0.169 237.323);
|
|
--color-info-content: oklch(29% 0.066 243.157);
|
|
--color-success: oklch(69% 0.17 162.48);
|
|
--color-success-content: oklch(26% 0.051 172.552);
|
|
--color-warning: oklch(79% 0.184 86.047);
|
|
--color-warning-content: oklch(28% 0.066 53.813);
|
|
--color-error: oklch(64% 0.246 16.439);
|
|
--color-error-content: oklch(27% 0.105 12.094);
|
|
--radius-selector: 1rem;
|
|
--radius-field: 2rem;
|
|
--radius-box: 1rem;
|
|
--size-selector: 0.25rem;
|
|
--size-field: 0.25rem;
|
|
--border: 2px;
|
|
--depth: 1;
|
|
--noise: 0;
|
|
}
|