{# The design's repeated atoms, one definition each.
`chip` is the four-state evidence chip used identically everywhere; `toggle` is the
32×18 sliding switch; `label10` is the 10px uppercase section label style. #}
{% macro chip(ev) -%}
{%- if ev == "structural" -%}
STRUCTURAL
{%- elif ev == "resolved" -%}
RESOLVED
{%- elif ev == "guessed" -%}
GUESSED
{%- else -%}
UNKNOWN
{%- endif -%}
{%- endmacro %}
{% macro toggle(on) -%}
{%- endmacro %}
{% macro label10() -%}
font-size:10px;letter-spacing:0.12em;text-transform:uppercase;color:color-mix(in srgb, var(--color-text) 50%, transparent)
{%- endmacro %}