I have a group of colors and I want to find their relative colorfulness. Could anyone show me an example in javascript? Many thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
// You can compare colors by their saturation and brightness-
var colors=['rgb(255,0,0)','rgb(150,150,150)','rgb(0,200,100)','rgb(0,255,255)']; // colors.sort(sortColors).join('\n')
|
|||
|
|
This function returns the saturation (from 0.0 to 1.0) given the RGB values:
I know you asked for colorfulness, but this could be a good stating point. (I actually didn't knew the difference, thanks for pointing out that wikipedia page) |
|||||||||||||
|