Skip to content

Commit

Permalink
fix #327
Browse files Browse the repository at this point in the history
  • Loading branch information
warmhug committed Sep 30, 2016
1 parent b1b185b commit 703a1c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default class Button extends React.Component<tsProps, any> {
borderColor = variables.brand_primary;

highlightTextColor = variables.color_text_base_inverse;
highlightBackgroundColor = variables.brand_primary;
highlightBackgroundColor = variables.brand_primary_tap;
highlightBorderColor = variables.brand_primary;
} else if (type === 'ghost') {
backgroundColor = 'transparent';
Expand All @@ -96,7 +96,7 @@ export default class Button extends React.Component<tsProps, any> {
textColor = variables.brand_warning;
backgroundColor = variables.fill_base;
borderColor = variables.brand_warning;
highlightBackgroundColor = variables.fill_base;
highlightBackgroundColor = variables.brand_warning;
} else {
textColor = variables.color_text_base;
backgroundColor = variables.fill_base;
Expand Down

0 comments on commit 703a1c3

Please sign in to comment.