What's the difference between setting a shade or tint (e.g. 25% darker, 40% lighter respectively) in DrawingML using the <a:lumMod>
and <a:lumOff>
tags and doing what seems to produce a similar outcome with the <a:shade>
and <a:tint>
tags?
In PowerPoint, selecting the 'Accent 1, 40% Lighter' color from the palette picker produces XML like this:
<a:rPr>
<a:solidFill>
<a:schemeClr val="accent1">
<a:lumMod val="60000"/>
<a:lumOff val="40000"/>
</a:schemeClr>
</a:solidFill>
</a:rPr>
Using the API method Brightness like this produces the same XML:
TextRange.Font.Color.Brightness = 0.4
Using the API method TintAndShade like this:
TextRange.Font.Color.TintAndShade = 0.4
produces this XML:
<a:rPr>
<a:solidFill>
<a:schemeClr val="accent1">
<a:tint val="60000"/>
</a:schemeClr>
</a:solidFill>
</a:rPr>
and produces a slightly lighter color.
How should I understand what's happening? Why are there two methods that are so similar and why do they behave differently?