@use './var' as *;
@use '../mixins/_var' as *;
@use 'sass:map';

:root {
  // hex colors
  @each $type in (primary) {
    @include set-css-color-type($colors, $type);
  }
}

// for light
:root {
  // Background --pd-bg-color-#{$type}
  @include set-component-css-var('bg-color', $pd-bg-color);
}
