This commit is contained in:
2025-12-07 15:58:07 +07:00
parent 75a641ab40
commit 942aeafb60
2211 changed files with 178727 additions and 89 deletions

74
node_modules/daisyui/theme/object.d.ts generated vendored Normal file
View File

@@ -0,0 +1,74 @@
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
halloween: Theme
garden: Theme
bumblebee: Theme
aqua: Theme
fantasy: Theme
coffee: Theme
corporate: Theme
abyss: Theme
valentine: Theme
cmyk: Theme
winter: Theme
lofi: Theme
lemonade: Theme
wireframe: Theme
black: Theme
luxury: Theme
caramellatte: Theme
pastel: Theme
autumn: Theme
night: Theme
dracula: Theme
dark: Theme
sunset: Theme
cupcake: Theme
forest: Theme
emerald: Theme
synthwave: Theme
dim: Theme
cyberpunk: Theme
light: Theme
business: Theme
acid: Theme
silk: Theme
nord: Theme
[key: string]: Theme
}
declare const themes: Themes
export default themes