sass 赋值运算符

示例

Sass使用冒号(:)运算符将值分配给变量。

$foreColor: red;

p {
    color: $foreColor;
}