Sass在我的css文件中输出#000和#fff作为黑白颜色值.例如:
$color: #000; .box { color: $color; }
输出到:
.box { color: black; }
不应该输出十六进制值?
sass
sass ×1