Created
July 13, 2025 00:19
-
-
Save drewhamlett/c53aff5efda6c30654e4dcf2ba67470e to your computer and use it in GitHub Desktop.
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
<?xml version='1.0'?> | |
<!DOCTYPE fontconfig SYSTEM 'urn:fontconfig:fonts.dtd'> | |
<fontconfig> | |
<!-- Modern generic that `-apple-system` maps to in Chrome --> | |
<alias> | |
<family>system-ui</family> | |
<prefer> | |
<family>SF Pro Display</family><!-- big sizes --> | |
<family>SF Pro Text</family> <!-- ≤20 px, optional --> | |
</prefer> | |
</alias> | |
<!-- Older WebKit/Blink literals that still appear in CSS stacks --> | |
<match target="pattern"> | |
<test qual="any" name="family"><string>BlinkMacSystemFont</string></test> | |
<edit name="family" mode="assign" binding="same"> | |
<string>SF Pro Display</string> | |
</edit> | |
</match> | |
<match target="pattern"> | |
<test qual="any" name="family"><string>-apple-system</string></test> | |
<edit name="family" mode="assign" binding="same"> | |
<string>SF Pro Display</string> | |
</edit> | |
</match> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment