From 7a0c8d4cdbfa985d841ae321b02dab39d4f0fe3f Mon Sep 17 00:00:00 2001 From: Lucano Vera Date: Fri, 17 Jan 2025 11:20:55 -0300 Subject: [PATCH] Update status privacy notice badge --- .../admin-ui/src/features/privacy-notices/cells.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/clients/admin-ui/src/features/privacy-notices/cells.tsx b/clients/admin-ui/src/features/privacy-notices/cells.tsx index 6e46ef17d5..f34dd31e4b 100644 --- a/clients/admin-ui/src/features/privacy-notices/cells.tsx +++ b/clients/admin-ui/src/features/privacy-notices/cells.tsx @@ -65,19 +65,19 @@ type TagNames = "available" | "enabled" | "inactive"; const systemsApplicableTags: Record = { available: { - backgroundColor: "orange.100", - color: "orange.800", + backgroundColor: "warn.100", + color: "minos", tooltip: "This notice is associated with a system + data use and can be enabled", }, enabled: { - backgroundColor: "green.100", - color: "green.800", + backgroundColor: "success.100", + color: "minos", tooltip: "This notice is active and available for consumers", }, inactive: { backgroundColor: "gray.100", - color: "gray.800", + color: "minos", tooltip: "This privacy notice cannot be enabled because it either does not have a data use or the linked data use has not been assigned to a system", },