From 8cf28fe9476cbb787891592a6b45f285d86455eb Mon Sep 17 00:00:00 2001 From: Caio Cabral Date: Sat, 11 Jan 2025 10:03:11 -0500 Subject: [PATCH] fix: label background color --- Client/src/Components/Label/index.jsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Client/src/Components/Label/index.jsx b/Client/src/Components/Label/index.jsx index d1c572161..37ec91e26 100644 --- a/Client/src/Components/Label/index.jsx +++ b/Client/src/Components/Label/index.jsx @@ -127,17 +127,18 @@ const StatusLabel = ({ status, text, customStyles }) => { const colors = { up: { dotColor: theme.palette.success.main, - bgColor: theme.palette.success.contrastText /* dark */, + /* bgColor: theme.palette.success.contrastText */ /* dark */ borderColor: theme.palette.success.main /* light */, }, down: { dotColor: theme.palette.error.main, - bgColor: theme.palette.error.dark, + /* TODO Look for dark and light, they still work */ + /* bgColor: theme.palette.primary.lowContrast, */ borderColor: theme.palette.error.light, }, paused: { dotColor: theme.palette.warning.main, - bgColor: theme.palette.warning.dark, + /* bgColor: theme.palette.warning.dark, */ borderColor: theme.palette.warning.light, }, pending: {