Day 95: the color-mix() function

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
The color-mix() function takes two colors and returns the result of mixing them, in a given color space, by a specified amount.To mix colors, pass the in keyword, followed by the color space, and 2 colors. body { background-color: color-mix(in srgb, blue, white); } The syntax is pretty straightforward, but the result is not so much. At least...