Skip to content

Commit

Permalink
feat(utilities): prefix color system utils with "color-" (not "fg-")
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnbot committed Apr 26, 2019
1 parent 17222b7 commit ea6e0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities/colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
// Generate a foreground and background utility for every shade of every hue
@each $hue, $shades in $hue-maps {
@each $index, $color in $shades {
.fg-#{$hue}-#{$index} { color: $color !important; }
.color-#{$hue}-#{$index} { color: $color !important; }
.bg-#{$hue}-#{$index} { background-color: $color !important; }
}
}
Expand Down

0 comments on commit ea6e0c2

Please sign in to comment.