gerar cores mais brilhantes aleatórias
const generateRandomBrightestHSLColor=()=> {
return "hsla(" + ~~(360 * Math.random()) + "," +
"70%," +
"80%,1)"
}
Marwen Labidi
const generateRandomBrightestHSLColor=()=> {
return "hsla(" + ~~(360 * Math.random()) + "," +
"70%," +
"80%,1)"
}