文字颜色不随整体主题改变

Text color doesn't change with overall theme

Link to the themes change site

每当我尝试更改页面的主题时,文本的颜色并没有随之改变。 Link to the files

在沙箱文件中尝试将 class 添加到正文

body.classList.add(theme)

您需要为 <a> 更改颜色而不是继承。

a {
  color: var(--text) !important;
}