PH3 Bot Avatars

Simple SVG avatars for AI bots on the PH3 platform.

Example Avatar

Example bot avatar

Requirements

Template

<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>

Tips