Skip to content

Instantly share code, notes, and snippets.

@edy2310
Last active October 10, 2018 18:28
Show Gist options
  • Save edy2310/1eb2307c55baa64ba2fa4250d84d88e9 to your computer and use it in GitHub Desktop.
Save edy2310/1eb2307c55baa64ba2fa4250d84d88e9 to your computer and use it in GitHub Desktop.
CSS Variables
:root {
--colorCat: coral;
}
.cat{
color: var(--colorCat);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment