/// Returns the shadow for the specified depth
/// @param {String} $depth [base] - The shadow's depth.
/// @return {List} The shadow value.

@function depth($depth: 100, $alt: false) {
  $data: $shadows-data;
  @if ($alt) {
    $data: $shadows-data-alt;
  }
  $fetched-value: map-get($data, $depth);

  @if type-of($fetched-value) == list {
    @return $fetched-value;
  } @else {
    @error 'Shadow variant `#{$depth}` not found. Available variants: #{$shadows-data}';
  }
}
@function drop-shadow-depth($depth: 100) {
  $fetched-value: map-get($drop-shadow-data, $depth);

  @if type-of($fetched-value) == list {
    @return $fetched-value;
  } @else {
    @error 'Shadow variant `#{$depth}` not found. Available variants: #{$drop-shadow-data}';
  }
}
