Converts a shorthand hex string to a longhand hex string.
shortToLongHex('#fff') // Returns '#ffffff'shortToLongHex('0x000', '0x') // Returns '0x000000' Copy
shortToLongHex('#fff') // Returns '#ffffff'shortToLongHex('0x000', '0x') // Returns '0x000000'
Shorthand hex string.
Prefix of hex string.
Longhand hex string.
Converts a shorthand hex string to a longhand hex string.
Example