From 3c6ee280ba949a5243920d7640a301e4958dc0c7 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Fri, 20 Feb 2026 02:58:54 -0500 Subject: [PATCH] style: Update task status and priority colors for improved visibility and consistency with Minecraft theme --- client/src/components/TaskPanel.jsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/client/src/components/TaskPanel.jsx b/client/src/components/TaskPanel.jsx index 057878a..688ac61 100644 --- a/client/src/components/TaskPanel.jsx +++ b/client/src/components/TaskPanel.jsx @@ -157,19 +157,19 @@ const TaskPanel = ({ turtles, apiUrl }) => { const getStatusColor = (status) => { switch (status) { - case 'pending': return '#94a3b8'; - case 'in_progress': return '#3b82f6'; - case 'completed': return '#10b981'; - case 'failed': return '#ef4444'; - default: return '#94a3b8'; + case 'pending': return '#a0a0a0'; + case 'in_progress': return '#345ec3'; + case 'completed': return '#4a8c2a'; + case 'failed': return '#aa0000'; + default: return '#a0a0a0'; } }; const getPriorityLabel = (priority) => { - if (priority >= 8) return { label: 'Critical', color: '#ef4444' }; - if (priority >= 6) return { label: 'High', color: '#f59e0b' }; - if (priority >= 4) return { label: 'Medium', color: '#3b82f6' }; - return { label: 'Low', color: '#94a3b8' }; + if (priority >= 8) return { label: 'Critical', color: '#ff5555' }; + if (priority >= 6) return { label: 'High', color: '#ffaa00' }; + if (priority >= 4) return { label: 'Medium', color: '#345ec3' }; + return { label: 'Low', color: '#a0a0a0' }; }; return (