I've seen a lot of ways of adding variables in CSS (e.g. SASS and LESS).
What are the pro and cons of changing from this:
#div-one, #div-two {
color: blue;
}
to this:
@default: blue;
#div-one {
color: @default;
}
#div-two {
color: @default;
}