I want to convert a 3-digit hex color which is coming from HTML CSS to a 6-digit hex color for Flex. Can anyone give me code to convert 3-digit hex colors to their 6-digit equivalents?
The three digit hex colors are expanded by doubling each digit (see w3 spec).
So #F3A
gets expanded to #FF33AA
.