Skip to content

Instantly share code, notes, and snippets.

@8lane
Last active December 5, 2016 18:34
Show Gist options
  • Select an option

  • Save 8lane/4d8ce66793788f503f24 to your computer and use it in GitHub Desktop.

Select an option

Save 8lane/4d8ce66793788f503f24 to your computer and use it in GitHub Desktop.
@function tint($color, $percent:null) {
@if ($percent != null) {
@return map-get(map-get($my-brand-tints, $color), $percent);
} @else {
@return map-get(map-get($my-brand-tints, $color), 100);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment