You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
463 B
24 lines
463 B
@charset "UTF-8";
|
|
|
|
/// Mixes a color with white.
|
|
///
|
|
/// @param {Color} $color
|
|
///
|
|
/// @param {Number (Percentage)} $percent
|
|
/// The amount of white to be mixed in.
|
|
///
|
|
/// @example scss - Usage
|
|
/// .element {
|
|
/// background-color: tint(#6ecaa6, 40%);
|
|
/// }
|
|
///
|
|
/// @example css - CSS Output
|
|
/// .element {
|
|
/// background-color: #a8dfc9;
|
|
/// }
|
|
///
|
|
/// @return {Color}
|
|
|
|
@function tint($color, $percent) {
|
|
@return mix(#fff, $color, $percent);
|
|
}
|
|
|