Created
July 7, 2014 18:15
-
-
Save nhunzaker/99ee649e4dd6a3f39a61 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.9) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$colors: ( | |
re: "#c33" | |
); | |
body { | |
background: map-get($colors, 're'); | |
color: map-get($colors, re); | |
} |
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
body { | |
background: "#c33"; | |
color: "#c33"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment