Title: Setting color to the Shadow?

Hi,

        Could anyone tell me how to set the colour of the shadow? I am using the following code to add shadow effect to the rectangle.


Thanks & Regards,

CP

----

<svg width="1024" height="535" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">

   <defs>

      <marker id="arrow" viewBox="0 0 10 10" refX="0" refY="5" markerUnits="strokeWidth" markerWidth="12" markerHeight="9" orient="auto">

         <path d="M0,0 L10,5 L0,10 z" />

      </marker>

      <filter id="dropShadow" x="0%" y="-10%" height="140%">

      <feGaussianBlur in="SourceAlpha" stdDeviation="3" />

      <feOffset dx="4" dy="4" result="offsetBlur" />

      <feMerge>

       <feMergeNode in="offsetBlur"/>

       <feMergeNode in="SourceGraphic"/>

      </feMerge>

      </filter>

   </defs>  

 

   <rect x="143" y="138" width="266" height="35" style="fill:RGB(2,167,158);stroke:rgb(0,0,0);stroke-width:1;filter:url(#dropShadow)" />  

  

</svg>

----



**********************************************************************
The information in this message is confidential and may be legally
privileged. It is intended solely for the addressee. Access to this message
by anyone else is unauthorized. If you are not the intended recipient, any
disclosure, copying, or distribution of the message, or any action or
omission taken by you in reliance on it, is prohibited and may be unlawful.
Please immediately contact the sender if you have received this message in
error.

**********************************************************************

Reply via email to