diff --git a/app/components/Badge.ts b/app/components/Badge.ts index e79f2b1dc..809cb7b59 100644 --- a/app/components/Badge.ts +++ b/app/components/Badge.ts @@ -7,7 +7,11 @@ const Badge = styled.span<{ yellow?: boolean; primary?: boolean }>` background-color: ${({ yellow, primary, theme }) => yellow ? theme.yellow : primary ? theme.accent : "transparent"}; color: ${({ primary, yellow, theme }) => - primary ? theme.white : yellow ? theme.almostBlack : theme.textTertiary}; + primary + ? theme.accentText + : yellow + ? theme.almostBlack + : theme.textTertiary}; border: 1px solid ${({ primary, yellow, theme }) => primary || yellow