@bytebeans/macaw-ui
Version:
Saleor's UI component library
14 lines (12 loc) • 419 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);
}