import type { Config } from 'tailwindcss' export default { content: ['./index.html', './src/**/*.{ts,tsx}'], theme: { extend: { colors: { deutschland: { black: '#000000', red: '#DD0000', gold: '#FFCE00', }, }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], mono: ['JetBrains Mono', 'ui-monospace', 'SFMono-Regular', 'Menlo', 'monospace'] } }, }, plugins: [ // other plugins here, but not @tailwindcss/line-clamp ] } satisfies Config