The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
// 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);
}