@RichT By any chance can we use hexa codes for colors instead of RGB?
Hi Nayak,
You've responded to a pretty old thread, so you likely won't get a response from the people involved in this discussion.
To answer your question, no you can't use hex codes, but hex codes directly translate to RGB numeric values.
For example, indigo is #2E0854. To convert that to a syntax for the fill.set() command, you'd use parseInt("2E",16) for R, parseInt("08",16) for G, and parseInt("54",16) for B. The 16 is to inform the function that you're converting from base 16