Files
bundeshaushalt/openbudget-app-scaffold/tailwind.config.ts

24 lines
568 B
TypeScript

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