@use '@nice-digital/nds-core/scss/typography';

////
/// @group Typography
////

a {
  @include typography.link-default;
}

/// Inverse link for use on a dark background. Apply to an individual link.
/// Prefer using `.inverse-links` on the container instead.
/// @since 0.2.9
.link--inverse {
  @include typography.link-inverse;
}

/// Inverse links, for use on dark backgrounds e.g dark panels.
/// Use this class on a containing element to apply to all links within it.
/// @require {mixin} links-inverse
/// @since 0.2.9
.inverse-links {
  @include typography.links-inverse;
}
