diff --git a/packages/ui/src/icons/priority-icon.tsx b/packages/ui/src/icons/priority-icon.tsx index 0b98b3e6b..031b769f1 100644 --- a/packages/ui/src/icons/priority-icon.tsx +++ b/packages/ui/src/icons/priority-icon.tsx @@ -16,7 +16,7 @@ export const PriorityIcon: React.FC = (props) => { const { priority, className = "", containerClassName = "", size = 14, withContainer = false } = props; const priorityClasses = { - urgent: "bg-red-500 text-red-500 border-red-500", + urgent: "bg-red-600 text-red-500 border-red-600", high: "bg-orange-500/20 text-orange-500 border-orange-500", medium: "bg-yellow-500/20 text-yellow-500 border-yellow-500", low: "bg-custom-primary-100/20 text-custom-primary-100 border-custom-primary-100", @@ -40,7 +40,7 @@ export const PriorityIcon: React.FC = (props) => { {withContainer ? (
= (props) => { { // compact the icons if text is hidden "px-0.5": hideText, // highlight the whole button if text is hidden and priority is urgent - "bg-red-500 border-red-500": priority === "urgent" && hideText && highlightUrgent, + "bg-red-600 border-red-600": priority === "urgent" && hideText && highlightUrgent, }, className )} @@ -88,7 +88,7 @@ const BorderButton = (props: ButtonProps) => {
{ // compact the icons if text is hidden "px-0.5": hideText, // highlight the whole button if text is hidden and priority is urgent - "bg-red-500 border-red-500": priority === "urgent" && hideText && highlightUrgent, + "bg-red-600 border-red-600": priority === "urgent" && hideText && highlightUrgent, }, className )} @@ -164,7 +164,7 @@ const BackgroundButton = (props: ButtonProps) => {
{ // compact the icons if text is hidden "px-0.5": hideText, // highlight the whole button if text is hidden and priority is urgent - "bg-red-500 border-red-500": priority === "urgent" && hideText && highlightUrgent, + "bg-red-600 border-red-600": priority === "urgent" && hideText && highlightUrgent, "bg-custom-background-80": isActive, }, className @@ -242,7 +242,7 @@ const TransparentButton = (props: ButtonProps) => {