In javascript/jquery, if I have two colors in HSL (or hex or rgb) format, is there an algorithm that can check if the contrast is bad? One color is text, and the other color is the background of the text. I need to follow standard accessibility guidelines and make sure the text is well readable. So I think I need to check if the contrast is good enough between the two values.
Thanks
This example returns an array with the relative brightness and color contrast of two colors (passed in as rgb strings or 3-member arrays).
The formula is from : http://www.w3.org/TR/AERT#color-contrast.
Deciding what values are contrasty enough is subjective, the W3 article suggests [125,500] as minimums.
contrast(f,b)>>> returned value: (Array)[179,510]