a mi en invie.css de la carpeta dist no me cambia el valor del background-color por el de la variable, sino que usa tmb las variables
/* definir variables */
:root{
--bg-body: #fafafa;
--bg-header: #466173;
--bg-footer: #273b47;
}
.InvieHero{
background-color: var(–bg-header);
padding: 20px;
height: 500px;
}
.InvieHero-header {
display: -webkit-box;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
flex-direction: row;
-webkit-box-pack: justify;
justify-content: space-between;
}
.InvieFooter {
background-color: var(–bg-footer);
}