Typography

Font Smoothing

Utilities for sets the antialiasing of the font.


Variant

Responsive Dark Mode Light Mode Reduce-Motion Selection-Hover Expand First-Last-Selection Child-Selection Portrait Landscape Fullscreen Hover Group-Hover Focus Group-Focus Focus-Visible Focus-Within Active Visited Checked Disabled

API

classcss
antialiased-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
subpixel-antialiased-webkit-font-smoothing: auto;
-moz-osx-font-smoothing: auto

Usage

Set default font-smoothing with <body> tag.

<body class="antialiased">
...
</body>
HTML
body {
@extend
antialiased;
}
SCSS