improvement: better badge color

This commit is contained in:
Scott Wilson
2025-06-18 16:17:53 -07:00
parent 459b262865
commit 8fb6063686

View File

@@ -2,11 +2,11 @@ import { PolicyType } from "@app/hooks/api/policies/enums";
export const policyDetails: Record<PolicyType, { name: string; className: string }> = {
[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"
}
};