Compililng...
Input SASS
$myColor: red;
.myComponent {
  button {
    background-color: $myColor;
  }
}
Output CSS
.myComponent button {
  background-color: red;
}