Sha256: 159b18df49528d64ad32e2648a97200864227ad640d888a08832661420cbef02
Contents?: true
Size: 430 Bytes
Versions: 1
Compression:
Stored size: 430 Bytes
Contents
@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 /// .element { /// background-color: shade(#ffbb52, 60%); /// } /// /// @example css /// .element { /// background-color: #664a20; /// } /// /// @return {color} @function shade($color, $percent) { @return mix(#000, $color, $percent); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bourbon-5.0.0.alpha.0 | core/bourbon/functions/_shade.scss |