voltTab/src/component/utility/applyCSSVar.js

7 lines
137 B
JavaScript

export const applyCSSVar = (name, value) => {
const html = document.querySelector('html');
html.style.setProperty(name, value);
};