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