@mixin shadow($depth) {
  box-shadow: unquote(nth($shadows, $depth));
}

@for $shadow from 1 through 5 {
  .elevation-#{$shadow} {
    @include shadow($shadow);
  }
}
