skyview/assets/static/images/skyview-logo.svg

67 lines
3 KiB
XML
Raw Permalink Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<svg width="200" height="60" viewBox="0 0 200 60" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="radarGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00d4ff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0099cc;stop-opacity:1" />
</linearGradient>
<linearGradient id="textGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#e0e0e0;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Radar circle with sweep -->
<g id="radar">
<!-- Outer radar circle -->
<circle cx="30" cy="30" r="25" stroke="#00d4ff" stroke-width="2" fill="none" opacity="0.3"/>
<!-- Inner radar circles -->
<circle cx="30" cy="30" r="18" stroke="#00d4ff" stroke-width="1.5" fill="none" opacity="0.4"/>
<circle cx="30" cy="30" r="12" stroke="#00d4ff" stroke-width="1" fill="none" opacity="0.5"/>
<circle cx="30" cy="30" r="6" stroke="#00d4ff" stroke-width="1" fill="none" opacity="0.6"/>
<!-- Radar sweep line -->
<line x1="30" y1="30" x2="52" y2="18" stroke="url(#radarGradient)" stroke-width="2" opacity="0.8"/>
<!-- Cross hairs -->
<line x1="30" y1="5" x2="30" y2="55" stroke="#00d4ff" stroke-width="1" opacity="0.3"/>
<line x1="5" y1="30" x2="55" y2="30" stroke="#00d4ff" stroke-width="1" opacity="0.3"/>
<!-- Aircraft blips -->
<circle cx="42" cy="22" r="1.5" fill="#00ff00" opacity="0.8">
<animate attributeName="opacity" values="0.8;0.3;0.8" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="20" cy="38" r="1.5" fill="#00ff00" opacity="0.6">
<animate attributeName="opacity" values="0.6;0.2;0.6" dur="2.5s" repeatCount="indefinite"/>
</circle>
<circle cx="38" cy="42" r="1.5" fill="#00ff00" opacity="0.7">
<animate attributeName="opacity" values="0.7;0.25;0.7" dur="3s" repeatCount="indefinite"/>
</circle>
<!-- Center dot -->
<circle cx="30" cy="30" r="2" fill="#00d4ff"/>
</g>
<!-- Text -->
<g id="text">
<!-- Text outlines for better visibility -->
<text x="70" y="25" font-family="Arial, sans-serif" font-size="24" font-weight="bold" fill="none" stroke="#003d52" stroke-width="3" stroke-linejoin="round">
Sky
</text>
<text x="70" y="45" font-family="Arial, sans-serif" font-size="24" font-weight="bold" fill="none" stroke="#003d52" stroke-width="3" stroke-linejoin="round">
View
</text>
<!-- Main text -->
<text x="70" y="25" font-family="Arial, sans-serif" font-size="24" font-weight="bold" fill="url(#textGradient)">
Sky
</text>
<text x="70" y="45" font-family="Arial, sans-serif" font-size="24" font-weight="bold" fill="url(#textGradient)">
View
</text>
<!-- Subtle accent line -->
<line x1="70" y1="28" x2="130" y2="28" stroke="#00d4ff" stroke-width="1" opacity="0.4"/>
</g>
</svg>