in client/src/app/service/theme.js [4:14]
export async function initCssVars() {
// subscribe to the changes in theme css variables
window.addEventListener("message", (e) => {
if (e.data.properties !== undefined) {
applyCssVars(e.data);
}
});
const themeCssVars = await getCssVarsAndSubscribeForChanges();
applyCssVars(themeCssVars);
}