AcCSS

github

Variables

AcCSS source

$textColor: red;
p {
	color: $textColor;
}
a {
	color: $textColor;
}

CSS result

p,a{
    color:red;
}

HTML

<p>
	Hello <a href="http://www.wwf.org">world</a> !
</p>

Preview

Hello world !