- Wails project setup (Go + React-TS) - SQLite schema (allergens, additives, products, week_plans, plan_entries, special_days) - 14 EU allergens (LMIV 1169/2011) - 24 German food additives - 99 products imported from Excel with allergen/additive mappings - Full Wails bindings (CRUD for products, week plans, entries, special days) - OTA updater stub (version check against HTTPS endpoint) - Pure Go SQLite (no CGO) for easy Windows cross-compilation
20 lines
395 B
JavaScript
20 lines
395 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#2563EB',
|
|
danger: '#DC2626',
|
|
success: '#059669',
|
|
},
|
|
fontSize: {
|
|
'base': ['16px', '24px'], // Mindestens 16px für Barrierefreiheit
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |