Learn how to blend gradients together using different blend modes to create complex color effects.
/* Base gradient */
background: linear-gradient(to bottom right, blue, purple);
/* Blend gradient */
.blend-layer {
mix-blend-mode: multiply;
background: linear-gradient(to top right, yellow, red);
}