blob: 62a22535de0cf2dddf7dfc92f63289bb6b310585 [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<style>
div {
margin: 20px;
width: 60px;
height: 60px;
float: left;
}
</style>
<!-- Test blending of two elements with every blend mode. -->
<body>
<div style="background: green">
<div style="mix-blend-mode: normal; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: multiply; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: screen; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: overlay; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: darken; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: lighten; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: color-dodge; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: color-burn; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: hard-light; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: soft-light; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: difference; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: exclusion; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: hue; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: saturation; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: color; background-color: blue;"></div>
</div>
<div style="background: green">
<div style="mix-blend-mode: luminosity; background-color: blue;"></div>
</div>
</body>
</html>