<h1>My text color is defined by a fallback unless a custom property is defined</h1>
/* Un-comment this block to see the text change to purple */
/*:root {
  --text-color: rebeccapurple;
}*/

h1 {
  color: var(--text-color, royalblue);
}

External CSS

  1. https://codepen.io/piccalilli/pen/e691135733d812201da5d9de1fc5eab4.css

External JavaScript

This Pen doesn't use any external JavaScript resources.