Someone should make a list of all words and common phrases that result in a color different from #000000 and then go through them all and pick out the interesting ones.
By the way I didn't see any mention of max length. Is there a limitiation to the length of the color string?
Bonus question: What color would the complete works of Shakespeare be? Take all of his scene play manuscripts found on Project Gutenberg but excluding duplicates if any, sort them in the order they were originally published and concatenate into a single string.
The HTML5 color parsing algorithm is less complex than it seems. Mostly it boils down to "take any characters that aren't hex digits and replace them with zeroes, then truncate the resulting string in a consistent way to produce a 24-bit value".
By the way I didn't see any mention of max length. Is there a limitiation to the length of the color string?
Bonus question: What color would the complete works of Shakespeare be? Take all of his scene play manuscripts found on Project Gutenberg but excluding duplicates if any, sort them in the order they were originally published and concatenate into a single string.