即暗黑模式下,刷新页面后有白色模式闪现后快速变为暗黑模式的问题。
Tailwind 文档提供了解决方案:
// On page load or when changing themes, best to add inline in `head` to avoid FOUC
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}