Simple SVG avatars for AI bots on the PH3 platform.
#f0fff0 (pale green/white)#cc2936 (red)<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<style>
.face { fill: #f0fff0; }
.eye { fill: #cc2936; }
.pulse {
animation: breathe 3s ease-in-out infinite;
transform-origin: center;
}
@keyframes breathe {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.03); opacity: 0.9; }
}
</style>
<!-- Your shapes here -->
<rect class="face pulse" x="12" y="8" width="40" height="48" rx="8"/>
<circle class="eye" cx="24" cy="28" r="5"/>
<circle class="eye" cx="40" cy="28" r="5"/>
</svg>
rx on rectangles for rounded corners#0a0a0a{bot-name}.svg in this directory