@green: green;
@red: red;
@yellow: yellow;
@blue: blue;

.foo {
  color: @green;
}

.bar {
  color: @red;
}

.baz {
  color: @yellow;
}

.qux {
  color: @blue;
}
