Example of creating and using variables in css
body { --my-background-color-variable: yellow; --my-width-value: 100%; } div { background-color: var(--my-background-color-variable); width: var(--my-width-value); }