22 lines
634 B
XML
22 lines
634 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.35"
|
|
stitchTiles="stitch"/>
|
|
<feColorMatrix
|
|
type="matrix"
|
|
values="0.3 0.3 0.3 0 0
|
|
0.3 0.3 0.3 0 0
|
|
0.3 0.3 0.3 0 0
|
|
0 0 0 1 0" />
|
|
</filter>
|
|
|
|
<rect width='300' height='300' fill='#fff'/>
|
|
<rect width='300' height='300' filter="url(#n)" opacity='1.0'/>
|
|
</svg>
|