@mixin text-theme($theme-colors, $dark-theme) {
  $text-low-contrast: $text-low-contrast-light-theme;
  $text-high-contrast: $text-high-contrast-light-theme;

  @if ($dark-theme) {
    $text-low-contrast: $text-low-contrast-dark-theme;
    $text-high-contrast: $text-high-contrast-dark-theme;
  }

  @include text-emphasis-variant(".text-primary", map-get($theme-colors, "primary"));
  @include text-emphasis-variant(".text-accent", map-get($theme-colors, "accent"));
  @include text-emphasis-variant(".text-low-contrast", $text-low-contrast);
  @include text-emphasis-variant(".text-high-contrast", $text-high-contrast);
}
