cinema-studio-pro/frontend/tailwind.config.js
Simeon.Schecter c7ec58ff7f style: add DM Sans font and 14px base sizing
Switch from system font stack to DM Sans (Google Fonts, variable weight)
and reduce base font-size to 14px for a more compact, professional feel.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-09 22:27:02 -04:00

21 lines
No EOL
468 B
JavaScript

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