### Custom variables CSS variables that contain specific values to be reused throughout a document. #### HTML ```html
CSS is awesome!
``` #### CSS ```css :root { --some-color: #da7800; --some-keyword: italic; --some-size: 1.25em; --some-complex-value: 1px 1px 2px whitesmoke, 0 0 1em slategray, 0 0 0.2em slategray; } .custom-variables { color: var(--some-color); font-size: var(--some-size); font-style: var(--some-keyword); text-shadow: var(--some-complex-value); } ``` #### DemoCSS is awesome!