/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
bg: '#FAFAF9',
card: '#FFFFFF',
cardBorder: '#E5E7EB',
text: '#1A1A1A',
'text-secondary': '#6B7280',
hover: '#D04A0F',
accent: '#E95A1B',
},
plugins: [],
}