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