32 lines
677 B
JavaScript
32 lines
677 B
JavaScript
/** @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',
|
|
},
|
|
keyframes: {
|
|
'fade-up': {
|
|
'0%': { opacity: '0', transform: 'translateY(8px)' },
|
|
'100%': { opacity: '1', transform: 'translateY(0)' },
|
|
},
|
|
},
|
|
animation: {
|
|
'fade-up': 'fade-up 300ms ease-out forwards',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|