Created
July 3, 2014 14:15
-
-
Save procload/6da64402d884f3276bce to your computer and use it in GitHub Desktop.
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
$colors: ( | |
"provisions": #F7F7F7, | |
"text": #333 | |
); | |
@function color($key) { | |
@return map-get($colors, $key); | |
} | |
.my-element { | |
background-color: color(provisions); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment