_color-lightness.scss 469 B

12345678910111213
  1. // Programatically determines whether a color is light or dark
  2. // Returns a boolean
  3. // More details here http://robots.thoughtbot.com/closer-look-color-lightness
  4. @function is-light($hex-color) {
  5. $-local-red: red(rgba($hex-color, 1.0));
  6. $-local-green: green(rgba($hex-color, 1.0));
  7. $-local-blue: blue(rgba($hex-color, 1.0));
  8. $-local-lightness: ($-local-red * 0.2126 + $-local-green * 0.7152 + $-local-blue * 0.0722) / 255;
  9. @return $-local-lightness > .6;
  10. }