Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created February 26, 2016 15:16
Show Gist options
  • Save fieldoffice/8f3b219530f4cd1e621d to your computer and use it in GitHub Desktop.
Save fieldoffice/8f3b219530f4cd1e621d to your computer and use it in GitHub Desktop.
Sass Lighten and Darken Mixins
// Lighten a colour
@function tint($color, $percentage) {
@return mix(white, $color, $percentage);
}
// Darken a colour
@function shade($color, $percentage) {
@return mix(black, $color, $percentage);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment