8c61a557f8
- new mark: measurement-span glyph on rounded brand-gradient badge (favicon, inline logo, standalone tmflow-logo.svg) - wordmark moved from SVG <text> with hardcoded x offsets (clipped "Flow" past the 260px viewBox, font-dependent overlap) to plain HTML spans — never clips, natural kerning, theme-adaptive - _app_logo.html params: logo_class, wordmark_class, logo_id (unique gradient id when logo appears twice per page) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
22 lines
997 B
XML
22 lines
997 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none">
|
|
<!-- TieMeasureFlow brand mark: measurement span glyph on brand-blue badge -->
|
|
<defs>
|
|
<linearGradient id="tmfBadge" x1="0" y1="0" x2="1" y2="1">
|
|
<stop offset="0" stop-color="#3B82F6"/>
|
|
<stop offset="1" stop-color="#1D4ED8"/>
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Badge -->
|
|
<rect x="2" y="2" width="60" height="60" rx="15" fill="url(#tmfBadge)"/>
|
|
|
|
<!-- Measurement end bars -->
|
|
<rect x="14" y="16" width="5" height="32" rx="2.5" fill="#FFFFFF"/>
|
|
<rect x="45" y="16" width="5" height="32" rx="2.5" fill="#FFFFFF"/>
|
|
|
|
<!-- Double-headed arrow (measured span) -->
|
|
<path d="M24 32 H40" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round"/>
|
|
<path d="M28 26.5 L22.5 32 L28 37.5" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
|
<path d="M36 26.5 L41.5 32 L36 37.5" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
|
</svg>
|