UNPKG

@hitachivantara/uikit-react-core

Version:
13 lines (12 loc) 366 B
//#region src/utils/theme.ts /** * Sets the element attributes and style for a theme and color mode. */ var setElementAttrs = (element, themeName, modeName) => { element.dataset.theme = themeName; element.dataset.colorMode = modeName; element.classList.add("uikit-root-element"); element.style.colorScheme = modeName; }; //#endregion export { setElementAttrs };