2eb6a81074
- Add conf.d/2.ipa-ttfonts.conf configuration file[1] - Some style changes. PR: ports/88878[1] Submitted by: NIIMI Satoshi (sa2c at sa2c dot net)[1]
40 lines
815 B
XML
40 lines
815 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
|
<!-- $FreeBSD$ -->
|
|
<fontconfig>
|
|
<alias>
|
|
<family>serif</family>
|
|
<prefer>
|
|
<family>IPAPMincho</family>
|
|
</prefer>
|
|
</alias>
|
|
<alias>
|
|
<family>sans-serif</family>
|
|
<prefer>
|
|
<family>IPAPGothic</family>
|
|
<family>IPAUIGothic</family>
|
|
</prefer>
|
|
</alias>
|
|
<alias>
|
|
<family>monospace</family>
|
|
<prefer>
|
|
<family>IPAGothic</family>
|
|
<family>IPAMincho</family>
|
|
</prefer>
|
|
</alias>
|
|
<match target="font">
|
|
<test name="family">
|
|
<string>IPAMincho</string>
|
|
<string>IPAGothic</string>
|
|
<string>IPAPMincho</string>
|
|
<string>IPAPGothic</string>
|
|
<string>IPAUIGothic</string>
|
|
</test>
|
|
<edit name="hintstyle">
|
|
<const>hintslight</const>
|
|
</edit>
|
|
<edit name="autohint">
|
|
<bool>false</bool>
|
|
</edit>
|
|
</match>
|
|
</fontconfig>
|