Générer une couleur la plus brillante

const generateRandomBrightestHSLColor=()=> {
	return "hsla(" + ~~(360 * Math.random()) + "," +
		"70%," +
		"80%,1)"
}
Marwen Labidi