@function color($color) {
  @return map-get($all-colors, $color);
}

@function font($font) {
  @return map-get($all-fonts, $font);
}


@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}