
<!--
Direction :
For Linear Gradients :
	0 : LeftMiddle To RightMiddle
	1 : RightMiddle To LeftMiddle
	2 : LeftTop To RightBottom
	3 : RightBottom To LeftTop
	4 : TopMiddle To BottomMiddle
	5 : BottomMiddle To TopMiddle
	6 : LeftBottom To RightTop
	7 : RightTop To LeftBottom
For Radial Gradients :
	0 : From Center
	1 : Diagonal From Center
	2 : From LeftTop
	3 : From TopMiddle
	4 : From RightTop
	5 : From RightMiddle
	6 : From RightBottom
	7 : From BottomMiddle
	8 : From LeftBottom
	9 : From LeftMiddle  

If End points other than this are to be specified then use the attributes
StartX , StartY , EndX and EndY . 
The value of the attributes will be the percentage w.r.t width for StartX and EndX and w.r.t height for StartY and EndY
An example usage is 
<GradientFill Type="Linear" ExtendType="Pad" StartX="12.5" StartY="0" EndX="100" EndY="100">
    <ColorStop R="255" G="205" B="0" A="255" L="0" />
    <ColorStop R="255" G="255" B="255" A="255" L="255" />
</GradientFill>

This will be a yello to white gradient from a point on the top line of the object to the right bottom of the object.

P.S : 
	The order of the Attributes have to be StartX , StartY , EndX , EndY
	You  have to specify all of them , omitting one will result in not taking any values

-->

<GradientPreset Type="DrawingObject">
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="247" G="168" B="194" A="255" L="0" />
	    <ColorStop R="169" G="56" B="79" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="238" G="183" B="132" A="255" L="0" />
	    <ColorStop R="135" G="101" B="67" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="195" G="160" B="187" A="255" L="0" />
	    <ColorStop R="120" G="84" B="112" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="126" G="160" B="200" A="255" L="0" />
	    <ColorStop R="62" G="97" B="140" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="224" G="230" B="230" A="255" L="0" />
	    <ColorStop R="165" G="181" B="181" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="247" G="134" B="122" A="255" L="0" />
	    <ColorStop R="165" G="44" B="37" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="167" G="166" B="201" A="255" L="0" />
	    <ColorStop R="84" G="84" B="120" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="150" G="205" B="176" A="255" L="0" />
	    <ColorStop R="77" G="132" B="100" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="171" G="170" B="165" A="255" L="0" />
	    <ColorStop R="67" G="67" B="65" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="195" G="228" B="234" A="255" L="0" />
	    <ColorStop R="79" G="175" B="196" A="255" L="255" />
	</GradientFill>
</GradientPreset>
