mirror of
https://github.com/penxio/penx.git
synced 2026-01-12 23:18:09 -05:00
11 lines
311 B
TypeScript
11 lines
311 B
TypeScript
export const setStatusBarColor = (color = '#ffffff') => {
|
|
setTimeout(() => {
|
|
if (window.matchMedia('(display-mode: standalone)').matches) {
|
|
const metaTag = document.querySelector('meta[name="theme-color"]')
|
|
if (metaTag) {
|
|
metaTag.setAttribute('content', color)
|
|
}
|
|
}
|
|
}, 0)
|
|
}
|