You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
732 B
35 lines
732 B
<?xml version='1.0'?>
|
|
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
|
|
<fontconfig>
|
|
<!-- Emoji -->
|
|
<match target="pattern">
|
|
<edit mode="prepend_first" name="family">
|
|
<string>Icons</string>
|
|
</edit>
|
|
</match>
|
|
<match target="pattern">
|
|
<edit mode="prepend_first" name="family">
|
|
<string>{{typography.emoji.font}}</string>
|
|
</edit>
|
|
</match>
|
|
<!-- Default fonts -->
|
|
<alias>
|
|
<family>sans-serif</family>
|
|
<prefer>
|
|
<family>{{typography.sans.font}}</family>
|
|
</prefer>
|
|
</alias>
|
|
<alias>
|
|
<family>serif</family>
|
|
<prefer>
|
|
<family>{{typography.serif.font}}</family>
|
|
</prefer>
|
|
</alias>
|
|
<alias>
|
|
<family>monospace</family>
|
|
<prefer>
|
|
<family>{{typography.mono.font}}</family>
|
|
</prefer>
|
|
</alias>
|
|
</fontconfig>
|