@
wogogoing https://theme-next.js.org/docs/theme-settings/index.html?highlight=dark 从主题官方的配置文档中确实没有手动控制的开关。
这部分生效的源码是:
https://github.com/next-theme/hexo-theme-next/blob/fec615cadf856055d9559a18512d2090f3ab1967/layout/_partials/head/head.njk#L3```
{%- if theme.darkmode %}
<meta name="theme-color" content="{{ theme.theme_color.light }}" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="{{ theme.theme_color.dark }}" media="(prefers-color-scheme: dark)">
{%- else %}
```
如果想要手工控制的话,可以用 js 来修改这里的逻辑。
我不太想花时间定制这个主题了。如果有需要的话,可以参看上面的修改方法