update css custm property in ts code example
Example 1: how to change css variable in javascript
document.documentElement.style.setProperty("--main-background-color", "green");
Example 2: how to change css variable in javascript
document.documentElement.setAttribute("style", "--main-background-color: green");