From 5966d4de2b9d96d87e225c25ae7ac12ff3d15184 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Fri, 20 Feb 2026 02:58:45 -0500 Subject: [PATCH] style: Update StatusBadge colors for improved visibility and consistency with Minecraft theme --- client/src/components/MiningAreasPanel.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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} );