scss允许使用颜色分量以及算术运算和任何颜色表达式返回颜色值。
例如scss代码:
$color1: #333399; $color2: #CC3399; p{ color: $color1 + $color2; }
编译之后的css代码:
p { color: #ff66ff; }