cinema-studio-pro/frontend/tailwind.config.js
2026-01-13 14:52:37 +05:30

18 lines
No EOL
344 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'cinema-gold': '#f59e0b',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
},
},
plugins: [],
}