From 1bd446e66a4c10b1bdadf3b3d8475b926684d9df Mon Sep 17 00:00:00 2001 From: Takeshi Kimata <117462761+kimatata@users.noreply.github.com> Date: Sat, 23 Mar 2024 23:32:16 +0900 Subject: [PATCH] Customize theme color --- frontend/config/selection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/config/selection.ts b/frontend/config/selection.ts index 94270e8..954e0e2 100644 --- a/frontend/config/selection.ts +++ b/frontend/config/selection.ts @@ -1,7 +1,7 @@ const priorities = [ { name: "Critical", uid: "critical", color: "danger" }, { name: "High", uid: "high", color: "warning" }, - { name: "Medium", uid: "medium", color: "primary" }, + { name: "Medium", uid: "medium", color: "secondary" }, { name: "Low", uid: "low", color: "success" }, ];