Sha256: ade2a07a2bf1a938c6005f763405036a68d3484d527aba6ffe88d11a8130793f
Contents?: true
Size: 461 Bytes
Versions: 3
Compression:
Stored size: 461 Bytes
Contents
@charset "UTF-8"; /// Mixes a color with white. /// /// @argument {color} $color /// /// @argument {number (percentage)} $percent /// The amount of white to be mixed in. /// /// @example scss /// .element { /// background-color: tint(#6ecaa6, 40%); /// } /// /// @example css /// .element { /// background-color: #a8dfc9; /// } /// /// @return {color} @function tint( $color, $percent ) { @return mix(#fff, $color, $percent); }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bourbon-5.0.0.beta.3 | core/bourbon/library/_tint.scss |
bourbon-5.0.0.beta.2 | core/bourbon/library/_tint.scss |
bourbon-5.0.0.beta.1 | core/bourbon/functions/_tint.scss |