Skip to content

Instantly share code, notes, and snippets.

@vviikk
Created November 12, 2018 23:49
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 vviikk/c54345da47ab4ac181824ab9e8ca3a41 to your computer and use it in GitHub Desktop.
Save vviikk/c54345da47ab4ac181824ab9e8ca3a41 to your computer and use it in GitHub Desktop.
:root {
/* CONSTANTS, --UPPER-KEBAB-CASE */
--COLOR-PRIMARY: palevioletred;
  --COLOR-GRAY: silver;
/* VARIABLES, mutated later (line 10), so --lower-kebab-case */
  --heading-color: var(--COLOR-GRAY);
}
h1 {
 --heading-color: var(--COLOR-PRIMARY); /* Value is overridden */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment