Created
November 26, 2014 15:08
-
-
Save starryeyez024/eb0499db6b090c8e6abc 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.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
$team-primary: red; | |
$color-map:( | |
black: '#000000', | |
white: '#FFFFFF', | |
gray: '#CCCCCC' | |
); | |
@function create-palette($color-map) { | |
$list: (); | |
@each $color-name, $color in $color-map { | |
$list: append($list, '<li style="background-color:#{$color}">#{$color-name}</li>'); | |
} | |
@return '<ul>#{$list}</ul>'; | |
} | |
/* | |
Test | |
Markup: | |
<h1 class="#{$team-primary}">h1 Heading</h1> | |
#{create-palette($color-map)} | |
Styleguide 1.1 | |
*/ |
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
/* | |
Test | |
Markup: | |
<h1 class="red">h1 Heading</h1> | |
<ul><li style="background-color:#000000">black</li> <li style="background-color:#FFFFFF">white</li> <li style="background-color:#CCCCCC">gray</li></ul> | |
Styleguide 1.1 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment