function colorGrid(colors) {
return htl.html`<div>${colors.map(
(c) =>
htl.html`<div style="
// line-height:1px;
display: inline-block;
// width: 30px;
height: 30px;
// font-size: 2pt;
margin-right: 2px;
padding: 5px;
font-size: 8pt;
font-family: courier;
background-color:${c.css(
"rgb"
)}"><span style="color: white;
mix-blend-mode: difference;">
${c.css("rgb")}
</span></div>`
)}</div>`;
}