You may change the css variable using plain JavaScript elem.style.setProperty("variableName", "variableProp");
$("html").on('click', function() {
$("body").get(0).style.setProperty("--color", "hotpink");
});
body {
--color: blue;
background-color: var(--color);
}
click me!