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="luna"> | |
| <!-- luna — warm companion. A breathing crescent moon with a soft violet glow + twinkling stars. --> | |
| <defs> | |
| <radialGradient id="l-glow" cx="50%" cy="50%" r="50%"> | |
| <stop offset="0%" stop-color="#8b5cf6" stop-opacity="0.7"/> | |
| <stop offset="60%" stop-color="#8b5cf6" stop-opacity="0.18"/> | |
| <stop offset="100%" stop-color="#8b5cf6" stop-opacity="0"/> | |
| </radialGradient> | |
| <linearGradient id="l-moon" x1="0" y1="0" x2="1" y2="1"> | |
| <stop offset="0%" stop-color="#f3e9ff"/> | |
| <stop offset="100%" stop-color="#b79bf0"/> | |
| </linearGradient> | |
| </defs> | |
| <rect width="120" height="120" rx="26" fill="#0b0a1a"/> | |
| <!-- soft aura, breathing like a heartbeat --> | |
| <circle cx="62" cy="60" r="40" fill="url(#l-glow)"> | |
| <animate attributeName="opacity" values="0.55;1;0.7;1;0.55" dur="4s" repeatCount="indefinite"/> | |
| <animate attributeName="r" values="36;42;36" dur="4s" repeatCount="indefinite"/> | |
| </circle> | |
| <!-- crescent: a lit disc masked by an offset dark disc, gently tilting --> | |
| <g> | |
| <animateTransform attributeName="transform" type="rotate" values="-8 60 60;6 60 60;-8 60 60" dur="7s" repeatCount="indefinite"/> | |
| <path d="M78 34a34 34 0 1 0 0 52 27 27 0 1 1 0-52z" fill="url(#l-moon)"/> | |
| </g> | |
| <!-- twinkling stars --> | |
| <g fill="#f3e9ff"> | |
| <circle cx="34" cy="30" r="1.8"><animate attributeName="opacity" values="0.2;1;0.2" dur="2.4s" repeatCount="indefinite"/></circle> | |
| <circle cx="92" cy="40" r="1.4"><animate attributeName="opacity" values="1;0.15;1" dur="3.1s" repeatCount="indefinite"/></circle> | |
| <circle cx="88" cy="86" r="1.6"><animate attributeName="opacity" values="0.3;1;0.3" dur="2.8s" repeatCount="indefinite"/></circle> | |
| <circle cx="30" cy="80" r="1.3"><animate attributeName="opacity" values="0.8;0.1;0.8" dur="3.6s" repeatCount="indefinite"/></circle> | |
| </g> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment