// Contextual colors and backgrounds http://v4-alpha.getbootstrap.com/components/utilities/#contextual-colors-and-backgrounds
.text-primary {
  @include colorize($color: accent);
}

.text-danger {
  color: const(error);
}

.bg-primary {
  color: $white;

  @include colorize($background-color: accent);
}

.bg-danger {
  background-color: const(error);
  color: $white;
}

// Image shapes http://v4-alpha.getbootstrap.com/content/images/#image-shapes
.img-rounded {
  border-radius: const(border-radius-sm);
}

.img-circle {
  border-radius: const(border-radius-lg);
}

