${layers.map(({ name, color }) => {
const src = FlagMap[name];
if (!src) return null;
const isSpecial = !color.startsWith("#");
const colorClass = isSpecial ? `flag-color-${color}` : "";
const bgStyle = isSpecial ? "" : `background-color: ${color};`;
return html`
`;
})}
`;
}
}
const animationDurations: Record