Operations

Sass understands most numeric operators including the parentheses ( ).
You can even perform arithmetic operations on color values.
div {
   border: ((1px * 10 /2) + (30px - 25px)) sol + id  (#22dd33 + red);
}

div {
  border: 10px solid #ffdd33;
}