I defined a custom property in the :root selector as shown below, but for some reason my color is not rendering correctly. Can someone please help me identify what I am doing wrong?
:root {
--color-primary: var(--color-primary, #ffc107);
}
body {
background-color: var(--color-primary); // The background color does not seem to be working
}