/** @type {import('tailwindcss').Config} */ export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { extend: { colors: { // 4chan-style minimal color palette board: { bg: '#d6daf0', post: '#eef2ff', highlight: '#fffecc', border: '#b7c5d9' } }, fontFamily: { sans: ['system-ui', '-apple-system', 'sans-serif'] } } }, plugins: [] };