Files
headroom/frontend/node_modules/daisyui/theme/object.d.ts
Santhosh Janardhanan de2d83092e feat: Reinitialize frontend with SvelteKit and TypeScript
- 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
2026-02-17 16:19:59 -05:00

74 lines
1.5 KiB
TypeScript

interface Theme {
"color-scheme": string
"--color-base-100": string
"--color-base-200": string
"--color-base-300": string
"--color-base-content": string
"--color-primary": string
"--color-primary-content": string
"--color-secondary": string
"--color-secondary-content": string
"--color-accent": string
"--color-accent-content": string
"--color-neutral": string
"--color-neutral-content": string
"--color-info": string
"--color-info-content": string
"--color-success": string
"--color-success-content": string
"--color-warning": string
"--color-warning-content": string
"--color-error": string
"--color-error-content": string
"--radius-selector": string
"--radius-field": string
"--radius-box": string
"--size-selector": string
"--size-field": string
"--border": string
"--depth": string
"--noise": string
}
interface Themes {
retro: Theme
aqua: Theme
fantasy: Theme
bumblebee: Theme
coffee: Theme
garden: Theme
lofi: Theme
halloween: Theme
night: Theme
pastel: Theme
dark: Theme
cupcake: Theme
emerald: Theme
synthwave: Theme
light: Theme
silk: Theme
business: Theme
cyberpunk: Theme
nord: Theme
dim: Theme
acid: Theme
sunset: Theme
forest: Theme
caramellatte: Theme
dracula: Theme
corporate: Theme
luxury: Theme
wireframe: Theme
valentine: Theme
cmyk: Theme
abyss: Theme
autumn: Theme
black: Theme
lemonade: Theme
winter: Theme
[key: string]: Theme
}
declare const themes: Themes
export default themes