Skip to content

Commit

Permalink
feat(theming cleanup): update button disabled background color
Browse files Browse the repository at this point in the history
  • Loading branch information
Ddouglasz committed Apr 19, 2024
1 parent 3e1775b commit 20062b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const getButtonStyles = (
&,
&:active,
&:hover {
background-color: ${designTokens.colorAccent95};
background-color: ${designTokens.colorNeutral95};
color: ${designTokens.colorNeutral60};
box-shadow: ${designTokens.shadow0};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const getStateStyles = (
if (isDisabled) {
return css`
box-shadow: ${designTokens.shadow0};
background-color: ${designTokens.colorAccent95};
background-color: ${designTokens.colorNeutral95};
border: none;
color: ${designTokens.colorNeutral60};
&:focus,
Expand Down

0 comments on commit 20062b1

Please sign in to comment.