Skip to content

Instantly share code, notes, and snippets.

@vviikk
Last active November 12, 2018 23:23
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/760a288c4e9557d78428df56adf1507b to your computer and use it in GitHub Desktop.
Save vviikk/760a288c4e9557d78428df56adf1507b to your computer and use it in GitHub Desktop.
/* Increase specificity by specifying the selector twice. */
:root:root { /* makes the properties immutable, cant be reassigned */
--COLOR-PRIMARY: palevioletred;
--COLOR-SECONDARY: mediumseagreen;
}
:root {
--COLOR-PRIMARY: blue; /* WON't work as `:root:root` has higher specificity. :)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment