cinema-studio-pro/frontend/tailwind.config.js
Simeon.Schecter 390450d873 style: try IBM Plex Sans + IBM Plex Mono as unified family
Matched sans+mono from same family. More Univers-like, technical.
Previous commit (6c47a79) has Space Grotesk for comparison.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-09 23:37:43 -04:00

23 lines
No EOL
588 B
JavaScript

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