$--color-primary: #0076FB;
$--color-white: #FFFFFF;
$--color-black: #000000;
$--color-success: #52C41A;
$--color-warning: #FAAD14;
$--color-danger: #F5222D;
$--color-info: #CCCCCC;
.text-primary {
color: $--color-primary !important;
}
.text-white {
color: $--color-white !important;
}
.text-black {
color: $--color-black !important;
}
.text-success {
color: $--color-success !important;
}
.text-warning {
color: $--color-warning !important;
}
.text-danger {
color: $--color-danger !important;
}
.text-error {
color: $--color-error !important;
}
.text-info {
color: $--color-info !important;
}
想问下,这段代码怎么能优化下呢,感觉有很多重复的地方,又不知道咋改..
可以参考scss的@each