Last active
February 25, 2020 12:55
-
-
Save enjikaka/43891f718b36a8b539203c4035ec626d to your computer and use it in GitHub Desktop.
paper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg x="0" y="0" width="500" height="500" viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg"> | |
<filter id="paper-texture" x="0%" y="0%" width="100%" height="100%"> | |
<feTurbulence type="fractalNoise" baseFrequency="0.04" result="noise" numOctaves="5" stitchTiles="stitch" /> | |
<feDiffuseLighting in="noise" lighting-color="#FDECD4" surfaceScale="1"> | |
<feDistantLight azimuth="45" elevation="60" /> | |
</feDiffuseLighting> | |
</filter> | |
<rect x="-1" y="-1" width="101%" height="101%" filter="url(#paper-texture)" /> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment