/** @type {import('tailwindcss').Config} */ export default { content: [ "./resources/**/*.blade.php", "./resources/**/*.js", "./resources/**/*.vue", ], theme: { extend: { colors: { primary: '#570df8', secondary: '#f000b8', }, }, }, plugins: [ require('@tailwindcss/forms'), // DaisyUI 완전 제거 - oklch() 사용 문제 ], }