chore: Change Button background color from primary.dark1 to primary.base (#20846)
This commit is contained in:
parent
8bfc9b76a6
commit
e3c6380258
|
|
@ -119,8 +119,8 @@ export default function Button(props: ButtonProps) {
|
|||
let borderColorDisabled = 'transparent';
|
||||
|
||||
if (buttonStyle === 'primary') {
|
||||
backgroundColor = primary.dark1;
|
||||
backgroundColorHover = mix(0.1, grayscale.light5, primary.dark1);
|
||||
backgroundColor = primary.base;
|
||||
backgroundColorHover = primary.dark1;
|
||||
backgroundColorActive = mix(0.2, grayscale.dark2, primary.dark1);
|
||||
color = grayscale.light5;
|
||||
colorHover = color;
|
||||
|
|
|
|||
|
|
@ -225,7 +225,7 @@ const SelectorLabel = styled.button`
|
|||
}
|
||||
|
||||
&.selected {
|
||||
background-color: ${theme.colors.primary.dark1};
|
||||
background-color: ${theme.colors.primary.base};
|
||||
color: ${theme.colors.primary.light5};
|
||||
|
||||
svg {
|
||||
|
|
|
|||
Loading…
Reference in New Issue