<!DOCTYPE html>
<title>mix-blend-mode: plus-lighter SVG test</title>
<link rel="author" title="Jake Archibald" href="mailto:[email protected]">
<link rel="help" href="https://drafts.fxtf.org/compositing-2/#mix-blend-mode">
<script type="module">
import { tests, plusLighter } from '../../support/plus-lighter.js';
import { toCSSColor } from '../../support/utils.js';
for (const colors of tests) {
document.body.insertAdjacentHTML('beforeend', `
<svg width="100" height="100" style="background-color: ${toCSSColor(plusLighter(colors))}"></svg>
`);
}
</script>