@use '../../sass/abstracts/variables' as *;

#{$object-prefix}counter {
  // colors with white text
  $colors: 'blue', 'green', 'yellow', 'black';

  @each $color in $colors {
    @at-root .u-background-color-#{$color} & {
      fill: $white;
    }
  }
}
