The Akku wordmark lockup — the mark (triangular glyph) reads as a stylized "A" and pairs with the custom wordmark. It's the single brand signature across product, marketing, and documents.
The wordmark works on all three brand ramps. Recolor via currentColor / fill — never filters.
Always reserve X (the height of the mark) of clear space on every side. Nothing — type, other marks, edges — enters this zone.
Below these, wordmark legibility breaks down. Use a mark-only variant (forthcoming) for favicons and avatars.
Keep the mark crisp. Anything that alters color, proportion, or framing breaks the system.
Inline the SVG as a <symbol> and reference it with <use>; recolor via the color property (paths use fill:currentColor).
/* 1. Inline the symbol once per document */
<svg style="display:none">
<symbol id="akku" viewBox="0 0 210 50">…</symbol>
</svg>
/* 2. Reference anywhere, recolor via currentColor */
<svg class="logo" viewBox="0 0 210 50" style="color: var(--iris-700)">
<use href="#akku"/>
</svg>
.logo path { fill: currentColor; }