Files
gniza4cp/whm/gniza4cp-whm/assets/node_modules/daisyui/theme/object.d.ts
shuki a162536585 Rename product from gniza to gniza4cp across entire codebase
- CLI binary: bin/gniza -> bin/gniza4cp
- Install path: /usr/local/gniza4cp/
- Config path: /etc/gniza4cp/
- Log path: /var/log/gniza4cp/
- WHM plugin: gniza4cp-whm/
- cPanel plugin: cpanel/gniza4cp/
- AdminBin: Gniza4cp::Restore
- Perl modules: Gniza4cpWHM::*, Gniza4cpCPanel::*
- DaisyUI theme: gniza4cp
- All internal references, branding, paths updated
- Git remote updated to gniza4cp repo
2026-03-05 21:03:30 +02: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
bumblebee: Theme
fantasy: Theme
aqua: Theme
coffee: Theme
lofi: Theme
garden: Theme
halloween: Theme
pastel: Theme
night: Theme
dark: Theme
cupcake: Theme
emerald: Theme
synthwave: Theme
light: Theme
silk: Theme
nord: Theme
dim: Theme
business: Theme
cyberpunk: Theme
acid: Theme
sunset: Theme
forest: Theme
caramellatte: Theme
dracula: Theme
corporate: Theme
autumn: Theme
wireframe: Theme
abyss: Theme
luxury: Theme
valentine: Theme
cmyk: Theme
winter: Theme
black: Theme
lemonade: Theme
[key: string]: Theme
}
declare const themes: Themes
export default themes