// Creates e.g. .bg-blue-100 / .text-blue-100
@each $name, $colour in $colors {
  .bg-#{$name} {
    background-color: $colour !important;
  }

  .text-#{$name} {
    color: $colour !important;
  }
}
