@charset "UTF-8";

@function __lighten($color, $percentage) {
  @if __isColor($color) {
    @return mix(white, $color, $percentage);
  }
}
