From 0d6669c50c43858dbbb620cd5f89d3831ccc053c Mon Sep 17 00:00:00 2001 From: Kishore Kumar Date: Fri, 10 Nov 2023 23:11:08 +0530 Subject: [PATCH] change red color to purple in merged pr bar --- components/molecules/HighlightCard/highlight-card.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/molecules/HighlightCard/highlight-card.tsx b/components/molecules/HighlightCard/highlight-card.tsx index f0f691965e..ba8afb60d9 100644 --- a/components/molecules/HighlightCard/highlight-card.tsx +++ b/components/molecules/HighlightCard/highlight-card.tsx @@ -209,9 +209,9 @@ const HighlightCard: React.FC = ({ ? "bg-green-500" : percentage && percentage > 30 ? "bg-yellow-500" - : "bg-red-500" + : "bg-purple-500" : percentage && percentage > 70 - ? "bg-red-500" + ? "bg-purple-500" : percentage && percentage > 30 ? "bg-yellow-500" : "bg-green-500"