diff --git a/client/src/components/MiningAreasPanel.jsx b/client/src/components/MiningAreasPanel.jsx index aedc903..f748bfd 100644 --- a/client/src/components/MiningAreasPanel.jsx +++ b/client/src/components/MiningAreasPanel.jsx @@ -192,12 +192,12 @@ export default function MiningAreasPanel({ turtles, selectedTurtle, apiUrl }) { // Status badge component const StatusBadge = ({ status }) => { const colors = { - planned: '#6366f1', - mining: '#f59e0b', - completed: '#10b981' + planned: '#345ec3', + mining: '#ffaa00', + completed: '#4a8c2a' }; return ( - + {status} );