mirror of
https://github.com/maciejpedzich/spotifyplaylistarchive.com.git
synced 2024-11-09 23:13:01 +01:00
19 lines
464 B
JavaScript
19 lines
464 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
plugins: [require('daisyui')],
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
light: {
|
|
...require('daisyui/src/colors/themes')['[data-theme=garden]']
|
|
},
|
|
dark: {
|
|
...require('daisyui/src/colors/themes')['[data-theme=forest]'],
|
|
'primary-content': '#000000'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
};
|