
<!--
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="Slide">
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="96" G="98" B="114" A="255" L="0" />
	    <ColorStop R="66" G="66" B="96" A="255" L="128" />
	    <ColorStop R="10" G="10" B="23" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="4">
	    <ColorStop R="38" G="38" B="38" A="255" L="0" />
	    <ColorStop R="20" G="20" B="20" A="255" L="128" />
	    <ColorStop R="0" G="0" B="0" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="5">
	    <ColorStop R="82" G="78" B="101" A="255" L="0" />
	    <ColorStop R="20" G="18" B="39" A="255" L="128" />
	    <ColorStop R="0" G="0" B="0" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="7">
	    <ColorStop R="122" G="19" B="21" A="255" L="0" />
	    <ColorStop R="238" G="28" B="36" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Radial" ExtendType="Pad" Direction="0">
	    <ColorStop R="107" G="116" B="123" A="255" L="0" />
	    <ColorStop R="68" G="74" B="80" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="4">
	    <ColorStop R="25" G="39" B="64" A="255" L="0" />
	    <ColorStop R="62" G="85" B="116" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Radial" ExtendType="Pad" Direction="1">
	    <ColorStop R="142" G="183" B="255" A="255" L="0" />
	    <ColorStop R="0" G="42" B="58" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="3">
	    <ColorStop R="67" G="63" B="136" A="255" L="0" />
	    <ColorStop R="30" G="30" B="85" A="255" L="128" />
	    <ColorStop R="12" G="18" B="29" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" Direction="3">
	    <ColorStop R="243" G="243" B="249" A="255" L="0" />
	    <ColorStop R="192" G="200" B="208" A="255" L="255" />
	</GradientFill>
	<GradientFill Type="Linear" ExtendType="Pad" StartX="91.75" StartY="14.66" EndX="17" EndY="70.5">
	    <ColorStop R="93" G="124" B="90" A="255" L="0" />
	    <ColorStop R="151" G="187" B="143" A="255" L="255" />
	</GradientFill>
</GradientPreset>
