<button data-color="red">red</button>
<button data-color="green">green</button>
<button data-color="blue">blue</button>
<div class="color">
color
</div>
.color {
&.red {
background: red
}
&.green {
background: green
}
&.blue {
background: blue
}
}
// получаем атрибут
const color = el.getAttribute('data-color');
// устанавливаем его
el.classList.add(color);