Create icon.svg

This commit is contained in:
David Bohl
2025-06-26 09:37:06 +02:00
committed by GitHub
parent 2e5f115591
commit 7a42bba988
+49
View File
@@ -0,0 +1,49 @@
<svg
xmlns="http://www.w3.org/2000/svg"
width="200"
height="200"
viewBox="0 0 200 200"
>
<!-- Background Square with Gradient -->
<defs>
<linearGradient id="bgGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#4A90E2" />
<stop offset="100%" stop-color="#357ABD" />
</linearGradient>
</defs>
<rect width="200" height="200" rx="20" fill="url(#bgGradient)" />
<!-- Stylized Docker Containers -->
<g fill="#00BFFF">
<rect x="40" y="70" width="20" height="20" rx="3" />
<rect x="65" y="70" width="20" height="20" rx="3" />
<rect x="90" y="70" width="20" height="20" rx="3" />
<rect x="52.5" y="45" width="20" height="20" rx="3" />
<rect x="77.5" y="45" width="20" height="20" rx="3" />
</g>
<!-- Docker Whale Body -->
<path
d="M35 110c0 20 30 35 60 35s60-15 60-35v-5H35v5z"
fill="#00BFFF"
opacity="0.8"
/>
<circle cx="55" cy="115" r="3" fill="#fff" />
<!-- Git Branch Path -->
<path
d="M150 40v80c0 10-15 15-20 5l-10-20"
fill="none"
stroke="#F1502F"
stroke-width="4"
stroke-linecap="round"
/>
<circle cx="150" cy="40" r="6" fill="#F1502F" />
<circle cx="120" cy="105" r="6" fill="#F1502F" />
<!-- Deployment Arrow -->
<g fill="#FFFFFF">
<polygon points="135,155 150,170 165,155" />
<rect x="145" y="130" width="10" height="25" rx="2" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB