Skip to content

阅读器主题同步

背景

阅读器在 iframe 中运行,只根据 OS 系统主题(prefers-color-scheme)切换暗/亮色,不会跟随 VitePress 网站的手动主题切换。

实现方式

三层优先级

优先级来源存储
1阅读器手动切换(◐ 按钮)localStorage.reader-theme
2VitePress 父页面主题MutationObserver 监听 <html class="dark">
3OS 系统主题prefers-color-scheme: dark

主题切换按钮

点击顶栏 ◐ 按钮循环切换:autolightdarkauto,选中后保存到 localStorage 并立即注入到 epub 内容。

父页面同步

同源 iframe 可访问 window.parent.document.documentElement.classList,通过 MutationObserver 监听 VitePress 主题变化,自动同步到阅读器。

关联文件

  • public/books/reader-money-dog.html
  • public/books/reader-rich-dad.html

金融知识学习笔记