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>
21 lines
No EOL
468 B
JavaScript
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: [],
|
|
} |