| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
| <title></title> |
| <style> |
| :root { |
| background-color: green; |
| } |
| |
| .box { |
| float: left; |
| margin: 10px; |
| width: 100px; |
| height: 100px; |
| background-color: blue; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="box"></div> |
| <div class="box" style="mix-blend-mode: hue"></div> |
| <div class="box" style="mix-blend-mode: saturation"></div> |
| <div class="box" style="mix-blend-mode: color"></div> |
| <div class="box" style="mix-blend-mode: luminosity"></div> |
| </body> |
| </html> |