Skip to content

Instantly share code, notes, and snippets.

@jeneg
Created August 7, 2017 19:49
Show Gist options
  • Save jeneg/b1e8e543aafbe0cab6af83790c5be236 to your computer and use it in GitHub Desktop.
Save jeneg/b1e8e543aafbe0cab6af83790c5be236 to your computer and use it in GitHub Desktop.
YIQ formula
function yiq(bgColor) {
var r = bgColor.r * 255,
g = bgColor.g * 255,
b = bgColor.b * 255;
var yiq = (r * 299 + g * 587 + b * 114) / 1000;
return (yiq >= 128) ? 'black' : 'white';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment