- Remove CustomTheme interface from global.d.ts - Remove SanitizedCustomTheme interface from sanitized-config.tsx - Remove customTheme property from ThemeConfig interfaces - Remove customTheme object from utils/index.tsx - Delete default-custom-theme.tsx file - Update README.md to show custom themes are now defined in CSS - Add procyon custom theme using @plugin 'daisyui/theme' syntax - Update gitprofile.config.ts to remove customTheme configuration
39 lines
481 B
TypeScript
39 lines
481 B
TypeScript
export const DEFAULT_THEMES = [
|
|
'light',
|
|
'dark',
|
|
'cupcake',
|
|
'bumblebee',
|
|
'emerald',
|
|
'corporate',
|
|
'synthwave',
|
|
'retro',
|
|
'cyberpunk',
|
|
'valentine',
|
|
'halloween',
|
|
'garden',
|
|
'forest',
|
|
'aqua',
|
|
'lofi',
|
|
'pastel',
|
|
'fantasy',
|
|
'wireframe',
|
|
'black',
|
|
'luxury',
|
|
'dracula',
|
|
'cmyk',
|
|
'autumn',
|
|
'business',
|
|
'acid',
|
|
'lemonade',
|
|
'night',
|
|
'coffee',
|
|
'winter',
|
|
'dim',
|
|
'nord',
|
|
'sunset',
|
|
'caramellatte',
|
|
'abyss',
|
|
'silk',
|
|
'procyon',
|
|
];
|