JSFiddle - React, Tailwind, and code Playground
by pilafmon
HTML
<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg"
width="400px" height="250px" viewBox="0 0 400 250">
<defs>
<pattern id="marbles" width="50" height="50"
patternUnits="userSpaceOnUse">
<circle cx="25" cy="25" r="22" fill="plum" stroke="black"/>
</pattern>
</defs>
<rect width="100%" height="100%" fill="teal"/>
<rect x="10" y="10" width="150" height="100" fill="url(#marbles)"/>
<rect x="90" y="120" width="250" height="100" fill="url(#marbles)"/>
</svg>