23 lines
No EOL
537 B
JavaScript
23 lines
No EOL
537 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'brand-primary': '#1f2937',
|
|
'brand-secondary': '#3b82f6',
|
|
'brand-accent': '#10b981',
|
|
'brand-danger': '#ef4444',
|
|
'brand-warning': '#f59e0b',
|
|
},
|
|
animation: {
|
|
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
|
'bounce-gentle': 'bounce 2s infinite',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |