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
465 B
24 lines
465 B
@charset "UTF-8";
|
|
|
|
/// Mixes a color with black.
|
|
///
|
|
/// @param {Color} $color
|
|
///
|
|
/// @param {Number (Percentage)} $percent
|
|
/// The amount of black to be mixed in.
|
|
///
|
|
/// @example scss - Usage
|
|
/// .element {
|
|
/// background-color: shade(#ffbb52, 60%);
|
|
/// }
|
|
///
|
|
/// @example css - CSS Output
|
|
/// .element {
|
|
/// background-color: #664a20;
|
|
/// }
|
|
///
|
|
/// @return {Color}
|
|
|
|
@function shade($color, $percent) {
|
|
@return mix(#000, $color, $percent);
|
|
}
|
|
|