Going through a list with @eachNext steps

Associated Arrays : key/value

$color-btns: (
  rouge: $red,
  vert: $green,
  bleu: $blue,
);

@each $key, $value in $color-btns {
  .btn-#{$key} {
  @extend %btn;
    background-color: $value;
  }
}