gradient s šumem
by Petr Haluza
HTML
<section>
<div class="demo"></div>
</section>
CSS
body { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 100vh; background-color: powderblue;}
.demo { position: relative; width: 800px; height: 50px; background: linear-gradient(to right, red, blue, green);}
.demo:before { content:""; position: absolute; width: 100%; height: 100%;
background: url(https://grainy-gradients.vercel.app/noise.svg); mix-blend-mode: color-dodge;}