How to pull an overlay from a layout (psd)

There is a layout https://dropmefiles.com/PHfGJ it has some kind of graininess or gradient or something. In general, here, I look at the color in one place enter a description of the image here

And in the other

enter a description of the image here

Tell me how to pull this overlay for the layout.

1 answers

If the task is repeated, then something like this:

div {
    height: 100px;
    background: rgb(48,55,65);
    background: linear-gradient(90deg, rgba(48,55,65,1) 0%, rgba(47,55,65,1) 50%, rgba(48,55,65,1) 100%);
}    
<div>
</div>
 0
Author: Daniil Loban, 2020-12-25 09:11:09