mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-19 02:13:04 +00:00
10 lines
283 B
XML
10 lines
283 B
XML
|
<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>
|