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