Skip to content

Commit

Permalink
Merge pull request #4449 from ffxsam/badge-palette-fix
Browse files Browse the repository at this point in the history
[Badge] Fixed incorrect color usage (primary/accent were swapped)
  • Loading branch information
oliviertassinari authored Jun 9, 2016
2 parents 39150e7 + 36b6dbe commit a3972ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/styles/getMuiTheme.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ export default function getMuiTheme(muiTheme, ...more) {
badge: {
color: palette.alternateTextColor,
textColor: palette.textColor,
primaryColor: palette.accent1Color,
primaryColor: palette.primary1Color,
primaryTextColor: palette.alternateTextColor,
secondaryColor: palette.primary1Color,
secondaryColor: palette.accent1Color,
secondaryTextColor: palette.alternateTextColor,
fontWeight: typography.fontWeightMedium,
},
Expand Down

0 comments on commit a3972ca

Please sign in to comment.