Answers for "can we use sass variables in html file"

CSS
5

scss variables

$base-color: #c6538c;
Posted by: Guest on January-22-2020
0

sass use variables from another file

//_variables.scss 
$light: #f5f5f5;
$dark: ##2e3033;

//_theme.scss
@import './_variables'; //relative path to file
body {
	background-color: $dark;
}
Posted by: Guest on January-20-2021

Code answers related to "can we use sass variables in html file"

Browse Popular Code Answers by Language