Sha256: 7b5ecadad9261603e9994bee43eaf3ccbe8fd17f3688ba99fac07cfafeef3e3e

Contents?: true

Size: 292 Bytes

Versions: 6

Compression:

Stored size: 292 Bytes

Contents

// Misc color utilities
// --------------------------------------------------------------

// Takes a color and returns a white if the color is dark or a black if the color is light.
@function color-contrast($color, $threshold: 30%){
	@return if(lightness($color) < $threshold, #fff, #000);
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
facades-0.1.0 lib/facades/stylesheets/facades/utilities/_color.scss
facades-0.0.7 lib/facades/stylesheets/facades/utilities/_color.scss
facades-0.0.6 lib/facades/stylesheets/facades/utilities/_color.scss
facades-0.0.5 lib/facades/stylesheets/facades/utilities/_color.scss
facades-0.0.4 lib/facades/stylesheets/facades/utilities/_color.scss
facades-0.0.3 lib/facades/stylesheets/facades/utilities/_color.scss