sass 函数 return class

sass function return class

我有这个代码

.npt {
  ul {
    li {
      a {
        background: $red-700 !important;
      }
    }
  }
}

我需要为很多颜色复制这个,但我想传递颜色基础($red)和 return 这个对应的 css。 我需要这样的东西

@mixin.npt($blue); -->

.npt {
  ul {
    li {
      a {
        background: $blue-700 !important;
      }
    }
  }
}

我该怎么做? 谢谢

@mixin npt($colorvariable) {
  background: $colorvariable-700 !important;
}

try this one and then include 

@include npt($blue);