Guest User

Untitled

a guest
Nov 12th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. /* Increase specificity by specifying the selector twice. */
  2. :root:root { /* makes the properties immutable, cant be reassigned */
  3. --COLOR-PRIMARY: palevioletred;
  4. --COLOR-SECONDARY: mediumseagreen;
  5. }
  6.  
  7. :root {
  8. --COLOR-PRIMARY: blue; /* WON't work as `:root:root` has higher specificity. :)
  9. }
Add Comment
Please, Sign In to add comment