let x
x =
Math.floor(Math.random() * 100);
var r = document.querySelector(':root');
function set1() {
// Set the value of variable --blue to another value (in this case "lightblue")
r.style.setProperty('--at11', x + '%');
}
window.onload = set1;
let x
x =
Math.floor(Math.random() * 100);
var r = document.querySelector(':root');
function set1() {
// Set the value of variable --blue to another value (in this case "lightblue")
r.style.setProperty('--at11', x + '%');
}
window.onload = set1;