////
/// @author Newton Koumantzelis
////

/// Lightens a color by mixing it with white
/// @since 1.12.0 - The Sith
/// @param {Color} $color - a color
/// @param {Percentage} $percent - a percentage to mix the color with white
/// @return {Color} - modified color
/// @example scss
///   a:active {
///     background-color: tint(blue, 20%);
///   }
@function tint($color, $percent) {
	@return mix(rgb(255, 255, 255), $color, $percent);
}
