// All Colors Variables

// Colors
@mixin var-colors($colors) {
  @each $color, $value in $colors {
    --x-#{$color}: #{$value};
  }
}
