我尝试修改离子刷新器的颜色(文本和微调器图标)。首先,我尝试下面的代码,但是它不起作用。
.refresher-textColor .refresher-iconColor {
color: color($colors, white);
}
我只能使用这样的默认sass变量来实现它
.refresher-refreshing-text,
.refresher-pulling-text,
.refresher-pulling-icon,
.refresher-refreshing-icon {
color: white;
}
我找到了每一个,但找不到没有sass变量的修改颜色的方法。请告诉我正确的方法。