angular use scss variable in html file code example
Example: scss how to use a variable in entire angular project
/*in the src/_variables file:*/
$primary-color: blue;
/*in the component you want to use the variable:*/
@use 'src/variables' as c;
.container-fluid {
text-align: center;
background-color: c.$primary-color;
}