Sha256: aa54e5db85276f32581b1c9ca355359cd0588376099f051cdd02b6e0cce35412
Contents?: true
Size: 463 Bytes
Versions: 169
Compression:
Stored size: 463 Bytes
Contents
@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); }
Version data entries
169 entries across 162 versions & 26 rubygems