Skip to content

Instantly share code, notes, and snippets.

@procload
Created July 3, 2014 14:15
Show Gist options
  • Save procload/6da64402d884f3276bce to your computer and use it in GitHub Desktop.
Save procload/6da64402d884f3276bce to your computer and use it in GitHub Desktop.
$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