@use 'sass:map';

@mixin uxg-vector-map-colors($theme) {
  $background: map.get($theme, background);

  .vector-map {
    background-color: map.get($background, card);
  }
}

@mixin theme($theme) {
  @include uxg-vector-map-colors($theme);
}
