Skip to content

Commit

Permalink
fix(Surface): update backgroundColor to use interactive tokens (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
erautenberg authored Oct 30, 2023
1 parent 63cff01 commit d3b81ef
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,17 @@
*/

export const base = theme => ({
backgroundColor: theme.color.fillNeutralTertiary,
backgroundColor: theme.color.interactiveNeutral,
radius: theme.radius.md,
animation: {}
});

export const tone = theme => ({
inverse: {
backgroundColor: theme.color.interactiveInverse
}
});

export const mode = theme => ({
focused: {
backgroundColor: theme.color.interactiveNeutralFocus,
Expand Down

0 comments on commit d3b81ef

Please sign in to comment.