Geometric Subtle Patterns
90 JPG and PAT Photoshop patterns with geometric subtle patterns that you can download for free from https://www.photoshopsupply.com/patterns-textures/90-subtle-patterns-for-photoshop
by codingdude
HTML
<div class="title"><span class="big">90 free <a target="_blank" href="https://www.photoshopsupply.com/patterns-textures/90-subtle-patterns-for-photoshop">Subtle Patterns</a></span> From Photoshop Supply</div>
CSS
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://i.imgur.com/NX6FLjS.jpg');
animation: hue-loop 5s infinite;
z-index: -999;
}
@keyframes hue-loop {
0% { filter: hue-rotate(0deg) saturate(100%); }
100% { filter: hue-rotate(359deg) saturate(100%); }
}
.title {
color: white;
font-size: 28px;
background-color: black;
width: 50%;
margin: 20vh auto;
font-family: sans-serif;
text-transform: uppercase;
text-align: center;
padding: 20px;
}
.title a {
color: white;
}
.title .big {
display: block;
font-size: 40px;
font-weight: bold;
font-family: sans-serif;
}