:root,
[data-bs-theme="light"] {
  --#{$prefix}border-radius-xs: #{$border-radius-xs};
  --#{$prefix}font-weight-medium: #{$font-weight-medium};
  --#{$prefix}font-weight-bold: #{$font-weight-bold};
  --#{$prefix}box-shadow-xl: #{$box-shadow-xl};
  --#{$prefix}box-shadow-xxl: #{$box-shadow-xxl};
  $non-gray-colors: $all-colors;
  @each $key, $value in $grays {
    $non-gray-colors: map-remove($non-gray-colors, $key);
  }
  @each $color, $value in $non-gray-colors {
    --#{$prefix}#{$color}: #{$value};
  }
}
