Sha256: b1f276cdcb269ec7715def7267ea263ad273466e6881d1662e384b352bd09c1e

Contents?: true

Size: 615 Bytes

Versions: 6

Compression:

Stored size: 615 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.
///
/// @return {color}
///
/// @example scss
///   .element {
///     background-color: tint(#6ecaa6, 40%);
///   }
///
///   // CSS Output
///   .element {
///     background-color: #a8dfc9;
///   }

@function tint(
  $color,
  $percent
) {
  @if not _is-color($color) {
    @error "`#{$color}` is not a valid color for the `$color` argument in " +
           "the `tint` mixin.";
  } @else {
    @return mix(#fff, $color, $percent);
  }
}

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
bourbon-6.0.0 core/bourbon/library/_tint.scss
bourbon-5.1.0 core/bourbon/library/_tint.scss
bourbon-5.0.1 core/bourbon/library/_tint.scss
bourbon-5.0.0 core/bourbon/library/_tint.scss
dream-theme-0.1.0 _sass/bourbon/bourbon/library/_tint.scss
bourbon-5.0.0.beta.8 core/bourbon/library/_tint.scss