Dongd0825

Results 1 comments of Dongd0825

> @dmitriy-komarov try this: > > ``` > const decimalToHex = (alpha: number) => alpha === 0 ? '00' : Math.round(255 * alpha).toString(16) > > const handleColorChange = (color: ColorResult)...