Космический лендинг
☿ Меркурий
♀ Венера
⊕ Земля
♂ Марс
♃ Юпитер
♄ Сатурн
⛢ Уран
♆ Нептун
♇ Плутон
Ɛ Эрида
⚳ Церера
⯓ Макемаке
const hue = document.getElementById("hue"); const sat = document.getElementById("hueSaturation"); const light = document.getElementById("hueLightness"); function updateBackground() { document.body.style.background = `hsl(${hue.value}, ${sat.value}%, ${light.value}%)`; } [hue, sat, light].forEach(el => el.addEventListener("input", updateBackground)); updateBackground();