mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-22 04:28:15 +02:00
11 lines
450 B
XML
11 lines
450 B
XML
<svg version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<radialGradient id="grad" cx="50%" cy="25%"
|
|
fx="0.75" fy="0.35" r="0.5"
|
|
gradientTransform="scale(1, 2)">
|
|
<stop offset="0%" stop-color="red" 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>
|