Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
// 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;
}

Commits for Nextrek/Aiba_backup/public/sass/plug-in/bourbon/functions/_color-lightness.scss

Diff revisions: vs.
Revision Author Commited Message
1464 MOliva picture MOliva Tue 13 Oct, 2020 11:16:56 +0000