38 lines
591 B
TypeScript
38 lines
591 B
TypeScript
// add the names of the themes you want to use here
|
|
// warning: you need to specify them in tailwind.config.js as well
|
|
// DO NOT REMOVE: 'default', 'light', 'dark'
|
|
export default[
|
|
'default',
|
|
'light',
|
|
'dark',
|
|
'storm',
|
|
'breeze',
|
|
'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',
|
|
] as const;
|