Search code examples
apache-flexcolorshex

How to convert 3-digit HTML hex colors to 6-digit flex hex colors


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?


Solution

  • The three digit hex colors are expanded by doubling each digit (see w3 spec). So #F3A gets expanded to #FF33AA.