styles = html`
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap" rel="stylesheet">
<style>
svg, label, select, #result, #note {
font-family: 'Lato', sans-serif !important;
}
svg path {
stroke: hsla(69, 60%, 69%);
// Official
// stroke: #e7ff61;
}
rect {
fill: rgb(19, 196, 140);
// Official
// fill: #18dfa1;
stroke-width: 0;
}
#note .highlight {
color: #0fad7b;
font-weight: bold;
}
text {
pointer-events: none;
}
rect {
cursor: pointer;
}
</style>
`