I am using the screen
value of mix-blend-mode
to combine three divs, one of each of red green and blue. I think I should expect white at the center of the combined divs, but the colours seem off. Am i misunderstanding how this works, or am I using it incorrectly? Thank you.
See this code snippet:
body {
background-color: black;
}
.shape {
width: 300px;
height: 300px;
border-radius: 150px;
mix-blend-mode: screen;
position: absolute;
}
#red {
background-color: red;
left: 75px;
}
#green {
background-color: green;
top: 125px;
}
#blue {
background-color: blue;
top: 125px;
left: 150px;
}
<body>
<div class="shape" id="blue"></div>
<div class="shape" id="red"></div>
<div class="shape" id="green"></div>
</body>