carlos-sanchez
3/7/2016 - 2:46 PM

CSS Variables https://developers.google.com/web/updates/2016/02/css-variables-why-should-you-care?hl=en Differences between CSS variables a

root {
  --main-color: #06c;
}

#foo h1 {
  color: var(--main-color);
}