Sha256: 4e0a33b81f8aab808b057c7df16a500d45ef2207c78e4c05ff451abf2f853c36

Contents?: true

Size: 354 Bytes

Versions: 4

Compression:

Stored size: 354 Bytes

Contents

// -------------------------------------------------------------------- //
//  Tinting and Shading (Better color control)
// -------------------------------------------------------------------- //

@function tint($color, $percent) {
  @return mix(white, $color, $percent);
}

@function shade($color, $percent) {
  @return mix(black, $color, $percent);
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
kentucky-2.2.2 app/assets/stylesheets/kentucky/functions/_tint-shade.scss
kentucky-2.2.1 app/assets/stylesheets/kentucky/functions/_tint-shade.scss
kentucky-2.1.0 app/assets/stylesheets/kentucky/functions/_tint-shade.scss
kentucky-2.0.0 app/assets/stylesheets/kentucky/functions/_tint-shade.scss