Created
July 26, 2014 18:23
-
-
Save alademann/7fbdba76c90d0dbf7210 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.10) | |
| // Compass (v1.0.0.alpha.20) | |
| // ---- | |
| @import "compass"; | |
| $colors: ( | |
| 'cyan': #00ffff, | |
| 'purple': #b848c9 | |
| ); | |
| @each $name, $hex in $colors { | |
| .#{$name} { | |
| background-color: $hex; | |
| color: contrast-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
| .cyan { | |
| background-color: cyan; | |
| color: black; | |
| } | |
| .purple { | |
| background-color: #b848c9; | |
| color: white; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment