Home / CSS Tips Generated By ChatGPT / Implementing CSS Variables CSS variables (custom properties) can be set to store specific values for reuse throughout your stylesheet. Source Code :root { --main-color: blue; } body { color: var(--main-color); }