How to convert 3-digit HTML hex colors to 6-digit flex hex colors
The three digit hex colors are expanded by doubling each digit (see w3 spec).
So #F3A
gets expanded to #FF33AA
.
Double every digit: for example #A21
is equal to #AA2211
.
However this question is a duplicate of: convert to 3-digit hex color code