Skip to content

Instantly share code, notes, and snippets.

@kristoferjoseph
Created May 21, 2015 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kristoferjoseph/7ea2763d71144689448b to your computer and use it in GitHub Desktop.
Save kristoferjoseph/7ea2763d71144689448b to your computer and use it in GitHub Desktop.
Even better CSS4 variables
:root {
--primary-color: #d12028;
}
/* fallback values in case a variable is not supplied FTW */
body {
background: var(--primary-color, red);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment