0

我试图在包含主题混合时设置全局变量,因为它似乎比我从搜索中找到的“主题化”内容更直接使用。

这个想法就像有_themes.scss一个

@mixin light-theme { $primary-color: #123456 !global; }
@mixin dark-theme { $primary-color: #654321 !global; }

body.light-theme { @include light-theme }
body.dark-theme { @include dark-theme }

问题是它总是使用 dark-theme 值,因为它是最后声明的。我正在尝试做的事情可能吗?

4

0 回答 0