blob: 54b0f5471b86fb0b1d4f6bca3c7d8aa5806f98b6 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
body svg {
position: absolute;
width: 0;
height: 0;
}
.box {
margin: 10px;
height: 200px;
width: 200px;
border: 20px solid blue;
background-color: green;
box-sizing: border-box;
}
</style>
</head>
<body>
<div class='box' style="filter: saturate(0);"></div>
<div class='box' style="filter: invert() saturate(0);"></div>
<div class='box' style="filter: invert()"></div>
</body>
</html>