data-theme + CSS 变量 + localStorage,三件套搞定主题切换。

关键点

  • 变量集中定义在 :roothtml[data-theme='dark'] 两处
  • 首屏内联脚本同步读取 localStorage,避免”闪白”
  • prefers-color-scheme 作为无偏好时的默认值
var t = localStorage.getItem('theme') ||
(matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
document.documentElement.setAttribute('data-theme', t);