Skip to content

Commit f389ead

Browse files
committed
Change the color to indigo
1 parent ad4daa3 commit f389ead

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

apps/webapp/app/routes/resources.orgs.$organizationSlug.select-plan.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ function TierContainer({
801801
<div
802802
className={cn(
803803
"flex w-full min-w-[16rem] flex-col p-6",
804-
isHighlighted ? "border border-primary" : "border border-grid-dimmed",
804+
isHighlighted ? "border border-indigo-500" : "border border-grid-dimmed",
805805
className
806806
)}
807807
>
@@ -832,7 +832,10 @@ function PricingHeader({
832832
return (
833833
<div className="flex flex-col gap-2">
834834
<h2
835-
className={cn("text-xl font-medium", isHighlighted ? "text-primary" : "text-text-dimmed")}
835+
className={cn(
836+
"text-xl font-medium",
837+
isHighlighted ? "text-indigo-500" : "text-text-dimmed"
838+
)}
836839
>
837840
{title}
838841
</h2>

0 commit comments

Comments
 (0)