mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-27 01:08:15 +02:00
11 lines
452 B
XML
11 lines
452 B
XML
<svg version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<radialGradient id="grad" cx="75%" cy="25%" r="33%"
|
|
fx="0.64" fy="0.18" fr="0.17"
|
|
spreadMethod="repeat" >
|
|
<stop offset="0%" stop-color="white" stop-opacity="1" />
|
|
<stop offset="100%" stop-color="green" stop-opacity="1" />
|
|
</radialGradient>
|
|
</defs>
|
|
<rect x="100" y="-900" width="800" height="800" fill="url(#grad)" />
|
|
</svg>
|