Spaces:
Running
Running
| <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"> | |
| <defs> | |
| <linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"> | |
| <stop offset="0%" style="stop-color:#18181b;stop-opacity:1" /> | |
| <stop offset="100%" style="stop-color:#09090b;stop-opacity:1" /> | |
| </linearGradient> | |
| <filter id="glow" x="-20%" y="-20%" width="140%" height="140%"> | |
| <feGaussianBlur stdDeviation="10" result="blur" /> | |
| <feComposite in="SourceGraphic" in2="blur" operator="over" /> | |
| </filter> | |
| </defs> | |
| <!-- Circular Background --> | |
| <circle cx="256" cy="256" r="240" fill="url(#bg)" stroke="#27272a" stroke-width="8"/> | |
| <!-- Stylized R / Arrow / Chart --> | |
| <g filter="url(#glow)"> | |
| <!-- Main Diagonal of R --> | |
| <path d="M140 400 L320 180" stroke="#f97316" stroke-width="50" stroke-linecap="round" /> | |
| <!-- Top Loop and Arrow --> | |
| <path d="M220 280 L340 280 C400 280 400 160 340 160 L320 160" fill="none" stroke="#f97316" stroke-width="50" stroke-linecap="round" /> | |
| <!-- Arrow Head --> | |
| <path d="M320 180 L420 80 L440 180 L420 80 L320 60 Z" fill="#f97316" stroke="#f97316" stroke-width="10" stroke-linejoin="round" /> | |
| <!-- Bar Charts at the bottom --> | |
| <g fill="#f97316"> | |
| <rect x="280" y="320" width="25" height="80" rx="4" /> | |
| <rect x="330" y="280" width="25" height="120" rx="4" /> | |
| <rect x="380" y="240" width="25" height="160" rx="4" /> | |
| </g> | |
| </g> | |
| </svg> | |