Skip to content

Commit

Permalink
fix: fix yellow color for <Pill /> component (#1299)
Browse files Browse the repository at this point in the history
  • Loading branch information
foxyblocks authored Jun 26, 2023
1 parent 0b43c31 commit 2f2d9f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/atoms/Pill/pill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Pill: React.FC<PillProps> = ({ className, text, color = "slate", size = "b
color === "green"
? "text-light-grass-11"
: color === "yellow"
? "text-light-amber-10"
? "text-amber-700"
: color === "red"
? "text-light-red-11"
: color === "purple"
Expand Down

0 comments on commit 2f2d9f5

Please sign in to comment.