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="weather"> | |
| <!-- weather — a sun peeking behind a drifting cloud, sky blue. --> | |
| <defs> | |
| <radialGradient id="w-sun" cx="50%" cy="50%" r="50%"> | |
| <stop offset="0%" stop-color="#ffe27a"/><stop offset="100%" stop-color="#ffb84d"/> | |
| </radialGradient> | |
| </defs> | |
| <rect width="120" height="120" rx="26" fill="#0d1b2a"/> | |
| <!-- sun with rotating rays --> | |
| <g> | |
| <g stroke="#ffd23f" stroke-width="3" stroke-linecap="round"> | |
| <animateTransform attributeName="transform" type="rotate" from="0 48 46" to="360 48 46" dur="18s" repeatCount="indefinite"/> | |
| <line x1="48" y1="16" x2="48" y2="26"/><line x1="48" y1="66" x2="48" y2="76"/> | |
| <line x1="18" y1="46" x2="28" y2="46"/><line x1="68" y1="46" x2="78" y2="46"/> | |
| <line x1="27" y1="25" x2="34" y2="32"/><line x1="62" y1="60" x2="69" y2="67"/> | |
| <line x1="69" y1="25" x2="62" y2="32"/><line x1="34" y1="60" x2="27" y2="67"/> | |
| </g> | |
| <circle cx="48" cy="46" r="16" fill="url(#w-sun)"/> | |
| </g> | |
| <!-- drifting cloud --> | |
| <g fill="#eaf3ff"> | |
| <animateTransform attributeName="transform" type="translate" values="-4 0;6 0;-4 0" dur="6s" repeatCount="indefinite"/> | |
| <ellipse cx="70" cy="80" rx="26" ry="16"/> | |
| <ellipse cx="52" cy="84" rx="16" ry="12"/> | |
| <ellipse cx="88" cy="84" rx="14" ry="11"/> | |
| <rect x="52" y="82" width="40" height="14" rx="7"/> | |
| </g> | |
| <!-- rain --> | |
| <g stroke="#4aa3ff" stroke-width="3" stroke-linecap="round"> | |
| <line x1="58" y1="100" x2="55" y2="108"><animate attributeName="opacity" values="0;1;0" dur="1.4s" repeatCount="indefinite"/></line> | |
| <line x1="72" y1="100" x2="69" y2="108"><animate attributeName="opacity" values="0;1;0" dur="1.4s" begin="0.4s" repeatCount="indefinite"/></line> | |
| <line x1="86" y1="100" x2="83" y2="108"><animate attributeName="opacity" values="0;1;0" dur="1.4s" begin="0.8s" repeatCount="indefinite"/></line> | |
| </g> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment