Skip to content

Commit

Permalink
change order off properties in _colors.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
gijsbotje authored Oct 4, 2017
1 parent 2631903 commit a77c13c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/scss/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@

@each $color, $value in $colors {
.swatch-#{$color} {
color: color-yiq($value);
background-color: #{$value};
color: color-yiq($value);
}
}

@each $color, $value in $theme-colors {
.swatch-#{$color} {
color: color-yiq($value);
background-color: #{$value};
color: color-yiq($value);
}
}

@each $color, $value in $grays {
.swatch-#{$color} {
color: color-yiq($value);
background-color: #{$value};
color: color-yiq($value);
}
}

0 comments on commit a77c13c

Please sign in to comment.