Check if UIColor is dark or bright?

W3C has the following:
http://www.w3.org/WAI/ER/WD-AERT/#color-contrast

If you’re only doing black or white text, use the color brightness calculation above. If it is below 125, use white text. If it is 125 or above, use black text.

edit 1: bias towards black text. 🙂

edit 2: The formula to use is ((Red value * 299) + (Green value * 587) + (Blue value * 114)) / 1000.

Leave a Comment