16 lines
421 B
XML
16 lines
421 B
XML
<svg
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
xmlns:xlink='http://www.w3.org/1999/xlink'
|
|
width='300' height='300'>
|
|
|
|
<filter id='n' x='0' y='0'>
|
|
<feTurbulence
|
|
type='fractalNoise'
|
|
baseFrequency='0.52'
|
|
stitchTiles='stitch'/>
|
|
</filter>
|
|
|
|
<rect width='300' height='300' fill='#fff0'/>
|
|
<rect width='300' height='300' filter="url(#n)" opacity='0.20'/>
|
|
</svg>
|