Created
July 23, 2026 21:34
-
-
Save cagataycali/17f33112c16b201d4a50c5af8da84bd0 to your computer and use it in GitHub Desktop.
tiny.id — animated per-tiny logos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" role="img" aria-label="tiny"> | |
| <!-- tiny — the meta-agent. A living neon node with tinys orbiting it (the Universe). --> | |
| <defs> | |
| <radialGradient id="t-glow" cx="50%" cy="50%" r="50%"> | |
| <stop offset="0%" stop-color="#00FF88" stop-opacity="0.85"/> | |
| <stop offset="55%" stop-color="#00FF88" stop-opacity="0.22"/> | |
| <stop offset="100%" stop-color="#00FF88" stop-opacity="0"/> | |
| </radialGradient> | |
| <radialGradient id="t-core" cx="50%" cy="45%" r="55%"> | |
| <stop offset="0%" stop-color="#eafff4"/> | |
| <stop offset="45%" stop-color="#00FF88"/> | |
| <stop offset="100%" stop-color="#00b45f"/> | |
| </radialGradient> | |
| </defs> | |
| <rect width="120" height="120" rx="26" fill="#020604"/> | |
| <!-- breathing halo --> | |
| <circle cx="60" cy="60" r="34" fill="url(#t-glow)"> | |
| <animate attributeName="r" values="30;38;30" dur="4s" repeatCount="indefinite"/> | |
| <animate attributeName="opacity" values="0.7;1;0.7" dur="4s" repeatCount="indefinite"/> | |
| </circle> | |
| <!-- orbiting tinys --> | |
| <g> | |
| <animateTransform attributeName="transform" type="rotate" from="0 60 60" to="360 60 60" dur="14s" repeatCount="indefinite"/> | |
| <circle cx="60" cy="18" r="4" fill="#00FF88"/> | |
| <circle cx="102" cy="60" r="3" fill="#00FF88" opacity="0.8"/> | |
| <circle cx="60" cy="102" r="3.4" fill="#7dffc0"/> | |
| </g> | |
| <g> | |
| <animateTransform attributeName="transform" type="rotate" from="360 60 60" to="0 60 60" dur="20s" repeatCount="indefinite"/> | |
| <circle cx="24" cy="44" r="2.6" fill="#00FF88" opacity="0.7"/> | |
| <circle cx="96" cy="88" r="2.6" fill="#00FF88" opacity="0.7"/> | |
| </g> | |
| <!-- core node --> | |
| <circle cx="60" cy="60" r="15" fill="url(#t-core)"> | |
| <animate attributeName="r" values="14;16;14" dur="4s" repeatCount="indefinite"/> | |
| </circle> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment