<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">&gt; (1) Is there a way to render gradients using the fill color?  For example, if the child&#39;s XO fill color is red, I would like to render an activity icon using a red gradient.  Maybe there are tricks in SVG which make this possible?<br>

<br>
</div>Yep, that&#39;s possible. Personally I edit all my SVGs by hand, so it&#39;s easy for me to generate clean XML code and put the fill and stroke variables in the correct places. It would seem to feel somewhat off the spirit of the sugar icon style (strong, clear, flat shaded silhouettes), but there are a few cases where I have considered something along this line, i.e. an icon that represents something specifically with different colours like ColourDeducto vs Deducto. I don&#39;t think I&#39;ve seen any activity icons try this yet, but it might work for some specific cases if it&#39;s not used to try and make 3d style shaded button icons.</blockquote>
<div><br></div><div>That&#39;s good news! </div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Do you need a hand with a specific icon?</blockquote><div><br></div><div>Let&#39;s use the hereunder svg as an example.  How would I use the fill_color as a parameter to create a gradient from the top to the bottom of the rectangle?  (I can see how I would make a gradient from fill_color to a hard-coded color, but I would like to create a gradient with stop-color attributes derived from the fill_color).</div>
<div><br></div><div><span class="Apple-style-span" style="font-size: x-small;"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace"><br></font></span></div></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">
<div class="gmail_quote"><div><span class="Apple-style-span" style="font-size: x-small;"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">&lt;?xml version=&quot;1.0&quot; ?&gt;&lt;!DOCTYPE svg  PUBLIC &#39;-//W3C//DTD SVG 1.1//EN&#39;  &#39;<a href="http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd</a>&#39; [</font></span></div>
</div><div class="gmail_quote"><span class="Apple-style-span" style="font-size: x-small;"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">&lt;!ENTITY stroke_color &quot;#010101&quot;&gt;</font></span></div>
<div class="gmail_quote"><span class="Apple-style-span" style="font-size: x-small;"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">&lt;!ENTITY fill_color &quot;#FFFFFF&quot;&gt;</font></span></div>
<div class="gmail_quote"><div><span class="Apple-style-span" style="font-size: x-small;"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">]&gt;&lt;svg enable-background=&quot;new 0 0 55 55&quot; height=&quot;55px&quot; version=&quot;1.1&quot; viewBox=&quot;0 0 55 55&quot; width=&quot;55px&quot; x=&quot;0px&quot; xml:space=&quot;preserve&quot; xmlns=&quot;<a href="http://www.w3.org/2000/svg">http://www.w3.org/2000/svg</a>&quot; xmlns:xlink=&quot;<a href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</a>&quot; y=&quot;0px&quot;&gt;&lt;g display=&quot;block&quot; id=&quot;activity-example&quot;&gt;</font></span></div>
</div><div class="gmail_quote"><div><span class="Apple-tab-span" style="white-space:pre"><span class="Apple-style-span" style="font-size: x-small;"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">        </font></span></span></div>
</div><div class="gmail_quote"><span class="Apple-style-span" style="font-size: x-small;"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">&lt;rect display=&quot;inline&quot; fill=&quot;&amp;fill_color;&quot; height=&quot;30.771&quot; stroke=&quot;&amp;stroke_color;&quot; stroke-linejoin=&quot;round&quot; stroke-width=&quot;3.5&quot; width=&quot;41.438&quot; x=&quot;6.705&quot; y=&quot;12.213&quot;/&gt;</font></span></div>
<div class="gmail_quote"><div><span class="Apple-tab-span" style="white-space:pre"><span class="Apple-style-span" style="font-size: x-small;"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">        </font></span></span></div>
<span class="Apple-style-span" style="font-size: x-small;"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">&lt;circle cx=&quot;27.504&quot; cy=&quot;27.598&quot; display=&quot;inline&quot; fill=&quot;&amp;stroke_color;&quot; r=&quot;2.946&quot;/&gt;</font></span></div>
<div class="gmail_quote"><div><span class="Apple-style-span" style="font-size: x-small;"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">&lt;/g&gt;&lt;/svg&gt; </font></span></div></div></blockquote>
<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"> </blockquote></div>