blob: 4570b76dbcb55bc9e66990fe56e3b77c04b76452 [file] [log] [blame]
Daniel Veillard011b63c1999-06-02 17:44:04 +00001<?xml version="1.0" standalone="no"?>
2<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG April 1999//EN" "http://www.w3.org/Graphics/SVG/svg-19990412.dtd">
3<svg width="4in" height="3in">
4 <desc>Gradient example
5 </desc>
6 <g>
7 <defs>
8 <lineargradient id="MyGradient">
Daniel Veillard7d2c2761999-10-11 15:09:51 +00009<!-- Define linear gradient here -->
10 <gradientstop offset="0%" color="#F60"/>
Daniel Veillard011b63c1999-06-02 17:44:04 +000011 <gradientstop offset="70%" color="#FF6"/>
12 </lineargradient>
13 </defs>
14 <rect style="fill: url(#MyGradient)" width="20" height="15.8"/>
15 </g>
16</svg>