Convert numeric color to hex string for CSS
Numeric color value (e.g., 0x00ffff)
Hex color string without # prefix (e.g., "00ffff")
toHex(0x00ffff) // "00ffff"toHex(KOREAN_COLORS.PRIMARY_CYAN) // "00ffff" Copy
toHex(0x00ffff) // "00ffff"toHex(KOREAN_COLORS.PRIMARY_CYAN) // "00ffff"
Convert numeric color to hex string for CSS