/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./src/app/*.{js,ts,jsx,tsx}", "src/**/*.{js,ts,jsx,tsx}", "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}", ], theme: { extend: {}, }, plugins: [require("daisyui")], // daisyUI config (optional) daisyui: { styled: true, themes: true, base: true, utils: true, logs: true, rtl: false, prefix: "", darkTheme: "white", }, themes: [ { mytheme: { "primary": "#6419E6", "secondary": "#D926A9", "accent": "#1FB2A6", "neutral": "#191D24", "base-100": "#2A303C", "info": "#3ABFF8", "success": "#36D399", "warning": "#FBBD23", "error": "#F87272", }, }, ], }