//
// Labels muted
// --------------------------------------------------

// Custom mixin for contextual colour variations (e.g. :hover and :focus etc)
.label-primary-muted {
  .label-variant(@label-muted-primary-color, @label-muted-primary-bg);
}
.label-secondary-muted {
  .label-variant(@label-muted-secondary-color, @label-muted-secondary-bg);
}
.label-default-muted {
  .label-variant(@label-muted-default-color, @label-muted-default-bg);
}
.label-success-muted {
  .label-variant(@label-muted-success-color, @label-muted-success-bg);
}
.label-info-muted {
  .label-variant(@label-muted-info-color, @label-muted-info-bg);
}
.label-warning-muted {
  .label-variant(@label-muted-warning-color, @label-muted-warning-bg);
}
.label-danger-muted {
  .label-variant(@label-muted-danger-color, @label-muted-danger-bg);
}
