htl.html`
${[
{ style: { width: '20px', height: '20px', backgroundColor: `rgb(0, 0, 0)` } },
{ style: { width: '20px', height: '20px', backgroundColor: `rgb(247, 105, 164)` } },
{ style: { width: '20px', height: '20px', backgroundColor: `rgb(196, 28, 142)` } },
{ style: { width: '20px', height: '20px', backgroundColor: `rgb(121, 0, 124)` } },
].map(({ style }) => htl.html.fragment`
<div style=${style}></div>
`)}
`