change order off properties in _colors.scss

This commit is contained in:
Gijs Boddeus 2017-10-04 08:51:24 +02:00 committed by GitHub
parent 263190305e
commit a77c13c403
1 changed files with 3 additions and 3 deletions

View File

@ -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);
}
}