Latest solutions
Latest comments
- @covolan@pawelpiotrowski38
Hi Alexandre, good work!
Regarding the image you could set a background color of its parent (the header element in your case). You should use soft violet (one of the colors from the style guide). Then you can add a property
mix-blend-mode
to the image and set it tomultiply
. It would then cause the image to blend with the color of its parent. Last thing is lowering the opacity level of the image to match the design. I usedopacity: 0.75
.Feel free to check my solution and happy coding 😄
Marked as helpful - @Lucas171@pawelpiotrowski38
Hi Lucas, nice work!
One of the options to put the color over the image is using a mix-blend-mode property. You can set it on the image with a value of multiply and lower the opacity level like you already did. This will cause the image to blend in with the background.
Happy coding 😄
Marked as helpful