change css variables with js code example

Example 1: how to change css variable in javascript

document.documentElement.setAttribute("style", "--main-background-color: green");

Example 2: how to change css variable in javascript

document.documentElement.style.cssText = "--main-background-color: red";

Example 3: change css variable with javascript

let root = document.documentElement;

root.addEventListener("mousemove", e => {
  root.style.setProperty('--mouse-x', e.clientX + "px");
  root.style.setProperty('--mouse-y', e.clientY + "px");
});