/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { kumamoto: { green: '#4A7C59', blue: '#5B8FA8', light: '#F5F7F6', primary: '#E74C3C', // 밝은 빨강 - 헤더 배경 secondary: '#C0392B', // 진한 빨강 - 버튼 등 accent: '#F39C12', // 주황색 - 강조 요소 } } }, }, plugins: [], }