Sha256: cd2bad41e4b682efc193c23e49560cdf4c3693e1e56c08536c747e1aaef98f61
Contents?: true
Size: 469 Bytes
Versions: 346
Compression:
Stored size: 469 Bytes
Contents
// Programatically determines whether a color is light or dark // Returns a boolean // More details here http://robots.thoughtbot.com/closer-look-color-lightness @function is-light($hex-color) { $-local-red: red(rgba($hex-color, 1.0)); $-local-green: green(rgba($hex-color, 1.0)); $-local-blue: blue(rgba($hex-color, 1.0)); $-local-lightness: ($-local-red * 0.2126 + $-local-green * 0.7152 + $-local-blue * 0.0722) / 255; @return $-local-lightness > .6; }
Version data entries
346 entries across 338 versions & 11 rubygems