Refactor: swap status colors for 'active' and 'completed'; add full-card link overlay for navigation

This commit is contained in:
2025-12-24 13:19:05 +01:00
parent 2c545875d1
commit bcf9bd599e
2 changed files with 10 additions and 5 deletions

View File

@@ -1,9 +1,8 @@
export function useProjectColors() {
const statusColors: Record<string, string> = {
'active': 'green',
'completed': 'blue',
'active': 'blue',
'completed': 'green',
'archived': 'neutral',
'in-progress': 'amber',
'in progress': 'amber'
}