Scaffolded the OpenBudget app structure with initial pages, components, and data. Included features for compare, reform design, and about sections. Added base utilities, design system, and data handling modules.
This commit is contained in:
23
openbudget-app-scaffold/tailwind.config.ts
Normal file
23
openbudget-app-scaffold/tailwind.config.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user