Skip to content

Commit

Permalink
fix(tokens): replace invalid tokens #229
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjones243 committed Dec 4, 2023
1 parent 6462dbb commit 965ebf6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ $auro-rgb-color-base-white-03: rgba(255, 255, 255, .03);
// focus-visible mixin
@mixin focus-visible {
outline: 3px solid transparent;
box-shadow: inset 0 0 0 1px var(--ds-color-border-focus-inverse, $ds-color-border-focus-inverse), inset 0 0 0 3px var(--ds-color-background-lightest, $ds-color-background-lightest);
box-shadow: inset 0 0 0 1px var(--ds-color-base-white, $ds-color-base-white), inset 0 0 0 3px var(--ds-color-background-lightest, $ds-color-background-lightest);

// auro-button--secondary
&[variant='secondary'],
Expand All @@ -65,22 +65,22 @@ $auro-rgb-color-base-white-03: rgba(255, 255, 255, .03);
// auro-buttonOndark
&Ondark {
background-color: var(--ds-color-ui-default-inverse, $ds-color-ui-default-inverse);
box-shadow: inset 0 0 0 3px var(--ds-color-border-focus-inverse, $ds-color-border-focus-inverse);
box-shadow: inset 0 0 0 3px var(--ds-color-base-white, $ds-color-base-white);

// auro-buttonOndark--secondary
&[variant='secondary'],
&--secondary {
background-color: var(--ds-color-base-black-opacity-15, $ds-color-base-black-opacity-15);
box-shadow: inset 0 0 0 3px var(--ds-color-ui-active-inverse, $ds-color-ui-active-inverse);
border: 1px solid var(--ds-color-ui-active-inverse, $ds-color-ui-active-inverse);
box-shadow: inset 0 0 0 3px var(--ds-color-brand-breeze-200, $ds-color-brand-breeze-200);
border: 1px solid var(--ds-color-brand-breeze-200, $ds-color-brand-breeze-200);
}

// auro-buttonOndark--tertiary
&[variant='tertiary'],
&--tertiary {
background-color: var(--ds-color-base-black-opacity-15, $ds-color-base-black-opacity-15);
border-color: var(--ds-color-ui-active-inverse, $ds-color-ui-active-inverse);
box-shadow: inset 0 0 0 3px var(--ds-color-ui-active-inverse, $ds-color-ui-active-inverse);
border-color: var(--ds-color-brand-breeze-200, $ds-color-brand-breeze-200);
box-shadow: inset 0 0 0 3px var(--ds-color-brand-breeze-200, $ds-color-brand-breeze-200);
}
}
}
Expand Down Expand Up @@ -290,8 +290,8 @@ slot {
}

&:active {
background-color: var(--ds-color-ui-active-inverse, $ds-color-ui-active-inverse);
border: 1px solid var(--ds-color-ui-active-inverse, $ds-color-ui-active-inverse);
background-color: var(--ds-color-brand-breeze-200, $ds-color-brand-breeze-200);
border: 1px solid var(--ds-color-brand-breeze-200, $ds-color-brand-breeze-200);
}

&:disabled {
Expand Down

0 comments on commit 965ebf6

Please sign in to comment.