add HD How to Use badge SVG

144x40 variant of how-to-use.svg with shimmer animation, matching the
orchestration-workflow-hd pattern but keeping the original green fill
(#2ea44f). Used by the How to Use section heading in README.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Shayan Rais
2026-05-02 15:21:04 +05:00
parent cd4f08251a
commit c45bcfc50d
+32
View File
@@ -0,0 +1,32 @@
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="40" role="img" aria-label="How to Use">
<title>How to Use</title>
<style>
@keyframes shimmer {
0% { transform: translateX(-144px); }
100% { transform: translateX(144px); }
}
.shine { animation: shimmer 2.5s ease-in-out infinite; }
</style>
<linearGradient id="s" x2="0" y2="100%">
<stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
<stop offset="1" stop-opacity=".1"/>
</linearGradient>
<linearGradient id="shimmer" x1="0" y1="0" x2="1" y2="0">
<stop offset="0" stop-color="#fff" stop-opacity="0"/>
<stop offset="0.4" stop-color="#fff" stop-opacity="0"/>
<stop offset="0.5" stop-color="#fff" stop-opacity=".3"/>
<stop offset="0.6" stop-color="#fff" stop-opacity="0"/>
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
</linearGradient>
<clipPath id="r">
<rect width="144" height="40" rx="5" fill="#fff"/>
</clipPath>
<g clip-path="url(#r)">
<rect width="144" height="40" fill="#2ea44f"/>
<rect width="144" height="40" fill="url(#s)"/>
<rect class="shine" width="144" height="40" fill="url(#shimmer)"/>
</g>
<g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="18">
<text x="72" y="26">How to Use</text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB