Created
July 30, 2014 06:32
-
-
Save macx/e24136020e73c58d0a63 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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