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.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/website/ts/@next/components/button.tsx b/packages/website/ts/@next/components/button.tsx
index baca01a14..675f69308 100644
--- a/packages/website/ts/@next/components/button.tsx
+++ b/packages/website/ts/@next/components/button.tsx
@@ -74,7 +74,9 @@ const ButtonBase =
transition: background-color 0.35s, border-color 0.35s;
// @todo Refactor to use theme props
- ${props => props.bgColor === 'dark' && `
+ ${props =>
+ props.bgColor === 'dark' &&
+ `
background-color: ${colors.brandDark};
color: ${colors.white};
`}