1const [red, green, blue] = [69, 111, 225]
2const section1 = document.querySelector('.section1')
3
4window.addEventListener('scroll', () => {
5 let y = 1 + (window.scrollY || window.pageYOffset) / 150
6 y = y < 1 ? 1 : y // ensure y is always >= 1 (due to Safari's elastic scroll)
7 const [r, g, b] = [red/y, green/y, blue/y].map(Math.round)
8 section1.style.backgroundColor = `rgb(${r}, ${g}, ${b})`
9})
10