import type { Config } from 'tailwindcss'; export default { content: ['./src/**/*.{html,js,svelte,ts}'], darkMode: 'class', theme: { extend: { fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'] }, colors: { // Semantic aliases — "The Monolith Editorial" surface hierarchy. // Use background shifts (never 1px borders) to separate major UI areas. background: 'rgb(var(--background) / )', 'surface-container-low': 'rgb(var(--surface-container-low) / )', surface: 'rgb(var(--surface) / )', 'surface-raised': 'rgb(var(--surface-raised) / )', // Text hierarchy 'text-primary': 'rgb(var(--text-primary) / )', 'text-secondary': 'rgb(var(--text-secondary) / )', 'text-muted': 'rgb(var(--text-muted) / )', // Only non-slate color allowed in the system destructive: 'rgb(var(--destructive) / )' } } }, plugins: [] } satisfies Config;