Skip to content

Instantly share code, notes, and snippets.

@RPeraltaJr
Created April 10, 2020 16:21
Show Gist options
  • Save RPeraltaJr/2de9dab0da67d35169191834d31a1d79 to your computer and use it in GitHub Desktop.
Save RPeraltaJr/2de9dab0da67d35169191834d31a1d79 to your computer and use it in GitHub Desktop.
$colors: (
mako-grey: #404145,
fuel-yellow: #ecaf2d,
pastel-green: #5ad864
);
@mixin color-modifiers {
@each $name, $hex in $colors {
&-#{$name} {
color: $hex;
}
}
}
.text {
@include color-modifiers;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment