From 8fb606368689f5d8a76144a5953e3c2a982807ce Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Wed, 18 Jun 2025 16:17:53 -0700 Subject: [PATCH] improvement: better badge color --- frontend/src/helpers/policies.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/helpers/policies.ts b/frontend/src/helpers/policies.ts index e1a522e9f..c97f25965 100644 --- a/frontend/src/helpers/policies.ts +++ b/frontend/src/helpers/policies.ts @@ -2,11 +2,11 @@ import { PolicyType } from "@app/hooks/api/policies/enums"; export const policyDetails: Record = { [PolicyType.AccessPolicy]: { - className: "bg-yellow-500/40 text-mineshaft-100", + className: "bg-green/20 text-green", name: "Access Policy" }, [PolicyType.ChangePolicy]: { - className: "bg-blue-500/40 text-mineshaft-100", + className: "bg-yellow/20 text-yellow", name: "Change Policy" } };