update weather to use the met.no locationforecast 2.0 API

workspace
Brendan Howell 3 years ago
parent c22026b015
commit 824119a55b

@ -12,11 +12,14 @@ def get_weather_json(lat, lon):
periods. NOTE: This is not tidied up. Use get_forecast for
nicer formatted stuff.
"""
url = "https://api.met.no/weatherapi/locationforecast/1.9/.json"
params = { "lat": lat, "lon": lon }
url = "https://api.met.no/weatherapi/locationforecast/2.0/complete"
headers = { "User-Agent": "https://gitlab.com/bhowell/the-screenless-office" }
# the 2.0+ api only allows a max resolution of four decimals (for cacheing)
params = { "lat": format(lat, ".4"), "lon": format(lon, ".4")}
# https://api.met.no/weatherapi/locationforecast/1.9/.json?lat=52.50639&lon=13.4063
resp = requests.get(url=url, params=params)
# https://api.met.no/weatherapi/locationforecast/2.0/classic?lat=52.50639&lon=13.4063
resp = requests.get(url=url, params=params, headers=headers)
pprint(resp)
return resp.json()
def get_forecast(lat, lon):
@ -33,11 +36,11 @@ def get_forecast(lat, lon):
w = get_weather_json(lat, lon)
forecasts = []
for t in w["product"]["time"]:
for t in w["properties"]["timeseries"]:
# need to strip the trainling 'Z' char which indicates UTC
fr = datetime.datetime.fromisoformat(t["from"][:-1])
to = datetime.datetime.fromisoformat(t["to"][:-1])
dtdelta = datetime.date.today() - fr.date()
tdate = datetime.datetime.fromisoformat(t["time"][:-1])
to = tdate + datetime.timedelta(hours=6)
dtdelta = datetime.date.today() - tdate.date()
if dtdelta == datetime.timedelta(days=0):
day_of = "Today"
@ -45,27 +48,26 @@ def get_forecast(lat, lon):
day_of = "Tomorrow"
else:
days = ("Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday")
day_of = days[fr.weekday()]
day_of = days[tdate.weekday()]
if fr.hour not in (0, 6, 12, 18):
if tdate.hour not in (0, 6, 12, 18):
continue
if(to-fr == datetime.timedelta(hours=6)):
mintemp = t["location"]["minTemperature"]["value"]
maxtemp = t["location"]["maxTemperature"]["value"]
symbol = t["location"]["symbol"]["id"].lower()
png = symbol
if fr.hour in (18, 0):
symbol += "-night.svg"
png += "-night.png"
else:
symbol += ".svg"
png += ".png"
icon = os.path.join(thisdir, "weather_icons", symbol)
png = os.path.join(thisdir, "weather_icons", png)
forecast = {"fromtime": fr, "totime": to, "symbol": icon,
"mintemp": mintemp, "maxtemp": maxtemp, "png": png,
"period": periods[fr.hour], "day": day_of}
forecasts.append(forecast)
if not("next_6_hours" in t["data"]):
continue
mintemp = t["data"]["next_6_hours"]["details"]["air_temperature_min"]
maxtemp = t["data"]["next_6_hours"]["details"]["air_temperature_max"]
symbol = t["data"]["next_6_hours"]["summary"]["symbol_code"]
png = symbol
symbol += ".svg"
png += ".png"
icon = os.path.join(thisdir, "weather_icons", symbol)
png = os.path.join(thisdir, "weather_icons", png)
forecast = {"fromtime": tdate, "totime": to, "symbol": icon,
"mintemp": mintemp, "maxtemp": maxtemp, "png": png,
"period": periods[tdate.hour], "day": day_of}
forecasts.append(forecast)
return forecasts

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

@ -0,0 +1,23 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<defs>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s01d">
<use xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(9,9) scale(1,1)"></use>
</symbol>
<use xlink:href="#s01d" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

@ -0,0 +1,16 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="moon">
<path d="M28.43,0A28.44,28.44,0,0,1,32.3,14.32,28.61,28.61,0,0,1,3.69,42.93,28.71,28.71,0,0,1,0,42.66,28.59,28.59,0,1,0,28.43,0Z" fill="url(#moon-grad)"></path>
</symbol>
<defs>
<linearGradient id="moon-grad" x1="0%" y1="50%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#686e73" />
<stop offset="100%" stop-color="#6a7075" />
</linearGradient>
</defs>
<symbol id="s01n">
<use xlink:href="#moon" x="0" y="0" width="100" height="100" transform="translate(20,20) scale(1,1)"></use>
</symbol>
<use xlink:href="#s01n" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 749 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

@ -0,0 +1,32 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<symbol id="sunWinter">
<g mask="url(#sunWinterMask)">
<use class="sun-primitive" xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,-40) scale(1,1)"></use>
</g>
<path fill="#333333" d="M88.29,2.7H1.71A1.56,1.56,0,0,1,0,1.35,1.56,1.56,0,0,1,1.71,0H88.29A1.56,1.56,0,0,1,90,1.35,1.56,1.56,0,0,1,88.29,2.7Z"></path>
</symbol>
<defs>
<mask id="sunWinterMask">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s01m">
<use xlink:href="#sunWinter" x="0" y="0" width="100" height="100" transform="translate(5,37) scale(1,1)"></use>
</symbol>
<use xlink:href="#s01m" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -1,313 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="cloud.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="17.369565"
inkscape:cx="17.105131"
inkscape:cy="24.82888"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-7" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m 6.0676253,2.9033262 c 0.8551791,0 1.5880349,0.4841653 1.9776499,1.1819493 C 8.2646155,3.921 8.5447661,3.8146925 8.852205,3.8146925 c 0.6987275,0 1.265811,0.5103623 1.265811,1.1392036 0,0.1412227 -0.02683,0.2738625 -0.0791,0.3987186 0.794677,0.3194391 1.344899,1.0430601 1.344899,1.8796985 0,1.1360149 -1.016191,2.0505578 -2.2784606,2.0505578 h -4.556713 c -1.2622673,0 -2.2784604,-0.9145429 -2.2784604,-2.0505578 0,-0.8999783 0.6420189,-1.6591391 1.5346673,-1.9366519 0,-0.038691 -0.015699,-0.074498 -0.015699,-0.1138843 0,-1.2576946 1.0207497,-2.2784176 2.2784619,-2.2784176 z"
id="path22-9" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -1,313 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="cloud.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="17.369565"
inkscape:cx="17.105131"
inkscape:cy="24.82888"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-7" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m 6.0676253,2.9033262 c 0.8551791,0 1.5880349,0.4841653 1.9776499,1.1819493 C 8.2646155,3.921 8.5447661,3.8146925 8.852205,3.8146925 c 0.6987275,0 1.265811,0.5103623 1.265811,1.1392036 0,0.1412227 -0.02683,0.2738625 -0.0791,0.3987186 0.794677,0.3194391 1.344899,1.0430601 1.344899,1.8796985 0,1.1360149 -1.016191,2.0505578 -2.2784606,2.0505578 h -4.556713 c -1.2622673,0 -2.2784604,-0.9145429 -2.2784604,-2.0505578 0,-0.8999783 0.6420189,-1.6591391 1.5346673,-1.9366519 0,-0.038691 -0.015699,-0.074498 -0.015699,-0.1138843 0,-1.2576946 1.0207497,-2.2784176 2.2784619,-2.2784176 z"
id="path22-9" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

@ -0,0 +1,12 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s04">
<use xlink:href="#cloud" fill="#dddddd" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</symbol>
<use xlink:href="#s04" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

@ -1,407 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrain-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="7.3905231"
inkscape:cy="19.24047"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-7" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

@ -1,408 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrain.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="8.582485"
inkscape:cy="20.970822"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#ffffff">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@ -0,0 +1,34 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<defs>
<mask id="cloud_43_37_063_063_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(43,37) scale(0.63,0.63)"></use>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s02d">
<g mask="url(#cloud_43_37_063_063_5)">
<use xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,9) scale(1,1)"></use>
</g>
<use xlink:href="#cloud" fill="#dddddd" x="0" y="0" width="100" height="100" transform="translate(43,37) scale(0.63,0.63)"></use>
</symbol>
<use xlink:href="#s02d" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

@ -0,0 +1,27 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="moon">
<path d="M28.43,0A28.44,28.44,0,0,1,32.3,14.32,28.61,28.61,0,0,1,3.69,42.93,28.71,28.71,0,0,1,0,42.66,28.59,28.59,0,1,0,28.43,0Z" fill="url(#moon-grad)"></path>
</symbol>
<defs>
<mask id="cloud_43_37_063_063_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(43,37) scale(0.63,0.63)"></use>
</mask>
<linearGradient id="moon-grad" x1="0%" y1="50%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#686e73" />
<stop offset="100%" stop-color="#6a7075" />
</linearGradient>
</defs>
<symbol id="s02n">
<g mask="url(#cloud_43_37_063_063_5)">
<use xlink:href="#moon" x="0" y="0" width="100" height="100" transform="translate(15,20) scale(1,1)"></use>
</g>
<use xlink:href="#cloud" fill="#dddddd" x="0" y="0" width="100" height="100" transform="translate(43,37) scale(0.63,0.63)"></use>
</symbol>
<use xlink:href="#s02n" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

@ -0,0 +1,43 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="sunWinter">
<g mask="url(#sunWinterMask)">
<use class="sun-primitive" xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,-40) scale(1,1)"></use>
</g>
<path fill="#333333" d="M88.29,2.7H1.71A1.56,1.56,0,0,1,0,1.35,1.56,1.56,0,0,1,1.71,0H88.29A1.56,1.56,0,0,1,90,1.35,1.56,1.56,0,0,1,88.29,2.7Z"></path>
</symbol>
<defs>
<mask id="cloud_43_37_063_063_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(43,37) scale(0.63,0.63)"></use>
</mask>
<mask id="sunWinterMask">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s02m">
<g mask="url(#cloud_43_37_063_063_5)">
<use xlink:href="#sunWinter" x="0" y="0" width="100" height="100" transform="translate(0,37) scale(1,1)"></use>
</g>
<use xlink:href="#cloud" fill="#dddddd" x="0" y="0" width="100" height="100" transform="translate(43,37) scale(0.63,0.63)"></use>
</symbol>
<use xlink:href="#s02m" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

@ -1,409 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="fog_02.svg"
inkscape:export-filename="/home/limaa/Art/Weather/flat-circle-pomocne/0.2/scalable/fog_02_128.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.451865"
inkscape:cx="-1.4564434"
inkscape:cy="24.507145"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<inkscape:path-effect
effect="spiro"
id="path-effect4018"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3908"
is_visible="true" />
<inkscape:path-effect
effect="skeletal"
id="path-effect3904"
is_visible="true"
pattern="M 0,5 C 0,2.24 2.24,0 5,0 7.76,0 10,2.24 10,5 10,7.76 7.76,10 5,10 2.24,10 0,7.76 0,5 z"
copytype="single_stretched"
prop_scale="1"
scale_y_rel="false"
spacing="0"
normal_offset="0"
tang_offset="0"
prop_units="false"
vertical_pattern="false"
fuse_tolerance="0" />
<inkscape:path-effect
effect="spiro"
id="path-effect3902"
is_visible="true" />
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-7"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5-4"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1-0"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-6"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5-8"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1-2"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect4018-1"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect4018-1-8"
is_visible="true" />
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-8" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="translate(-0.0154747,-1.3434711)"
style="fill-rule:evenodd"
id="g3956-41" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,6.8319855 C 3.4740594,6.2505256 4.5325516,6.0388272 5.495434,6.2675411 6.4833561,6.5022026 7.3297343,7.1617684 8.3176563,7.39643 9.2805389,7.6251439 10.339031,7.4134455 11.139879,6.8319855"
id="path4016"
inkscape:path-effect="#path-effect4018"
inkscape:original-d="m 2.6732117,6.8319855 c 0,0 1.8668693,-0.6521574 2.8222223,-0.5644444 C 6.5043992,6.3601761 6.9284183,7.4477101 8.3176563,7.39643 9.0171555,7.37061 11.139879,6.8319855 11.139879,6.8319855"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,5.1386521 C 3.4740594,4.5571922 4.5325516,4.3454938 5.4954341,4.5742077 6.4833562,4.8088693 7.3297343,5.468435 8.3176564,5.7030966 9.2805389,5.9318105 10.339031,5.7201121 11.139879,5.1386521"
id="path4016-5"
inkscape:path-effect="#path-effect4018-1"
inkscape:original-d="m 2.6732117,5.1386521 c 0,0 1.8668693,-0.6521574 2.8222224,-0.5644444 1.0089651,0.092635 1.4329842,1.180169 2.8222223,1.1288889 0.6994991,-0.02582 2.8222226,-0.5644445 2.8222226,-0.5644445"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,8.5253188 C 3.4740594,7.9438589 4.5325516,7.7321605 5.4954341,7.9608744 6.4833562,8.195536 7.3297343,8.8551017 8.3176564,9.0897633 9.2805389,9.3184772 10.339031,9.1067788 11.139879,8.5253188"
id="path4016-5-1"
inkscape:path-effect="#path-effect4018-1-8"
inkscape:original-d="m 2.6732117,8.5253188 c 0,0 1.8668693,-0.6521574 2.8222224,-0.5644444 1.0089651,0.092635 1.4329842,1.180169 2.8222223,1.1288889 0.6994991,-0.02582 2.8222226,-0.5644445 2.8222226,-0.5644445"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

@ -1,409 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="fog-night.svg"
inkscape:export-filename="/home/limaa/Art/Weather/flat-circle-pomocne/0.2/scalable/fog_02_128.png"
inkscape:export-xdpi="240"
inkscape:export-ydpi="240">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1001"
id="namedview60"
showgrid="false"
inkscape:zoom="13.451865"
inkscape:cx="-1.4564434"
inkscape:cy="24.507145"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<inkscape:path-effect
effect="spiro"
id="path-effect4018"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3908"
is_visible="true" />
<inkscape:path-effect
effect="skeletal"
id="path-effect3904"
is_visible="true"
pattern="M 0,5 C 0,2.24 2.24,0 5,0 7.76,0 10,2.24 10,5 10,7.76 7.76,10 5,10 2.24,10 0,7.76 0,5 z"
copytype="single_stretched"
prop_scale="1"
scale_y_rel="false"
spacing="0"
normal_offset="0"
tang_offset="0"
prop_units="false"
vertical_pattern="false"
fuse_tolerance="0" />
<inkscape:path-effect
effect="spiro"
id="path-effect3902"
is_visible="true" />
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-7"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5-4"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1-0"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-6"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-5-8"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect3912-1-2"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect4018-1"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect4018-1-8"
is_visible="true" />
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-8" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="fog">
<g fill="#999999">
<path d="M88.7,3H14.3C13.6,3,13,2.3,13,1.5S13.6,0,14.3,0h74.4C89.4,0,90,0.7,90,1.5S89.4,3,88.7,3z"></path>
<path d="M75.7,11H1.3C0.6,11,0,10.3,0,9.5S0.6,8,1.3,8h74.4C76.4,8,77,8.7,77,9.5S76.4,11,75.7,11z"></path>
<path d="M86.7,19H12.3c-0.7,0-1.3-0.7-1.3-1.5s0.6-1.5,1.3-1.5h74.4c0.7,0,1.3,0.7,1.3,1.5S87.4,19,86.7,19z"></path>
</g>
<g
transform="translate(-0.0154747,-1.3434711)"
style="fill-rule:evenodd"
id="g3956-41" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,6.8319855 C 3.4740594,6.2505256 4.5325516,6.0388272 5.495434,6.2675411 6.4833561,6.5022026 7.3297343,7.1617684 8.3176563,7.39643 9.2805389,7.6251439 10.339031,7.4134455 11.139879,6.8319855"
id="path4016"
inkscape:path-effect="#path-effect4018"
inkscape:original-d="m 2.6732117,6.8319855 c 0,0 1.8668693,-0.6521574 2.8222223,-0.5644444 C 6.5043992,6.3601761 6.9284183,7.4477101 8.3176563,7.39643 9.0171555,7.37061 11.139879,6.8319855 11.139879,6.8319855"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,5.1386521 C 3.4740594,4.5571922 4.5325516,4.3454938 5.4954341,4.5742077 6.4833562,4.8088693 7.3297343,5.468435 8.3176564,5.7030966 9.2805389,5.9318105 10.339031,5.7201121 11.139879,5.1386521"
id="path4016-5"
inkscape:path-effect="#path-effect4018-1"
inkscape:original-d="m 2.6732117,5.1386521 c 0,0 1.8668693,-0.6521574 2.8222224,-0.5644444 1.0089651,0.092635 1.4329842,1.180169 2.8222223,1.1288889 0.6994991,-0.02582 2.8222226,-0.5644445 2.8222226,-0.5644445"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.26642326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.6732117,8.5253188 C 3.4740594,7.9438589 4.5325516,7.7321605 5.4954341,7.9608744 6.4833562,8.195536 7.3297343,8.8551017 8.3176564,9.0897633 9.2805389,9.3184772 10.339031,9.1067788 11.139879,8.5253188"
id="path4016-5-1"
inkscape:path-effect="#path-effect4018-1-8"
inkscape:original-d="m 2.6732117,8.5253188 c 0,0 1.8668693,-0.6521574 2.8222224,-0.5644444 1.0089651,0.092635 1.4329842,1.180169 2.8222223,1.1288889 0.6994991,-0.02582 2.8222226,-0.5644445 2.8222226,-0.5644445"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casc" />
</g>
</svg>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s15">
<use xlink:href="#cloud" fill="#dddddd" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#fog" x="0" y="0" width="100" height="100" transform="translate(0,76) scale(1,1)"></use>
</symbol>
<use xlink:href="#s15" x="0" y="0" width="100" height="100"></use>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

@ -0,0 +1,20 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s10">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(18,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(47,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(60,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(74,87) scale(1,1)"></use>
</symbol>
<use xlink:href="#s10" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

@ -0,0 +1,31 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<defs>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s11">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(18,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(29,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(55,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(68,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(82,87) scale(1,1)"></use>
</symbol>
<use xlink:href="#s11" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

@ -0,0 +1,45 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s10">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(18,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(47,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(60,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(74,87) scale(1,1)"></use>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s41d">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(0,2) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s10" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s41d" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

@ -0,0 +1,38 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s10">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(18,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(47,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(60,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(74,87) scale(1,1)"></use>
</symbol>
<symbol id="moon">
<path d="M28.43,0A28.44,28.44,0,0,1,32.3,14.32,28.61,28.61,0,0,1,3.69,42.93,28.71,28.71,0,0,1,0,42.66,28.59,28.59,0,1,0,28.43,0Z" fill="url(#moon-grad)"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<linearGradient id="moon-grad" x1="0%" y1="50%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#686e73" />
<stop offset="100%" stop-color="#6a7075" />
</linearGradient>
</defs>
<symbol id="s41n">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#moon" x="0" y="0" width="100" height="100" transform="translate(2,5) scale(0.714285714,0.714285714)"></use>
</g>
<use xlink:href="#s10" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s41n" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

@ -0,0 +1,54 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<symbol id="s10">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(18,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(47,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(60,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(74,87) scale(1,1)"></use>
</symbol>
<symbol id="sunWinter">
<g mask="url(#sunWinterMask)">
<use class="sun-primitive" xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,-40) scale(1,1)"></use>
</g>
<path fill="#333333" d="M88.29,2.7H1.71A1.56,1.56,0,0,1,0,1.35,1.56,1.56,0,0,1,1.71,0H88.29A1.56,1.56,0,0,1,90,1.35,1.56,1.56,0,0,1,88.29,2.7Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<mask id="sunWinterMask">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s41m">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sunWinter" x="0" y="0" width="100" height="100" transform="translate(0,19) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s10" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s41m" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@ -0,0 +1,55 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s11">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(18,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(29,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(55,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(68,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(82,87) scale(1,1)"></use>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s25d">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(0,2) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s11" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s25d" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

@ -0,0 +1,48 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s11">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(18,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(29,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(55,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(68,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(82,87) scale(1,1)"></use>
</symbol>
<symbol id="moon">
<path d="M28.43,0A28.44,28.44,0,0,1,32.3,14.32,28.61,28.61,0,0,1,3.69,42.93,28.71,28.71,0,0,1,0,42.66,28.59,28.59,0,1,0,28.43,0Z" fill="url(#moon-grad)"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<linearGradient id="moon-grad" x1="0%" y1="50%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#686e73" />
<stop offset="100%" stop-color="#6a7075" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s25n">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#moon" x="0" y="0" width="100" height="100" transform="translate(2,5) scale(0.714285714,0.714285714)"></use>
</g>
<use xlink:href="#s11" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s25n" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

@ -0,0 +1,64 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<symbol id="s11">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(18,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(29,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(55,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(68,78) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(82,87) scale(1,1)"></use>
</symbol>
<symbol id="sunWinter">
<g mask="url(#sunWinterMask)">
<use class="sun-primitive" xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,-40) scale(1,1)"></use>
</g>
<path fill="#333333" d="M88.29,2.7H1.71A1.56,1.56,0,0,1,0,1.35,1.56,1.56,0,0,1,1.71,0H88.29A1.56,1.56,0,0,1,90,1.35,1.56,1.56,0,0,1,88.29,2.7Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<mask id="sunWinterMask">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s25m">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sunWinter" x="0" y="0" width="100" height="100" transform="translate(0,19) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s11" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s25m" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

@ -0,0 +1,23 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s48">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,86) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(47,80) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(58,88) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(74,80) scale(1,1)"></use>
</symbol>
<use xlink:href="#s48" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

@ -0,0 +1,34 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<defs>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s32">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(30,86) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(55,80) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(66,88) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(82,80) scale(1,1)"></use>
</symbol>
<use xlink:href="#s32" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

@ -0,0 +1,48 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s48">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,86) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(47,80) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(58,88) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(74,80) scale(1,1)"></use>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s43d">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(0,2) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s48" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s43d" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

@ -0,0 +1,41 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s48">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,86) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(47,80) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(58,88) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(74,80) scale(1,1)"></use>
</symbol>
<symbol id="moon">
<path d="M28.43,0A28.44,28.44,0,0,1,32.3,14.32,28.61,28.61,0,0,1,3.69,42.93,28.71,28.71,0,0,1,0,42.66,28.59,28.59,0,1,0,28.43,0Z" fill="url(#moon-grad)"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<linearGradient id="moon-grad" x1="0%" y1="50%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#686e73" />
<stop offset="100%" stop-color="#6a7075" />
</linearGradient>
</defs>
<symbol id="s43n">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#moon" x="0" y="0" width="100" height="100" transform="translate(2,5) scale(0.714285714,0.714285714)"></use>
</g>
<use xlink:href="#s48" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s43n" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

@ -0,0 +1,57 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<symbol id="s48">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,86) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(47,80) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(58,88) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(74,80) scale(1,1)"></use>
</symbol>
<symbol id="sunWinter">
<g mask="url(#sunWinterMask)">
<use class="sun-primitive" xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,-40) scale(1,1)"></use>
</g>
<path fill="#333333" d="M88.29,2.7H1.71A1.56,1.56,0,0,1,0,1.35,1.56,1.56,0,0,1,1.71,0H88.29A1.56,1.56,0,0,1,90,1.35,1.56,1.56,0,0,1,88.29,2.7Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<mask id="sunWinterMask">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s43m">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sunWinter" x="0" y="0" width="100" height="100" transform="translate(0,19) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s48" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s43m" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@ -0,0 +1,58 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s32">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(30,86) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(55,80) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(66,88) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(82,80) scale(1,1)"></use>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s27d">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(0,2) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s32" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s27d" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

@ -0,0 +1,51 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s32">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(30,86) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(55,80) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(66,88) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(82,80) scale(1,1)"></use>
</symbol>
<symbol id="moon">
<path d="M28.43,0A28.44,28.44,0,0,1,32.3,14.32,28.61,28.61,0,0,1,3.69,42.93,28.71,28.71,0,0,1,0,42.66,28.59,28.59,0,1,0,28.43,0Z" fill="url(#moon-grad)"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<linearGradient id="moon-grad" x1="0%" y1="50%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#686e73" />
<stop offset="100%" stop-color="#6a7075" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s27n">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#moon" x="0" y="0" width="100" height="100" transform="translate(2,5) scale(0.714285714,0.714285714)"></use>
</g>
<use xlink:href="#s32" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s27n" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

@ -0,0 +1,67 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<symbol id="s32">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(30,86) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(55,80) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(66,88) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(82,80) scale(1,1)"></use>
</symbol>
<symbol id="sunWinter">
<g mask="url(#sunWinterMask)">
<use class="sun-primitive" xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,-40) scale(1,1)"></use>
</g>
<path fill="#333333" d="M88.29,2.7H1.71A1.56,1.56,0,0,1,0,1.35,1.56,1.56,0,0,1,1.71,0H88.29A1.56,1.56,0,0,1,90,1.35,1.56,1.56,0,0,1,88.29,2.7Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<mask id="sunWinterMask">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s27m">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sunWinter" x="0" y="0" width="100" height="100" transform="translate(0,19) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s32" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s27m" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

@ -0,0 +1,20 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s50">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(29,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(44,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(58,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(72,79) scale(1,1)"></use>
</symbol>
<use xlink:href="#s50" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

@ -0,0 +1,31 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<defs>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s34">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(13,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(27,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(55,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(69,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(83,79) scale(1,1)"></use>
</symbol>
<use xlink:href="#s34" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

@ -0,0 +1,45 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s50">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(29,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(44,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(58,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(72,79) scale(1,1)"></use>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s45d">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(0,2) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s50" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s45d" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

@ -0,0 +1,38 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s50">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(29,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(44,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(58,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(72,79) scale(1,1)"></use>
</symbol>
<symbol id="moon">
<path d="M28.43,0A28.44,28.44,0,0,1,32.3,14.32,28.61,28.61,0,0,1,3.69,42.93,28.71,28.71,0,0,1,0,42.66,28.59,28.59,0,1,0,28.43,0Z" fill="url(#moon-grad)"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<linearGradient id="moon-grad" x1="0%" y1="50%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#686e73" />
<stop offset="100%" stop-color="#6a7075" />
</linearGradient>
</defs>
<symbol id="s45n">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#moon" x="0" y="0" width="100" height="100" transform="translate(2,5) scale(0.714285714,0.714285714)"></use>
</g>
<use xlink:href="#s50" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s45n" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

@ -0,0 +1,54 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<symbol id="s50">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(15,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(29,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(44,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(58,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(72,79) scale(1,1)"></use>
</symbol>
<symbol id="sunWinter">
<g mask="url(#sunWinterMask)">
<use class="sun-primitive" xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,-40) scale(1,1)"></use>
</g>
<path fill="#333333" d="M88.29,2.7H1.71A1.56,1.56,0,0,1,0,1.35,1.56,1.56,0,0,1,1.71,0H88.29A1.56,1.56,0,0,1,90,1.35,1.56,1.56,0,0,1,88.29,2.7Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<mask id="sunWinterMask">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s45m">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sunWinter" x="0" y="0" width="100" height="100" transform="translate(0,19) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s50" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s45m" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@ -0,0 +1,55 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s34">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(13,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(27,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(55,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(69,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(83,79) scale(1,1)"></use>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s29d">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(0,2) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s34" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s29d" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

@ -0,0 +1,48 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s34">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(13,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(27,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(55,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(69,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(83,79) scale(1,1)"></use>
</symbol>
<symbol id="moon">
<path d="M28.43,0A28.44,28.44,0,0,1,32.3,14.32,28.61,28.61,0,0,1,3.69,42.93,28.71,28.71,0,0,1,0,42.66,28.59,28.59,0,1,0,28.43,0Z" fill="url(#moon-grad)"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<linearGradient id="moon-grad" x1="0%" y1="50%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#686e73" />
<stop offset="100%" stop-color="#6a7075" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s29n">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#moon" x="0" y="0" width="100" height="100" transform="translate(2,5) scale(0.714285714,0.714285714)"></use>
</g>
<use xlink:href="#s34" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s29n" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

@ -0,0 +1,64 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="snowflake">
<path fill="#47c0e3" d="M11.68,4.47H8.85L10.27,2A1.35,1.35,0,1,0,7.93.67L6.51,3.12,5.1.67A1.35,1.35,0,0,0,3.26.18,1.35,1.35,0,0,0,2.76,2L4.18,4.47H1.35a1.35,1.35,0,1,0,0,2.7H4.18L2.76,9.62a1.35,1.35,0,0,0,.49,1.84A1.39,1.39,0,0,0,5.1,11L6.51,8.52,7.93,11a1.35,1.35,0,1,0,2.34-1.35L8.85,7.17h2.83a1.35,1.35,0,1,0,0-2.7Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<symbol id="s34">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#999999" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(13,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(27,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(55,79) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(69,88) scale(1,1)"></use>
<use xlink:href="#snowflake" x="0" y="0" width="100" height="100" transform="translate(83,79) scale(1,1)"></use>
</symbol>
<symbol id="sunWinter">
<g mask="url(#sunWinterMask)">
<use class="sun-primitive" xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,-40) scale(1,1)"></use>
</g>
<path fill="#333333" d="M88.29,2.7H1.71A1.56,1.56,0,0,1,0,1.35,1.56,1.56,0,0,1,1.71,0H88.29A1.56,1.56,0,0,1,90,1.35,1.56,1.56,0,0,1,88.29,2.7Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<mask id="sunWinterMask">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s29m">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sunWinter" x="0" y="0" width="100" height="100" transform="translate(0,19) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s34" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s29m" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

@ -1,328 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightcloud.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="12.865556"
inkscape:cy="23.149785"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#cccccc">
<path
sodipodi:type="arc"
style="fill:#cccccc;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.30521134,0,0,0.30521134,-1.2986775,-13.886131)" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -7.5912474,-3.9987827 c 0.4237176,0 0.7868276,0.2398906 0.9798712,0.5856233 0.1086768,-0.081394 0.2474839,-0.1340664 0.3998115,-0.1340664 0.3461999,0 0.6271749,0.2528705 0.6271749,0.564444 0,0.069972 -0.013296,0.1356913 -0.039189,0.197554 0.3937405,0.1582734 0.6663602,0.5168076 0.6663602,0.9313388 0,0.5628641 -0.5034947,1.01599485 -1.1289146,1.01599485 H -8.34386 c -0.6254186,0 -1.1289143,-0.45313075 -1.1289143,-1.01599485 0,-0.4459145 0.3181026,-0.8220577 0.7603854,-0.9595576 0,-0.01917 -0.00778,-0.036912 -0.00778,-0.056426 0,-0.6231529 0.5057533,-1.1288931 1.128915,-1.1288931 z"
id="path22" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

@ -1,327 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightcloud.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="12.865556"
inkscape:cy="23.149785"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
sodipodi:type="arc"
style="fill:#fae75d;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.30521134,0,0,0.30521134,-1.2986775,-13.886131)" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -7.5912474,-3.9987827 c 0.4237176,0 0.7868276,0.2398906 0.9798712,0.5856233 0.1086768,-0.081394 0.2474839,-0.1340664 0.3998115,-0.1340664 0.3461999,0 0.6271749,0.2528705 0.6271749,0.564444 0,0.069972 -0.013296,0.1356913 -0.039189,0.197554 0.3937405,0.1582734 0.6663602,0.5168076 0.6663602,0.9313388 0,0.5628641 -0.5034947,1.01599485 -1.1289146,1.01599485 H -8.34386 c -0.6254186,0 -1.1289143,-0.45313075 -1.1289143,-1.01599485 0,-0.4459145 0.3181026,-0.8220577 0.7603854,-0.9595576 0,-0.01917 -0.00778,-0.036912 -0.00778,-0.056426 0,-0.6231529 0.5057533,-1.1288931 1.128915,-1.1288931 z"
id="path22" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

@ -1,407 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrain-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="7.3905231"
inkscape:cy="19.24047"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-7" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

@ -1,408 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrain.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="8.582485"
inkscape:cy="20.970822"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-5" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#62c4ec;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18"
style="fill:#ffffff">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#1a72d6;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s46">
<use xlink:href="#cloud" fill="#cccccc" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(56,78) scale(1,1)"></use>
</symbol>
<use xlink:href="#s46" x="0" y="0" width="100" height="100"></use>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

@ -0,0 +1,28 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<defs>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s30">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#cccccc" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(28,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(58,78) scale(1,1)"></use>
</symbol>
<use xlink:href="#s30" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

@ -0,0 +1,42 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s46">
<use xlink:href="#cloud" fill="#cccccc" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(56,78) scale(1,1)"></use>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s40d">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(0,2) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s46" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s40d" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

@ -0,0 +1,35 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s46">
<use xlink:href="#cloud" fill="#cccccc" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(56,78) scale(1,1)"></use>
</symbol>
<symbol id="moon">
<path d="M28.43,0A28.44,28.44,0,0,1,32.3,14.32,28.61,28.61,0,0,1,3.69,42.93,28.71,28.71,0,0,1,0,42.66,28.59,28.59,0,1,0,28.43,0Z" fill="url(#moon-grad)"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<linearGradient id="moon-grad" x1="0%" y1="50%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#686e73" />
<stop offset="100%" stop-color="#6a7075" />
</linearGradient>
</defs>
<symbol id="s40n">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#moon" x="0" y="0" width="100" height="100" transform="translate(2,5) scale(0.714285714,0.714285714)"></use>
</g>
<use xlink:href="#s46" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s40n" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

@ -0,0 +1,51 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<symbol id="s46">
<use xlink:href="#cloud" fill="#cccccc" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(32,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(56,78) scale(1,1)"></use>
</symbol>
<symbol id="sunWinter">
<g mask="url(#sunWinterMask)">
<use class="sun-primitive" xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,-40) scale(1,1)"></use>
</g>
<path fill="#333333" d="M88.29,2.7H1.71A1.56,1.56,0,0,1,0,1.35,1.56,1.56,0,0,1,1.71,0H88.29A1.56,1.56,0,0,1,90,1.35,1.56,1.56,0,0,1,88.29,2.7Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<mask id="sunWinterMask">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
</defs>
<symbol id="s40m">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sunWinter" x="0" y="0" width="100" height="100" transform="translate(0,19) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s46" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s40m" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@ -0,0 +1,52 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s30">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#cccccc" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(28,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(58,78) scale(1,1)"></use>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s24d">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(0,2) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s30" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s24d" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

@ -0,0 +1,45 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="s30">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#cccccc" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(28,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(58,78) scale(1,1)"></use>
</symbol>
<symbol id="moon">
<path d="M28.43,0A28.44,28.44,0,0,1,32.3,14.32,28.61,28.61,0,0,1,3.69,42.93,28.71,28.71,0,0,1,0,42.66,28.59,28.59,0,1,0,28.43,0Z" fill="url(#moon-grad)"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<linearGradient id="moon-grad" x1="0%" y1="50%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#686e73" />
<stop offset="100%" stop-color="#6a7075" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s24n">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#moon" x="0" y="0" width="100" height="100" transform="translate(2,5) scale(0.714285714,0.714285714)"></use>
</g>
<use xlink:href="#s30" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s24n" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

@ -0,0 +1,61 @@
<svg x="0" y="0" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="raindrop">
<path fill="#0062bf" d="M2.5,13A2.5,2.5,0,0,1,.21,9.51l3.55-8a2.5,2.5,0,0,1,4.57,2l-3.55,8A2.5,2.5,0,0,1,2.5,13Z"></path>
</symbol>
<symbol id="lightning">
<polygon fill="#ffdd15" points="19.6 23.42 12.74 20.39 15.55 5 5 24.49 12.08 27.51 7.49 45 19.6 23.42"></polygon>
</symbol>
<symbol id="cloud">
<path d="M55.7,5A23.94,23.94,0,0,0,34.37,18.05a9.9,9.9,0,0,0-12.78,5.56,15,15,0,0,0-1.71-.1A14.81,14.81,0,0,0,9.2,28,14.63,14.63,0,0,0,5,38.17v.21A14.83,14.83,0,0,0,19.88,53.06H75.59a14.3,14.3,0,0,0,3.67-28.14A23.93,23.93,0,0,0,55.7,5Z"></path>
<image x="5" y="14" width="85" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFYAAAAkCAMAAAAkYj0PAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAVUExURSgoKExpcaCgoFBQUG5ublBQUISEhI1fsT0AAAAHdFJOUxsACBsPFRpGXuFgAAABWElEQVRIx7XV25bDIAgF0BMu/v8nF/E+iWlqHNKVN3cpIMXxL4GFM3SQfTazkUyxk63oLYwlVSy2silXkS/wUrZS2a3ZCn1zsdSw7UUYijuHsTa1IvfwWrbSXLkc4N9r27JViwmM1UtWXA3hohQ41m6vl8FQZi7wu2z7KXPW4uRiZS+2AmdXN7DdQEQWQHYHlt6z0dXBBa2xeeVktiZc1jDoF5eGkI4d4MjKc7cNbZ3bqjocLLx5oPDYTaIftcfvAvcs2GFxVsJTOP1wO1jGdUSLaz/DWA1Tl45+Tkqul2ArcPzayGq8JafOUffP3TUp6JQs+Rptc6vtmtBkUw+dv0NzWG0PYf8O7Ym09+ITXyXOPZqEX95aFe3PKxRsL2XV3HR+ZALirPSF0ceHp6F51WBv1A22VaW2GHWzWvat8LOAPf4CrjrA+neNK7+PQBf/DmmLrId09/QDWyESBsibwBUAAAAASUVORK5CYII="></image>
</symbol>
<symbol id="sun">
<path class="sun-glow" fill="url(#sun-glow-grad)" d="M66.64,47.86,82,41,66.64,34.12l9.84-13.66L59.76,22.22,61.46,5.47l-13.6,9.89L41,0,34.12,15.36,20.46,5.52l1.76,16.72L5.47,20.54l9.89,13.6L0,41l15.36,6.83L5.52,61.54l16.72-1.76L20.54,76.53l13.6-9.89L41,82l6.83-15.36,13.66,9.84L59.78,59.76l16.75,1.69Z"></path>
<path class="sun-outer" fill="#ffd348" d="M19.28,53.5a25,25,0,1,0,9.15-34.16A25,25,0,0,0,19.28,53.5Z"></path>
<path class="sun-inner" fill="url(#sun-inner-grad)" d="M22.74,51.5a21,21,0,1,0,7.69-28.69A21,21,0,0,0,22.74,51.5Z"></path>
</symbol>
<symbol id="s30">
<g mask="url(#lightning_37_51_1_1_4)">
<use xlink:href="#cloud" fill="#cccccc" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</g>
<use xlink:href="#lightning" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(28,87) scale(1,1)"></use>
<use xlink:href="#raindrop" x="0" y="0" width="100" height="100" transform="translate(58,78) scale(1,1)"></use>
</symbol>
<symbol id="sunWinter">
<g mask="url(#sunWinterMask)">
<use class="sun-primitive" xlink:href="#sun" x="0" y="0" width="100" height="100" transform="translate(4,-40) scale(1,1)"></use>
</g>
<path fill="#333333" d="M88.29,2.7H1.71A1.56,1.56,0,0,1,0,1.35,1.56,1.56,0,0,1,1.71,0H88.29A1.56,1.56,0,0,1,90,1.35,1.56,1.56,0,0,1,88.29,2.7Z"></path>
</symbol>
<defs>
<mask id="cloud_3_18_1_1_5">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#cloud" fill="black" stroke="black" stroke-linejoin="round" stroke-width="10" x="0" y="0" width="100" height="100" transform="translate(3,18) scale(1,1)"></use>
</mask>
<mask id="sunWinterMask">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
</mask>
<radialGradient id="sun-glow-grad" cx="41" cy="41" r="41" gradientUnits="userSpaceOnUse">
<stop offset="54%" stop-color="#d6b849"/>
<stop offset="67%" stop-color="#ffce47"/>
<stop offset="100%" stop-color="#ffdb73"/>
</radialGradient>
<linearGradient id="sun-inner-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffaf22" />
<stop offset="100%" stop-color="#f09900" />
</linearGradient>
<mask id="lightning_37_51_1_1_4">
<rect x="0" y="0" width="100" height="100" fill="white"></rect>
<use xlink:href="#lightning" fill="black" stroke="black" stroke-linejoin="round" stroke-width="8" x="0" y="0" width="100" height="100" transform="translate(37,51) scale(1,1)"></use>
</mask>
</defs>
<symbol id="s24m">
<g mask="url(#cloud_3_18_1_1_5)">
<use xlink:href="#sunWinter" x="0" y="0" width="100" height="100" transform="translate(0,19) scale(0.7,0.7)"></use>
</g>
<use xlink:href="#s30" x="0" y="0" width="100" height="100"></use>
</symbol>
<use xlink:href="#s24m" x="0" y="0" width="100" height="100"></use>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

@ -1,417 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
viewBox="0 0 13.546667 13.546667"
height="48"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="lightrain-night.svg">
<metadata
id="metadata62">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="999"
id="namedview60"
showgrid="false"
inkscape:zoom="13.710704"
inkscape:cx="7.3905231"
inkscape:cy="19.24047"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="g38"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox="false"
inkscape:object-paths="false"
inkscape:snap-nodes="true" />
<defs
id="defs4">
<linearGradient
id="linearGradient3922">
<stop
style="stop-color:#004455;stop-opacity:1;"
offset="0"
id="stop3924" />
<stop
style="stop-color:#005b72;stop-opacity:1;"
offset="1"
id="stop3926" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6">
<rect
width="20"
x="1"
y="1"
rx="2"
height="20"
style="fill:#fff;fill-rule:evenodd"
id="rect8" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath10">
<rect
width="84"
x="6"
y="6"
rx="6"
height="84"
style="fill:#fff"
id="rect12" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath14">
<path
d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
id="path16" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath18">
<rect
width="96"
x="-100"
y="-0"
height="96"
style="fill:#fff"
id="rect20" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath22">
<path
d="M 95.311,352.545 L 476.403,352.545 L 476.403,71.4229 L 95.311,71.4229 L 95.311,352.545 z"
id="path24" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath26">
<path
d="M 93.311,354.545 L 478.511,354.545 L 478.511,69.1846 L 93.311,69.1846 L 93.311,354.545 z"
id="path28" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath30">
<path
d="M 93.311,69.185 L 478.511,69.185 L 478.511,354.545 L 93.311,354.545 L 93.311,69.185 z"
id="path32" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath34">
<path
d="M 92.311,355.545 L 479.511,355.545 L 479.511,68.1846 L 92.311,68.1846 L 92.311,355.545 z"
id="path36" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2251"
id="linearGradient2258"
x1="21.5"
y1="43.467159"
x2="21.5"
y2="47.532516"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient2251">
<stop
style="stop-color:#729fcf;stop-opacity:1;"
offset="0"
id="stop2253" />
<stop
style="stop-color:#729fcf;stop-opacity:0;"
offset="1"
id="stop2255" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.13,0,0,0.14103,2.41492,-32.46617)"
xlink:href="#linearGradient3896"
id="linearGradient3006"
x1="5.3039999"
gradientUnits="userSpaceOnUse"
x2="61.748001" />
<linearGradient
id="linearGradient3896">
<stop
offset="0"
style="stop-color:#5dac12"
id="stop9" />
<stop
offset="1"
style="stop-color:#76c925"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896"
id="linearGradient6457"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896">
<stop
offset="0"
id="stop7684"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2911-613-519">
<stop
offset="0"
id="stop7648"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7650"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-198-956">
<stop
offset="0"
id="stop7654"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7656"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2911-977-39">
<stop
offset="0"
id="stop7660"
style="stop-color:#ffffe0;stop-opacity:1;" />
<stop
offset="1"
id="stop7662"
style="stop-color:#ffe588;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2782-839-396"
id="linearGradient7090"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.9036558,0,0,4.3816704,-363.57105,-134.91588)"
x1="20"
y1="13.577349"
x2="17.269999"
y2="32.698772" />
<linearGradient
inkscape:collect="always"
id="linearGradient2782-839-396">
<stop
offset="0"
id="stop7582"
style="stop-color:#8dc5ff;stop-opacity:1" />
<stop
offset="1"
id="stop7584"
style="stop-color:#f2c600;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6963-199-896-0"
id="linearGradient6457-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(4.895429,-1.3086414,1.1623533,4.3761806,-614.63541,-97.40367)"
x1="15.194299"
y1="13.018784"
x2="14.486301"
y2="26.07235" />
<linearGradient
inkscape:collect="always"
id="linearGradient6963-199-896-0">
<stop
offset="0"
id="stop7684-1"
style="stop-color:#a2c6ff;stop-opacity:1" />
<stop
offset="1"
id="stop7686-7"
style="stop-color:#9f7e42;stop-opacity:1" />
</linearGradient>
</defs>
<g
style="fill-rule:evenodd"
id="g38">
<rect
width="12.982223"
x="0.28222224"
y="0.28222221"
rx="6.4911113"
height="12.982223"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect42-7" />
<rect
width="11.853333"
x="0.84666669"
y="0.84666681"
rx="5.9266667"
height="11.853333"
style="fill:#264e7a;fill-opacity:1;stroke:none"
id="rect42" />
<g
transform="matrix(0.11531627,0,0,0.11531627,3.9211615,3.8898451)"
id="layer1" />
<g
id="g3389"
style="fill:#f9f9f9;stroke:#f9f9f9;stroke-linejoin:round"
transform="matrix(0.93639221,0.01779363,-0.01779363,0.93639221,0.58795522,0.39238226)">
<g
id="g3393"
style="fill-opacity:0;stroke-width:0.58899999" />
</g>
<g
transform="matrix(1.0091379,0,0,1.0091379,11.949972,11.404511)"
id="g18">
<path
sodipodi:type="arc"
style="fill:#cccccc;fill-opacity:1;stroke:none"
id="path3941"
sodipodi:cx="-12.551146"
sodipodi:cy="30.94105"
sodipodi:rx="12.020815"
sodipodi:ry="12.462757"
d="m -0.53033066,30.94105 c 0,6.88299 -5.38190214,12.462757 -12.02081534,12.462757 -6.638912,0 -12.020814,-5.579767 -12.020814,-12.462757 0,-6.882991 5.381902,-12.462758 12.020814,-12.462758 6.6389132,0 12.02081534,5.579767 12.02081534,12.462758 z"
transform="matrix(0.23477795,0,0,0.23477795,-2.9711433,-11.076491)" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd"
d="m -5.5526778,-9.3876855 c 0.7944705,0 1.4753018,0.4497948 1.8372585,1.0980436 0.203769,-0.1526137 0.4640324,-0.2513745 0.7496466,-0.2513745 0.6491247,0 1.1759528,0.4741322 1.1759528,1.0583325 0,0.1311975 -0.02493,0.2544212 -0.073479,0.3704138 0.7382634,0.2967626 1.24942539,0.9690142 1.24942539,1.7462602 0,1.0553702 -0.94405259,1.9049903 -2.11671479,1.9049903 h -4.2332381 c -1.1726599,0 -2.1167143,-0.8496201 -2.1167143,-1.9049903 0,-0.8360896 0.5964424,-1.5413581 1.4257226,-1.7991705 0,-0.035944 -0.014588,-0.06921 -0.014588,-0.1057987 0,-1.1684117 0.9482875,-2.1166746 2.1167157,-2.1166746 z"
id="path22" />
</g>
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1"
id="path3083"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.1401744,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.8489812,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,5.557788,0.99031661)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.570572,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,3.2793787,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.9881856,2.1295212)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-2-1"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,1.0009698,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-4-9-7"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,2.7097764,3.2687257)" />
<path
sodipodi:type="arc"
style="fill:#62c4ec;fill-opacity:1;fill-rule:evenodd"
id="path3083-5-3-5"
sodipodi:cx="17.792803"
sodipodi:cy="27.809038"
sodipodi:rx="1.3409069"
sodipodi:ry="1.0572535"
d="m 19.13371,27.809038 a 1.3409069,1.0572535 0 1 1 -2.681814,0 1.3409069,1.0572535 0 1 1 2.681814,0 z"
transform="matrix(0.21239443,0,0,0.26937829,4.4185834,3.2687257)" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save