Skip to content

Instantly share code, notes, and snippets.

@PG2000
Created January 12, 2016 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PG2000/e61af42eeb24a33d2f41 to your computer and use it in GitHub Desktop.
Save PG2000/e61af42eeb24a33d2f41 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
$gray1: rgba(10, 10, 10, 1);
$gray2: rgba(10, 10, 10, 1);
$myColors:(
gray1: (
color: $gray1
),
gray2:(
color: $gray2
)
);
@each $name, $colors in $myColors {
.#{$name} {
color: map-get($colors, color);
}
}
.gray1 {
color: #0a0a0a;
}
.gray2 {
color: #0a0a0a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment