Skip to content

Instantly share code, notes, and snippets.

@joe-watkins
Last active August 29, 2015 14:11
Show Gist options
  • Save joe-watkins/cc3b163eac440d36ae48 to your computer and use it in GitHub Desktop.
Save joe-watkins/cc3b163eac440d36ae48 to your computer and use it in GitHub Desktop.
// Add percentage of white to a color
@function tint($color, $percent){
@return mix(white, $color, $percent);
}
// Add percentage of black to a color
@function shade($color, $percent){
@return mix(black, $color, $percent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment