hexo-theme-cupertino
Version:
The Hexo Blog Theme Cupertino.
19 lines (16 loc) • 392 B
JavaScript
;(() => {
const f = () => {
try {
document.getElementById(
'tidio-chat-iframe',
).contentDocument.documentElement.style.colorScheme = 'light dark'
} catch (error) {}
if (
document.getElementById('tidio-chat-iframe')?.contentDocument
?.documentElement?.style?.colorScheme !== 'light dark'
) {
setTimeout(f, 250)
}
}
f()
})()