Guga Gongadze

Results 2 comments of Guga Gongadze

Relevant issue: https://github.com/auth0/nextjs-auth0/issues/1063

Here is the solution for 8-digit hex code: ```ts const decimalToHex = (alpha: number) => alpha === 0 ? '00' : Math.round(255 * alpha).toString(16) const handleColorChange = (color: ColorResult) =>...