////
/// (c) hidoo | MIT License
/// @group font features
////

@use "sass:meta";

/// apply font-smoothing
///
/// @deprecated
///
/// @example scss - scss inputs
///   .selector {
///     @include mixin.font-apply-smoothing();
///   }
///
/// @example css - css outputs
///   .selector {
///     -webkit-font-smoothing: antialiased;
///     -moz-osx-font-smoothing: grayscale;
///   }
///
@mixin apply-smoothing() {
  @warn "[DEPRECATED] mixin.font-apply-smoothing is deprecated.";

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
