blob: 982fb3681eff72e32535fedb699fa6ef069cea54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sky" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#2a2a5e"/>
<stop offset="0.5" stop-color="#d9663a"/>
<stop offset="1" stop-color="#f2b134"/>
</linearGradient>
<linearGradient id="sun" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#fff3c4"/>
<stop offset="1" stop-color="#ff9d2e"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="120" height="120" rx="24" fill="url(#sky)"/>
<!-- horizon -->
<rect x="4" y="86" width="120" height="38" rx="0" fill="#7a3d1f"/>
<rect x="4" y="86" width="120" height="6" fill="#9a4d28"/>
<!-- setting sun, clipped at horizon -->
<clipPath id="above"><rect x="4" y="4" width="120" height="84"/></clipPath>
<g clip-path="url(#above)">
<circle cx="64" cy="88" r="26" fill="url(#sun)"/>
<g stroke="#ffd977" stroke-width="4" stroke-linecap="round">
<line x1="64" y1="40" x2="64" y2="30"/>
<line x1="34" y1="60" x2="26" y2="54"/>
<line x1="94" y1="60" x2="102" y2="54"/>
<line x1="44" y1="46" x2="38" y2="39"/>
<line x1="84" y1="46" x2="90" y2="39"/>
</g>
</g>
</svg>
|