Skip to content

Commit

Permalink
fix: change red color to purple in merged pr bar (#2108)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickytonline authored Nov 10, 2023
2 parents 1f7cd66 + 0d6669c commit dc28efc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/molecules/HighlightCard/highlight-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ const HighlightCard: React.FC<HighlightCardProps> = ({
? "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"
Expand Down

0 comments on commit dc28efc

Please sign in to comment.