@gzup/macaw-ui-4
Version:
Gzup's UI component library
14 lines (12 loc) • 406 B
text/typescript
export function changeColorMeta(color: string) {
const themeColorTag = document.createElement("meta");
themeColorTag.setAttribute("content", color);
themeColorTag.setAttribute("name", "theme-color");
const existingColorTag = document.head.querySelector(
'meta[name="theme-color"]'
);
if (existingColorTag) {
existingColorTag.remove();
}
document.head.appendChild(themeColorTag);
}