Created
September 4, 2025 22:45
-
-
Save softmarshmallow/5e89a878092af47c750a0a297a814b29 to your computer and use it in GitHub Desktop.
list of google fonts, with `slnt` axes support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| family | slnt | ital | italic | |
|---|---|---|---|---|
| Afacad Flux | yes | no | no | |
| Bitcount | yes | no | no | |
| Bitcount Grid Double | yes | no | no | |
| Bitcount Grid Single | yes | no | no | |
| Bitcount Prop Double | yes | no | no | |
| Bitcount Prop Single | yes | no | no | |
| Bitcount Single | yes | no | no | |
| Cairo | yes | no | no | |
| Cairo Play | yes | no | no | |
| Commissioner | yes | no | no | |
| Geologica | yes | no | no | |
| Gluten | yes | no | no | |
| Recursive | yes | no | no | |
| Roboto Flex | yes | no | no | |
| TikTok Sans | yes | no | no |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Google Fonts with
slnt/italAxesThis document analyzes variable fonts in Google Fonts that support slant or italic functionality through variable font axes.
Overview
Variable fonts can implement italic/slant functionality in two ways:
slnt(slant) orital(italic) axes for dynamic slantingAnalysis Results
Total fonts with slant/italic axes: 15
All fonts use the
slnt(slant) axis - no fonts use theitalaxis.Command
jq -r '.items[] | select(has("axes")) | select(.axes[] | .tag == "slnt" or .tag == "ital") | .family as $family | .axes as $axes | .variants as $variants | ($axes | map(.tag) | contains(["slnt"])) as $has_slnt | ($axes | map(.tag) | contains(["ital"])) as $has_ital | ($variants | contains(["italic"])) as $has_italic_variant | [$family, (if $has_slnt then "yes" else "no" end), (if $has_ital then "yes" else "no" end), (if $has_italic_variant then "yes" else "no" end)] | @csv' webfonts-vf.jsonFonts with Slant/Italic Axes
Key Findings
slntaxis for slant controlitalaxis (binary italic on/off)["regular"]variants - no separate italic font filesSlant Ranges
Design Implications
Fonts with
slntaxes provide:This approach is particularly useful for: