const randomHEX = () => return Math.floor(Math.random()*16777215).toString(16)
let
h, s, l,
min_s = 30, max_s = 70,
min_l = 70, max_l = 100;
h = Math.floor(Math.random() * 360); // 0-360 градусов цвета
s = Math.floor(Math.random() * (max_s - min_s) + min_s); // 30-70% насыщенности
l = Math.floor(Math.random() * (max_l - min_l) + min_l); // 70-100% яркости
document.body.style.backgroundColor = `hsl(${h}, ${s}%, ${l}%)`;