aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/button.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/components/button.tsx')
-rw-r--r--packages/website/ts/@next/components/button.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/@next/components/button.tsx b/packages/website/ts/@next/components/button.tsx
index 422c44126..2569c39c5 100644
--- a/packages/website/ts/@next/components/button.tsx
+++ b/packages/website/ts/@next/components/button.tsx
@@ -34,7 +34,7 @@ const StyledButton = styled.button<ButtonInterface>`
display: ${props => props.inline && 'inline-block'};
background-color: ${props => !props.transparent && colors.brandLight};
border-color: ${props => props.transparent && '#6a6a6a'};
- color: ${colors.white};
+ color: ${props => props.color || props.theme.textColor};
text-align: center;
padding: 14px 22px;
text-decoration: none;