Current section

Files

Jump to
m3e src m3e css.ffi.mjs
Raw

src/m3e/css.ffi.mjs

// set_global_css_variable sets a Custom CSS Variable globally
export function set_global_css_variable(variable, value) {
document.documentElement.style.setProperty(variable, value);
}
// set_local_css_variable sets a Cutom CSS Variable on just one element and its children
export function set_local_css_variable(variable, value, id) {
const myElement = document.querySelector(id);
myElement.style.setProperty(variable, value);
}