12 lines
396 B
XML
12 lines
396 B
XML
<svg viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg">
|
|
<filter id="noiseFilter">
|
|
<feTurbulence
|
|
type="fractalNoise"
|
|
baseFrequency="0.015"
|
|
numOctaves="5"
|
|
stitchTiles="stitch" />
|
|
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.5 0 0 -0.2 0"/>
|
|
</filter>
|
|
<rect width="100%" height="100%" filter="url(#noiseFilter)"/>
|
|
</svg>
|