1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<?xml version='1.0' encoding='UTF-8'?>
<designspace format="4.0">
<axes>
<axis tag="wght" name="weight" minimum="300" maximum="700" default="300">
<map input="300" output="50"/>
<map input="400" output="100"/>
<map input="700" output="150"/>
</axis>
</axes>
<sources>
<source filename="MyFont-Light.ufo">
<location>
<dimension name="weight" xvalue="50"/>
</location>
</source>
<source filename="MyFont-Bold.ufo">
<location>
<dimension name="weight" xvalue="150"/>
</location>
</source>
</sources>
<instances>
<instance familyname="aaa" stylename="sss" postscriptfontname="ppp" stylemapfamilyname="yyy" stylemapstylename="xxx">
<location>
<dimension name="weight" xvalue="100"/>
</location>
</instance>
</instances>
</designspace>
|