Skip to content

Instantly share code, notes, and snippets.

@lichenbuliren
Created January 8, 2017 09:57
Show Gist options
  • Save lichenbuliren/62e0c7c435b39404483e90fb973d8d60 to your computer and use it in GitHub Desktop.
Save lichenbuliren/62e0c7c435b39404483e90fb973d8d60 to your computer and use it in GitHub Desktop.
Tint and Shade functions for Sass
// 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