chore: Change Button background color from primary.dark1 to primary.base (#20846)

This commit is contained in:
Kamil Gabryjelski 2022-07-25 18:02:14 +02:00 committed by GitHub
parent 8bfc9b76a6
commit e3c6380258
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -119,8 +119,8 @@ export default function Button(props: ButtonProps) {
let borderColorDisabled = 'transparent'; let borderColorDisabled = 'transparent';
if (buttonStyle === 'primary') { if (buttonStyle === 'primary') {
backgroundColor = primary.dark1; backgroundColor = primary.base;
backgroundColorHover = mix(0.1, grayscale.light5, primary.dark1); backgroundColorHover = primary.dark1;
backgroundColorActive = mix(0.2, grayscale.dark2, primary.dark1); backgroundColorActive = mix(0.2, grayscale.dark2, primary.dark1);
color = grayscale.light5; color = grayscale.light5;
colorHover = color; colorHover = color;

View File

@ -225,7 +225,7 @@ const SelectorLabel = styled.button`
} }
&.selected { &.selected {
background-color: ${theme.colors.primary.dark1}; background-color: ${theme.colors.primary.base};
color: ${theme.colors.primary.light5}; color: ${theme.colors.primary.light5};
svg { svg {