Skip to content

Instantly share code, notes, and snippets.

@macx
Created July 30, 2014 06:32
Show Gist options
  • Save macx/e24136020e73c58d0a63 to your computer and use it in GitHub Desktop.
Save macx/e24136020e73c58d0a63 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
$sun-index-colors: (
'10' #FCC24E,
'15' #F7A722,
'20' #F7A722,
'30' #D95716,
'50' #D95716,
);
@each $color in $sun-index-colors {
$index: nth($color, 1);
$colorValue: nth($color, 2);
.m-sun-index--#{$index} {
color: $colorValue;
}
}
.m-sun-index--10 {
color: #fcc24e;
}
.m-sun-index--15 {
color: #f7a722;
}
.m-sun-index--20 {
color: #f7a722;
}
.m-sun-index--30 {
color: #d95716;
}
.m-sun-index--50 {
color: #d95716;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment