blob: d62ad092b91afafaf98d765c5177f277245b3716 (
plain)
1
2
3
4
5
6
7
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
<filter id="n">
<feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"></feTurbulence>
<feColorMatrix values="0 0 0 0 0.95
 0 0 0 0 0.92
 0 0 0 0 0.86
 0 0 0 0.06 0"></feColorMatrix>
</filter>
<rect width="200" height="200" filter="url(#n)"></rect>
</svg>
|