/* 首帧前落主题,避免 prefers-color-scheme 先绘制导致深/浅闪变 (FOUC)。 * 独立为外链文件(public/ 原样拷贝到 dist/),使 CSP 可移除 script-src 'unsafe-inline' * (见 crates/server/src/main.rs security_headers_middleware)。 * 必须以同步任 script 在 中于首帧前执行(Vite 保留此标签,不做打包)。 */ (function () { try { var saved = localStorage.getItem('dcts_theme'); var theme = saved || (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'); document.documentElement.setAttribute('data-theme', theme); } catch (e) { /* localStorage 不可用时回退媒体查询 */ } })();