60 lines
3.2 KiB
XML
60 lines
3.2 KiB
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" fill="none">
|
|
<defs>
|
|
<linearGradient id="glow" x1="0" y1="0" x2="1" y2="1">
|
|
<stop offset="0%" stop-color="#FF6B35"/>
|
|
<stop offset="100%" stop-color="#FF8F5E"/>
|
|
</linearGradient>
|
|
<linearGradient id="fade" x1="0" y1="0" x2="0" y2="1">
|
|
<stop offset="0%" stop-color="#2A2A2A"/>
|
|
<stop offset="100%" stop-color="#1A1A1A"/>
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Background circle -->
|
|
<circle cx="60" cy="60" r="56" fill="url(#fade)" stroke="#333" stroke-width="1.5"/>
|
|
|
|
<!-- Memory layers (stacked rounded rects suggesting tiers) -->
|
|
<rect x="30" y="68" width="60" height="8" rx="4" fill="#333" opacity="0.6"/>
|
|
<rect x="30" y="56" width="60" height="8" rx="4" fill="#444" opacity="0.7"/>
|
|
<rect x="30" y="44" width="60" height="8" rx="4" fill="#555" opacity="0.8"/>
|
|
|
|
<!-- Active/hot memory layer -->
|
|
<rect x="30" y="32" width="60" height="8" rx="4" fill="url(#glow)"/>
|
|
|
|
<!-- Neural connection dots -->
|
|
<circle cx="38" cy="36" r="2.5" fill="#fff" opacity="0.9"/>
|
|
<circle cx="52" cy="36" r="2.5" fill="#fff" opacity="0.9"/>
|
|
<circle cx="68" cy="36" r="2.5" fill="#fff" opacity="0.9"/>
|
|
<circle cx="82" cy="36" r="2.5" fill="#fff" opacity="0.9"/>
|
|
|
|
<!-- Connection lines from hot layer upward (recall/retrieval) -->
|
|
<line x1="38" y1="33" x2="48" y2="22" stroke="#FF6B35" stroke-width="1.2" opacity="0.7"/>
|
|
<line x1="52" y1="33" x2="55" y2="20" stroke="#FF6B35" stroke-width="1.2" opacity="0.5"/>
|
|
<line x1="68" y1="33" x2="65" y2="20" stroke="#FF6B35" stroke-width="1.2" opacity="0.5"/>
|
|
<line x1="82" y1="33" x2="72" y2="22" stroke="#FF6B35" stroke-width="1.2" opacity="0.7"/>
|
|
|
|
<!-- Retrieval spark/node at top -->
|
|
<circle cx="60" cy="18" r="4" fill="url(#glow)"/>
|
|
<circle cx="60" cy="18" r="6" fill="none" stroke="#FF6B35" stroke-width="1" opacity="0.4"/>
|
|
<circle cx="60" cy="18" r="9" fill="none" stroke="#FF6B35" stroke-width="0.5" opacity="0.2"/>
|
|
|
|
<!-- Connecting arcs to spark -->
|
|
<line x1="48" y1="22" x2="60" y2="18" stroke="#FF6B35" stroke-width="1" opacity="0.6"/>
|
|
<line x1="72" y1="22" x2="60" y2="18" stroke="#FF6B35" stroke-width="1" opacity="0.6"/>
|
|
<line x1="55" y1="20" x2="60" y2="18" stroke="#FF6B35" stroke-width="0.8" opacity="0.4"/>
|
|
<line x1="65" y1="20" x2="60" y2="18" stroke="#FF6B35" stroke-width="0.8" opacity="0.4"/>
|
|
|
|
<!-- Decay dots on lower layers (fading memories) -->
|
|
<circle cx="42" cy="48" r="1.5" fill="#888" opacity="0.5"/>
|
|
<circle cx="58" cy="48" r="1.5" fill="#888" opacity="0.5"/>
|
|
<circle cx="74" cy="48" r="1.5" fill="#888" opacity="0.4"/>
|
|
<circle cx="45" cy="60" r="1.2" fill="#666" opacity="0.3"/>
|
|
<circle cx="65" cy="60" r="1.2" fill="#666" opacity="0.3"/>
|
|
<circle cx="50" cy="72" r="1" fill="#555" opacity="0.2"/>
|
|
<circle cx="70" cy="72" r="1" fill="#555" opacity="0.2"/>
|
|
|
|
<!-- Bottom text area indicator -->
|
|
<text x="60" y="92" text-anchor="middle" font-family="Inter, system-ui, sans-serif" font-size="7.5" font-weight="800" fill="#FF6B35" letter-spacing="0.15em">AGENT</text>
|
|
<text x="60" y="101" text-anchor="middle" font-family="Inter, system-ui, sans-serif" font-size="7.5" font-weight="400" fill="#999" letter-spacing="0.15em">MEMORY</text>
|
|
</svg>
|