Stage 3: Advanced CSS Design
CSS Variables (Theming)
Define variables to maintain consistency across your site.
:root {
--primary: #2563eb;
}
Practice Task
Change the --primary color to a custom hex code.