Skip to content

Instantly share code, notes, and snippets.

@andi1984
Created June 5, 2014 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andi1984/27fae8e1597409049f18 to your computer and use it in GitHub Desktop.
Save andi1984/27fae8e1597409049f18 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