fix(data): match subcontractor tasks to real projects; style On Hold status

This commit is contained in:
Satyam Rastogi
2026-05-29 04:22:30 +05:30
parent 2010ca080e
commit 2f43205854
3 changed files with 15 additions and 13 deletions
@@ -11,6 +11,7 @@ const PRIORITY_STYLES = {
const STATUS_STYLES = {
Assigned: 'bg-amber-100 text-amber-700 dark:bg-amber-500/20 dark:text-amber-400',
'In Progress': 'bg-blue-100 text-blue-700 dark:bg-blue-500/20 dark:text-blue-400',
'On Hold': 'bg-slate-100 text-slate-600 dark:bg-slate-500/20 dark:text-slate-400',
Completed: 'bg-emerald-100 text-emerald-700 dark:bg-emerald-500/20 dark:text-emerald-400',
Cancelled: 'bg-zinc-200 text-zinc-600 dark:bg-zinc-700 dark:text-zinc-300',
};