blob: 75a4aaa9b22d742a195f5f40154bef83cab2065e (
plain)
1
2
3
4
5
6
7
8
9
|
<svg xmlns="http://www.w3.org/2000/svg" version="1.0">
<defs>
<pattern id="pattern"
x="0" y="0" width="200" height="200">
<circle fill="lime" r="100" cx="100" cy="100"/>
</pattern>
</defs>
<rect width="200" height="200" fill="url(#pattern)"/>
</svg>
|