mirror of
https://github.com/G2-Games/website.git
synced 2025-04-19 09:52:53 -05:00
15 lines
420 B
XML
Executable file
15 lines
420 B
XML
Executable file
<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.75'
|
|
stitchTiles='stitch'/>
|
|
</filter>
|
|
|
|
<rect width='300' height='300' fill='#fff'/>
|
|
<rect width='300' height='300' filter="url(#n)" opacity='0.80'/>
|
|
</svg>
|