Sass变量基于什么

时间:2018-09-27 12:00:10

标签: sass scss-lint

在Sass中是否有可能基于其他设置不同的var,这就是我的意思,我有这样的东西

$maincolor: blue;

我需要的是如果正文标签类为深色,则该$ maincolor为红色;比像这样

$maincolor: red;

类似于

@function color($val) {
  @if type-of($val) == color {
    @return $val;
  } @else {
    @return $maincolor: red;
  }
}

我知道函数中有错误,但是那是我需要回答的问题?

0 个答案:

没有答案