${facts.map((f) =>
f.value
? html`
${f.label}
${f.value}
`
: nothing,
)}
${
ic?.name
? html`
${ic.name}
${
ic.gates?.length
? html` (${ic.gates.join(', ')})`
: nothing
}
`
: nothing
}
${
d.signature || d.notSelf
? html`
${d.signature ? html`Signature: ${d.signature}` : nothing}
${d.notSelf ? html`Not-self: ${d.notSelf}` : nothing}
`
: nothing
}
Center colors when defined. Open centers are outlined.
Head, G
Ajna
Throat, Spleen, Solar Plexus, Root
Heart, Sacral
Open center
`;
}
}
declare global {
interface HTMLElementTagNameMap {
'roxy-bodygraph': RoxyBodygraph;
}
}