fixes svg file pathing

This commit is contained in:
2026-06-11 17:31:44 +00:00
parent 3f43d21edc
commit fd228896ea
12 changed files with 13 additions and 13 deletions
+31
View File
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 400" preserveAspectRatio="none" width="100%" height="100%">
<defs>
<linearGradient id="mountainGrad1" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#2a5a8c;stop-opacity:0.9"/>
<stop offset="100%" style="stop-color:#1a3a5c;stop-opacity:1"/>
</linearGradient>
<linearGradient id="mountainGrad2" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#3a6a9c;stop-opacity:0.7"/>
<stop offset="100%" style="stop-color:#2a5a8c;stop-opacity:0.8"/>
</linearGradient>
<linearGradient id="mountainGrad3" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#0e2440;stop-opacity:0.6"/>
<stop offset="100%" style="stop-color:#1a3a5c;stop-opacity:0.7"/>
</linearGradient>
<linearGradient id="snowGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:0.9"/>
<stop offset="100%" style="stop-color:#e8e8e8;stop-opacity:0.3"/>
</linearGradient>
</defs>
<!-- Far mountains -->
<path d="M0,400 L0,280 L120,200 L240,260 L360,150 L480,230 L540,180 L600,210 L720,120 L840,200 L960,160 L1080,220 L1200,140 L1320,200 L1440,170 L1440,400 Z" fill="url(#mountainGrad3)"/>
<!-- Mid mountains -->
<path d="M0,400 L0,320 L180,240 L300,300 L420,180 L540,270 L660,200 L780,280 L900,170 L1020,260 L1140,210 L1260,270 L1380,220 L1440,250 L1440,400 Z" fill="url(#mountainGrad2)"/>
<!-- Near mountains (prominent) -->
<path d="M0,400 L0,340 L160,280 L280,330 L400,200 L500,280 L600,220 L700,290 L820,190 L920,260 L1040,210 L1160,280 L1280,230 L1360,280 L1440,260 L1440,400 Z" fill="url(#mountainGrad1)"/>
<!-- Snow caps -->
<path d="M400,200 L385,215 L415,215 Z" fill="url(#snowGrad)" opacity="0.7"/>
<path d="M820,190 L805,208 L835,208 Z" fill="url(#snowGrad)" opacity="0.7"/>
<path d="M1280,230 L1265,248 L1295,248 Z" fill="url(#snowGrad)" opacity="0.6"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB