in client/src/app/service/theme.js [16:24]
function applyCssVars(themeProperties) {
isDark = themeProperties.isDark;
let newCssVars = {};
themeProperties.properties.forEach((cssVar, i) => {
document.documentElement.style.setProperty(cssVar.name, cssVar.value);
newCssVars[cssVar.name] = cssVar.value;
})
cssVars = newCssVars;
}