Created
February 3, 2015 06:50
-
-
Save rizkysyazuli/511dee5bbd1a40054d92 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
// ---- | |
// libsass (v3.1.0-beta) | |
// ---- | |
@each $color, $hex in (red: #f16158, orange: #faaf40, green: #00a79d, purple: #9e1e62, blue: #1b75bb) { | |
.theme-#{$color} { | |
background-color: $hex; | |
} | |
} |
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
.theme-red { | |
background-color: #f16158; } | |
.theme-orange { | |
background-color: #faaf40; } | |
.theme-green { | |
background-color: #00a79d; } | |
.theme-purple { | |
background-color: #9e1e62; } | |
.theme-blue { | |
background-color: #1b75bb; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment