SCSS CSS Variables

#css #scss #frontend #web-development

SCSS CSS Variables

:root {
	--background-color: hsl(0, 0%, 11%);
	--text-color: hsl(0, 0%, 100%);
}

body {
	background-color: var(--background-color);
	color: var(--text-color);
}

SASS or SCSS
CSS

Why you should use CSS Variables over SCSS Variables