export const statusColors: Record = { draft: 'bg-gray-100 text-gray-700', active: 'bg-green-100 text-green-700', completed: 'bg-purple-100 text-purple-700', archived: 'bg-red-100 text-red-700', } export const statusLabels: Record = { draft: 'Entwurf', active: 'Aktiv', completed: 'Abgeschlossen', archived: 'Archiviert', } export const itemStatusColors: Record = { PLANNED: 'bg-gray-100 text-gray-700', IN_PROGRESS: 'bg-blue-100 text-blue-700', BLOCKED: 'bg-red-100 text-red-700', COMPLETED: 'bg-green-100 text-green-700', DEFERRED: 'bg-yellow-100 text-yellow-700', } export const itemStatusLabels: Record = { PLANNED: 'Geplant', IN_PROGRESS: 'In Arbeit', BLOCKED: 'Blockiert', COMPLETED: 'Erledigt', DEFERRED: 'Verschoben', } export const priorityColors: Record = { CRITICAL: 'bg-red-100 text-red-700', HIGH: 'bg-orange-100 text-orange-700', MEDIUM: 'bg-yellow-100 text-yellow-700', LOW: 'bg-green-100 text-green-700', } export const categoryLabels: Record = { TECHNICAL: 'Technisch', ORGANIZATIONAL: 'Organisatorisch', PROCESSUAL: 'Prozessual', DOCUMENTATION: 'Dokumentation', TRAINING: 'Schulung', }