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