andyscott-dot-me/tailwind.config.cjs

12 lines
386 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
plugins: [require("@tailwindcss/typography"),require("daisyui")],
daisyui: {
themes: [
'bumblebee', // this will be the default light theme
'business'
],
darkTheme: 'business' // this will be the default dark theme
}
}