style: Update StatusBadge colors for improved visibility and consistency with Minecraft theme

This commit is contained in:
MayaTheShy
2026-02-20 02:58:45 -05:00
parent 1d99ba534a
commit 5966d4de2b

View File

@@ -192,12 +192,12 @@ export default function MiningAreasPanel({ turtles, selectedTurtle, apiUrl }) {
// Status badge component // Status badge component
const StatusBadge = ({ status }) => { const StatusBadge = ({ status }) => {
const colors = { const colors = {
planned: '#6366f1', planned: '#345ec3',
mining: '#f59e0b', mining: '#ffaa00',
completed: '#10b981' completed: '#4a8c2a'
}; };
return ( return (
<span className="status-badge" style={{ backgroundColor: colors[status] || '#6b7280' }}> <span className="status-badge" style={{ backgroundColor: colors[status] || '#6b6b6b' }}>
{status} {status}
</span> </span>
); );