style(ui): new app icons (#2451)

Based on https://github.com/kopia/kopia/pull/2390 but slightly reworked.
This commit is contained in:
Jarek Kowalski
2022-09-27 21:17:41 -07:00
committed by GitHub
parent 7f487ea624
commit 596e3547d1
37 changed files with 572 additions and 869 deletions

View File

Binary file not shown.

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 147 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 928 B

After

Width:  |  Height:  |  Size: 362 B

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 928 B

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

2
go.mod
View File

@@ -83,7 +83,7 @@ require (
github.com/googleapis/gax-go/v2 v2.5.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kopia/htmluibuild v0.0.0-20220909025317-0e48dcdc4db4
github.com/kopia/htmluibuild v0.0.0-20220927022001-8b50d03c4abf
github.com/kr/fs v0.1.0 // indirect
github.com/mattn/go-ieproxy v0.0.1 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect

2
go.sum
View File

@@ -401,6 +401,8 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxv
github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
github.com/kopia/htmluibuild v0.0.0-20220909025317-0e48dcdc4db4 h1:rfylAI7XtcqMXgcVANjHfSBZYdesDBptqP4z6Nup2wA=
github.com/kopia/htmluibuild v0.0.0-20220909025317-0e48dcdc4db4/go.mod h1:eWer4rx9P8lJo2eKc+Q7AZ1dE1x1hJNdkbDFPzMu1Hw=
github.com/kopia/htmluibuild v0.0.0-20220927022001-8b50d03c4abf h1:eW4FHyXJXvyGGXkr+kBDVAMfFSbLAuwDvVTrTLYPLKg=
github.com/kopia/htmluibuild v0.0.0-20220927022001-8b50d03c4abf/go.mod h1:eWer4rx9P8lJo2eKc+Q7AZ1dE1x1hJNdkbDFPzMu1Hw=
github.com/kr/fs v0.1.0 h1:Jskdu9ieNAYnjxsi0LbQp1ulIKZV1LAFgK1tWhpZgl8=
github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg=
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=

45
icons/convert.sh Executable file
View File

@@ -0,0 +1,45 @@
#!/bin/bash
# create various resolutions from source 1024x1024 PNG
set -e
make_icns() {
source=$1
output=$2
mkdir MyIcon.iconset
sips -z 16 16 $source --out MyIcon.iconset/icon_16x16.png
sips -z 32 32 $source --out MyIcon.iconset/icon_16x16@2x.png
sips -z 32 32 $source --out MyIcon.iconset/icon_32x32.png
sips -z 64 64 $source --out MyIcon.iconset/icon_32x32@2x.png
sips -z 128 128 $source --out MyIcon.iconset/icon_128x128.png
sips -z 256 256 $source --out MyIcon.iconset/icon_128x128@2x.png
sips -z 256 256 $source --out MyIcon.iconset/icon_256x256.png
sips -z 512 512 $source --out MyIcon.iconset/icon_256x256@2x.png
sips -z 512 512 $source --out MyIcon.iconset/icon_512x512.png
cp $source MyIcon.iconset/icon_512x512@2x.png
iconutil -c icns MyIcon.iconset
rm -R MyIcon.iconset
mv MyIcon.icns $output
}
make_ico() {
source=$1
output=$2
convert $source -define icon:auto-resize="256,128,96,64,48,32,16" $output
}
# macOS icon
make_icns kopia-app-dark-1024.png ../app/assets/icon.icns
# Windows icon
make_ico kopia-app-dark-1024.png ../app/assets/icon.ico
# macOS tray icon
sips -z 20 28 ../app/resources/mac/icons/kopia-tray@2x.png --out ../app/resources/mac/icons/kopia-tray.png
# Windows tray icon
convert kopia-outline-win-tray.png -define icon:auto-resize="32,16" ../app/resources/win/icons/kopia-tray.ico
# site
cp kopia-white.svg ../site/assets/icons/logo.svg

BIN
icons/kopia-1024.png Normal file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
icons/kopia-app-1024.png Normal file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

74
icons/kopia-app-1024.svg Normal file
View File

@@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.2"
viewBox="0 0 1024 1024"
width="1024"
height="1024"
id="svg7"
sodipodi:docname="kopia-app-1024.svg"
inkscape:version="1.2.1 (9c6d41e, 2022-07-14)"
inkscape:export-filename="kopia-app-1024.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs11"><linearGradient
inkscape:collect="always"
id="linearGradient918"><stop
style="stop-color:#2f80ff;stop-opacity:1;"
offset="0"
id="stop914" /><stop
style="stop-color:#5c91ff;stop-opacity:1;"
offset="1"
id="stop916" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient918"
id="linearGradient920"
x1="157.25082"
y1="502.64564"
x2="864.07942"
y2="502.64564"
gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="1.0961462"
inkscape:cx="453.40666"
inkscape:cy="534.14407"
inkscape:window-width="1487"
inkscape:window-height="801"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="svg7" /><title
id="title2">kopia-svg</title><style
id="style4">
.s0 { fill: #2a7fff }
</style><rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:57.4916;stroke-opacity:1"
id="rect1806"
width="827.68762"
height="834.12457"
x="97.742363"
y="94.200066"
ry="185.33031" /><path
id="Shape 1"
class="s0"
d="m 384.25012,390.83953 c 115.45173,-214.82252 413.93672,-85.929 388.59367,105.97913 123.89942,17.18583 123.89942,226.2797 -14.07945,226.2797 -33.79076,2.86436 -141.31427,2.86436 -141.31427,2.86436 v -91.6576 L 676.58392,571.29049 575.73104,387.97528 467.8904,571.29049 l 61.9497,63.01463 v 91.6576 H 274.43016 c -132.34712,0 -171.76968,-220.55113 -16.8954,-257.78697 -5.63178,-51.55744 53.50205,-103.11487 123.89944,-77.33617 z"
style="fill:url(#linearGradient920);fill-opacity:1;stroke:#000000;stroke-width:0.861;stroke-linejoin:round;stroke-dasharray:none"
sodipodi:nodetypes="ccccccccccsccc" /><metadata
id="metadata1000"><rdf:RDF><cc:Work
rdf:about=""><dc:title>kopia-svg</dc:title></cc:Work></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.2"
viewBox="0 0 1024 1024"
width="1024"
height="1024"
id="svg7"
sodipodi:docname="kopia-dark-app-1024.svg"
inkscape:version="1.2.1 (9c6d41e, 2022-07-14)"
inkscape:export-filename="kopia-app-dark-1024.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs11"><linearGradient
id="linearGradient2918"
inkscape:swatch="solid"><stop
style="stop-color:#0b0001;stop-opacity:1;"
offset="0"
id="stop2916" /></linearGradient></defs><sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.5821365"
inkscape:cx="582.33765"
inkscape:cy="435.46488"
inkscape:window-width="1487"
inkscape:window-height="801"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="svg7" /><title
id="title2">kopia-svg</title><style
id="style4">
.s0 { fill: #2a7fff }
</style><rect
style="fill:#3768b9;fill-opacity:1;stroke:#0b2228;stroke-width:5;stroke-opacity:0.44709897;stroke-dasharray:none"
id="rect1806"
width="827.68762"
height="834.12457"
x="97.742363"
y="94.200066"
ry="185.33031" /><path
id="Shape 1"
class="s0"
d="m 384.25012,390.83953 c 115.45173,-214.82252 413.93672,-85.929 388.59367,105.97913 123.89942,17.18583 123.89942,226.2797 -14.07945,226.2797 -33.79076,2.86436 -141.31427,2.86436 -141.31427,2.86436 v -91.6576 L 676.58392,571.29049 575.73104,387.97528 467.8904,571.29049 l 61.9497,63.01463 v 91.6576 H 274.43016 c -132.34712,0 -171.76968,-220.55113 -16.8954,-257.78697 -5.63178,-51.55744 53.50205,-103.11487 123.89944,-77.33617 z"
style="fill:#e4f6fe;fill-opacity:1;stroke:#ffffff;stroke-width:3.061;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccsccc" /><metadata
id="metadata1000"><rdf:RDF><cc:Work
rdf:about=""><dc:title>kopia-svg</dc:title></cc:Work></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.8 KiB

View File

Binary file not shown.

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 57 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -1,123 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
height="41"
viewBox="0 0 12.700008 10.847925"
version="1.1"
id="svg4919"
inkscape:version="1.0beta1 (32d4812, 2019-09-19)"
sodipodi:docname="kopia-flat-outline-win.svg"
inkscape:export-filename="/Users/jarek/Projects/Kopia/icons/kopia-flat-outline-512.png"
inkscape:export-xdpi="1044.7189"
inkscape:export-ydpi="1044.7189">
<defs
id="defs4913">
<linearGradient
osb:paint="gradient"
id="linearGradient4578">
<stop
id="stop4574"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop4576"
offset="1"
style="stop-color:#0066ff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2345"
osb:paint="gradient">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop2341" />
<stop
style="stop-color:#0066ff;stop-opacity:0;"
offset="1"
id="stop2343" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:pagecheckerboard="false"
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.954549"
inkscape:cx="41.563439"
inkscape:cy="26.229304"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1440"
inkscape:window-height="802"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="0"
units="px"
width="64px"
showguides="false"
inkscape:snap-text-baseline="true"
inkscape:document-rotation="0" />
<metadata
id="metadata4916">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-280.06662)">
<g
id="g886"
transform="matrix(0.91418905,0,0,1.0238481,2.4854467,-12.30669)"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.57724;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;stop-opacity:1"
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
inkscape:export-xdpi="9.5134048"
inkscape:export-ydpi="9.5134048">
<path
inkscape:export-ydpi="96"
inkscape:export-xdpi="96"
inkscape:connector-curvature="0"
id="rect4799-3"
d="m 3.68292,285.81102 a 3.7143042,4.7607871 0 0 1 3.2394206,2.43625 2.978621,3.8178297 0 0 1 0.9055101,-0.18217 2.978621,3.8178297 0 0 1 2.9786373,3.8177 2.978621,3.8178297 0 0 1 -2.6197318,3.78698 v 0.0308 H 7.8278507 0.29155891 v -10e-4 a 2.3864853,3.0588632 0 0 1 -0.31315577,0.0298 2.3864853,3.0588632 0 0 1 -2.38640124,-3.05891 2.3864853,3.0588632 0 0 1 2.38640124,-3.05891 2.3864853,3.0588632 0 0 1 0.07019771,0.002 3.7143042,4.7607871 0 0 1 3.63432355,-3.80321 z"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.402099;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(0.10137475,0.13378155,-0.08156495,0.16627331,4.8397104,271.89396)"
id="g10"
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.68248179;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;stop-opacity:1"
inkscape:export-xdpi="9.5134048"
inkscape:export-ydpi="9.5134048"
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png">
<g
id="g883"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.68248179;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.68248179;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
id="path8"
d="m 52.475497,57.904193 2.118969,-4.700554 c 0.258337,-0.573742 0.794452,-1.452559 1.188918,-1.952342 l 2.189741,-5.099694 c 0.171725,-0.02042 0.344927,-0.09102 0.466732,-0.194079 l 0.630265,-0.546749 c 0.243632,-0.206882 0.608139,-0.67108 0.736916,-0.95794 l 0.31965,-0.665782 c 0.05776,-0.130508 0.08615,-0.298735 0.08241,-0.463714 l 4.176599,-5.28537 c 0.206096,0.05958 0.452753,0.01539 0.625077,-0.131566 l 0.268535,-0.229977 c 0.242872,-0.207632 0.555873,-0.62096 0.686215,-0.907865 l 0.122894,-0.272803 c 0.08361,-0.186032 0.07645,-0.420341 0.0074,-0.621993 L 81.942439,16.980848 c 0.394443,-0.499011 -3.499736,2.827825 -4.003591,3.221242 L 63.158733,32.961034 c 0,0 -0.470077,-0.09048 -0.672002,2.42e-4 l -0.315191,0.142618 c -0.289847,0.131081 -0.692958,0.446742 -0.889398,0.696224 l -0.197198,0.248733 c -0.137168,0.173703 -0.173217,0.41621 -0.114352,0.619702 l -5.260067,4.10647 c -0.211006,-0.0255 -0.444855,0.0083 -0.614306,0.0842 l -0.765391,0.385589 c -0.289846,0.131081 -0.709835,0.462661 -0.906298,0.712915 l -0.479332,0.595593 c -0.106358,0.135778 -0.173913,0.333686 -0.180977,0.520579 l -4.899926,2.25652 c -0.503833,0.392646 -1.390045,0.927547 -1.970452,1.187416 l -5.715688,2.569121 c -0.579625,0.259846 -0.824906,1.000611 -0.618168,1.569324 0,0 0.927303,2.582054 3.611972,5.535017 l -2.71371,2.679373 c -0.644457,-0.484249 -0.865773,-0.265673 -1.130524,-0.0049 l -0.05151,0.05087 c -0.264752,0.260725 -0.48609,0.480073 0.0055,1.114567 l -3.777657,3.730903 c -0.643676,-0.484272 -0.865751,-0.266445 -1.129765,-0.0042 l -0.05148,0.0501 c -0.264751,0.260725 -0.485307,0.480051 0.0055,1.11534 L 22.80456,74.18879 c -0.113497,0.112842 1.950106,1.40756 1.950106,1.40756 l 11.27516,-10.990626 c 0.645262,0.483455 0.865773,0.265673 1.129742,0.005 l 0.05148,-0.0501 c 0.264774,-0.261497 0.486089,-0.480073 -0.0054,-1.116112 l 3.777612,-3.729358 c 0.643676,0.484272 0.865796,0.264901 1.129765,0.0042 l 0.05148,-0.0501 c 0.264797,-0.262269 0.48609,-0.480074 -0.0055,-1.11534 l 2.723413,-2.690456 c 3.01624,2.625495 6.011328,2.658358 6.011328,2.658358 0.577766,0.201527 1.322586,-0.04231 1.581751,-0.617623 z"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.9 KiB

View File

@@ -1,133 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="114.26369"
inkscape:export-xdpi="114.26369"
inkscape:export-filename="/Users/jarek/Projects/Kopia/icons/kopia-mac-tray@2x.png"
sodipodi:docname="kopia-flat-mono.svg"
inkscape:version="1.0beta1 (32d4812, 2019-09-19)"
id="svg4919"
version="1.1"
viewBox="0 0 12.700008 8.2020885"
height="31"
width="48">
<defs
id="defs4913">
<linearGradient
id="linearGradient4578"
osb:paint="gradient">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop4574" />
<stop
style="stop-color:#0066ff;stop-opacity:0;"
offset="1"
id="stop4576" />
</linearGradient>
<linearGradient
osb:paint="gradient"
id="linearGradient2345">
<stop
id="stop2341"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop2343"
offset="1"
style="stop-color:#0066ff;stop-opacity:0;" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:document-rotation="0"
inkscape:snap-text-baseline="true"
showguides="false"
width="64px"
units="px"
inkscape:window-maximized="0"
inkscape:window-y="23"
inkscape:window-x="0"
inkscape:window-height="800"
inkscape:window-width="1440"
showgrid="false"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="18.072776"
inkscape:cx="27.83667"
inkscape:zoom="13.058315"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:pagecheckerboard="false" />
<metadata
id="metadata4916">
<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>
<g
transform="translate(0,-280.06662)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
inkscape:export-ydpi="9.5134048"
inkscape:export-xdpi="9.5134048"
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
style="opacity:1;fill:#f9f9f9;fill-opacity:1;stroke:#000000;stroke-width:0.57724;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;stop-opacity:1"
transform="matrix(0.91418905,0,0,0.93666123,2.4854467,12.612219)"
id="g886">
<path
style="fill:#f9f9f9;fill-opacity:1;stroke:#000000;stroke-width:0.365129;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.68292,285.81098 a 3.7143042,3.9255907 0 0 1 3.2394206,2.00885 2.978621,3.1480586 0 0 1 0.9055101,-0.15021 2.978621,3.1480586 0 0 1 2.9786373,3.14795 2.978621,3.1480586 0 0 1 -2.6197318,3.12262 v 0.0254 H 7.8278507 0.29155891 v -8.5e-4 a 2.3864853,2.5222394 0 0 1 -0.31315577,0.0246 2.3864853,2.5222394 0 0 1 -2.38640124,-2.52228 2.3864853,2.5222394 0 0 1 2.38640124,-2.52228 2.3864853,2.5222394 0 0 1 0.07019771,0.002 3.7143042,3.9255907 0 0 1 3.63432355,-3.136 z"
id="rect4799-3"
inkscape:connector-curvature="0"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
</g>
<g
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
inkscape:export-ydpi="9.5134048"
inkscape:export-xdpi="9.5134048"
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.280131;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;stop-opacity:1"
id="g10"
transform="matrix(0.10137475,0.13378155,-0.08156495,0.16627331,4.8397104,270.30645)">
<g
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.280131;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g883">
<path
inkscape:connector-curvature="0"
d="m 52.475497,57.904193 2.118969,-4.700554 c 0.258337,-0.573742 0.794452,-1.452559 1.188918,-1.952342 l 2.189741,-5.099694 c 0.171725,-0.02042 0.344927,-0.09102 0.466732,-0.194079 l 0.630265,-0.546749 c 0.243632,-0.206882 0.608139,-0.67108 0.736916,-0.95794 l 0.31965,-0.665782 c 0.05776,-0.130508 0.08615,-0.298735 0.08241,-0.463714 l 4.176599,-5.28537 c 0.206096,0.05958 0.452753,0.01539 0.625077,-0.131566 l 0.268535,-0.229977 c 0.242872,-0.207632 0.555873,-0.62096 0.686215,-0.907865 l 0.122894,-0.272803 c 0.08361,-0.186032 0.07645,-0.420341 0.0074,-0.621993 L 81.942439,16.980848 c 0.394443,-0.499011 -3.499736,2.827825 -4.003591,3.221242 L 63.158733,32.961034 c 0,0 -0.470077,-0.09048 -0.672002,2.42e-4 l -0.315191,0.142618 c -0.289847,0.131081 -0.692958,0.446742 -0.889398,0.696224 l -0.197198,0.248733 c -0.137168,0.173703 -0.173217,0.41621 -0.114352,0.619702 l -5.260067,4.10647 c -0.211006,-0.0255 -0.444855,0.0083 -0.614306,0.0842 l -0.765391,0.385589 c -0.289846,0.131081 -0.709835,0.462661 -0.906298,0.712915 l -0.479332,0.595593 c -0.106358,0.135778 -0.173913,0.333686 -0.180977,0.520579 l -4.899926,2.25652 c -0.503833,0.392646 -1.390045,0.927547 -1.970452,1.187416 l -5.715688,2.569121 c -0.579625,0.259846 -0.824906,1.000611 -0.618168,1.569324 0,0 0.927303,2.582054 3.611972,5.535017 l -2.71371,2.679373 c -0.644457,-0.484249 -0.865773,-0.265673 -1.130524,-0.0049 l -0.05151,0.05087 c -0.264752,0.260725 -0.48609,0.480073 0.0055,1.114567 l -3.777657,3.730903 c -0.643676,-0.484272 -0.865751,-0.266445 -1.129765,-0.0042 l -0.05148,0.0501 c -0.264751,0.260725 -0.485307,0.480051 0.0055,1.11534 L 22.80456,74.18879 c -0.113497,0.112842 1.950106,1.40756 1.950106,1.40756 l 11.27516,-10.990626 c 0.645262,0.483455 0.865773,0.265673 1.129742,0.005 l 0.05148,-0.0501 c 0.264774,-0.261497 0.486089,-0.480073 -0.0054,-1.116112 l 3.777612,-3.729358 c 0.643676,0.484272 0.865796,0.264901 1.129765,0.0042 l 0.05148,-0.0501 c 0.264797,-0.262269 0.48609,-0.480074 -0.0055,-1.11534 l 2.723413,-2.690456 c 3.01624,2.625495 6.011328,2.658358 6.011328,2.658358 0.577766,0.201527 1.322586,-0.04231 1.581751,-0.617623 z"
id="path8"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.386847;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
<ellipse
inkscape:export-ydpi="9.5134048"
inkscape:export-xdpi="9.5134048"
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
ry="0.071419567"
rx="0.075612754"
cy="286.46222"
cx="8.8220901"
id="path876"
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#00ff00;stroke-width:0.00833572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;stop-opacity:1" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.3 KiB

View File

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 KiB

View File

@@ -1,126 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="1024"
inkscape:export-xdpi="1024"
inkscape:export-filename="/Users/jarek/Projects/Kopia/icons/kopia-flat-512.png"
sodipodi:docname="kopia-flat.svg"
inkscape:version="1.0beta1 (32d4812, 2019-09-19)"
id="svg4919"
version="1.1"
viewBox="0 0 12.700008 8.2020885"
height="31"
width="48">
<defs
id="defs4913">
<linearGradient
id="linearGradient4578"
osb:paint="gradient">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop4574" />
<stop
style="stop-color:#0066ff;stop-opacity:0;"
offset="1"
id="stop4576" />
</linearGradient>
<linearGradient
osb:paint="gradient"
id="linearGradient2345">
<stop
id="stop2341"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop2343"
offset="1"
style="stop-color:#0066ff;stop-opacity:0;" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:document-rotation="0"
inkscape:snap-text-baseline="true"
showguides="false"
width="64px"
units="px"
inkscape:window-maximized="0"
inkscape:window-y="23"
inkscape:window-x="0"
inkscape:window-height="803"
inkscape:window-width="1440"
showgrid="false"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="22.251492"
inkscape:cx="28.062567"
inkscape:zoom="15.177968"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:pagecheckerboard="false" />
<metadata
id="metadata4916">
<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>
<g
transform="translate(0,-280.06662)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
id="g862">
<g
id="g886"
transform="matrix(0.91418905,0,0,0.93666123,2.4854467,12.612219)"
style="opacity:1;fill:#2a7fff;fill-opacity:1;stroke:none;stroke-width:0.57724;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;stop-opacity:1"
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
inkscape:export-xdpi="9.5134048"
inkscape:export-ydpi="9.5134048">
<path
inkscape:export-ydpi="96"
inkscape:export-xdpi="96"
inkscape:connector-curvature="0"
id="rect4799-3"
d="m 3.68292,285.81098 a 3.7143042,3.9255907 0 0 1 3.2394206,2.00885 2.978621,3.1480586 0 0 1 0.9055101,-0.15021 2.978621,3.1480586 0 0 1 2.9786373,3.14795 2.978621,3.1480586 0 0 1 -2.6197318,3.12262 v 0.0254 H 7.8278507 0.29155891 v -8.5e-4 a 2.3864853,2.5222394 0 0 1 -0.31315577,0.0246 2.3864853,2.5222394 0 0 1 -2.38640124,-2.52228 2.3864853,2.5222394 0 0 1 2.38640124,-2.52228 2.3864853,2.5222394 0 0 1 0.07019771,0.002 3.7143042,3.9255907 0 0 1 3.63432355,-3.136 z"
style="fill:#2a7fff;fill-opacity:1;stroke:none;stroke-width:0.365129;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(0.10137475,0.13378155,-0.08156495,0.16627331,4.8397104,270.30645)"
id="g10"
style="opacity:1;fill:#e4e4e4;fill-opacity:1;stroke:none;stroke-width:0.280131;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;stop-opacity:1"
inkscape:export-xdpi="9.5134048"
inkscape:export-ydpi="9.5134048"
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png">
<g
id="g883"
style="fill:#e4e4e4;fill-opacity:1;stroke:none;stroke-width:0.280131;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#e4e4e4;fill-opacity:1;stroke:none;stroke-width:0.386847;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
id="path8"
d="m 52.475497,57.904193 2.118969,-4.700554 c 0.258337,-0.573742 0.794452,-1.452559 1.188918,-1.952342 l 2.189741,-5.099694 c 0.171725,-0.02042 0.344927,-0.09102 0.466732,-0.194079 l 0.630265,-0.546749 c 0.243632,-0.206882 0.608139,-0.67108 0.736916,-0.95794 l 0.31965,-0.665782 c 0.05776,-0.130508 0.08615,-0.298735 0.08241,-0.463714 l 4.176599,-5.28537 c 0.206096,0.05958 0.452753,0.01539 0.625077,-0.131566 l 0.268535,-0.229977 c 0.242872,-0.207632 0.555873,-0.62096 0.686215,-0.907865 l 0.122894,-0.272803 c 0.08361,-0.186032 0.07645,-0.420341 0.0074,-0.621993 L 81.942439,16.980848 c 0.394443,-0.499011 -3.499736,2.827825 -4.003591,3.221242 L 63.158733,32.961034 c 0,0 -0.470077,-0.09048 -0.672002,2.42e-4 l -0.315191,0.142618 c -0.289847,0.131081 -0.692958,0.446742 -0.889398,0.696224 l -0.197198,0.248733 c -0.137168,0.173703 -0.173217,0.41621 -0.114352,0.619702 l -5.260067,4.10647 c -0.211006,-0.0255 -0.444855,0.0083 -0.614306,0.0842 l -0.765391,0.385589 c -0.289846,0.131081 -0.709835,0.462661 -0.906298,0.712915 l -0.479332,0.595593 c -0.106358,0.135778 -0.173913,0.333686 -0.180977,0.520579 l -4.899926,2.25652 c -0.503833,0.392646 -1.390045,0.927547 -1.970452,1.187416 l -5.715688,2.569121 c -0.579625,0.259846 -0.824906,1.000611 -0.618168,1.569324 0,0 0.927303,2.582054 3.611972,5.535017 l -2.71371,2.679373 c -0.644457,-0.484249 -0.865773,-0.265673 -1.130524,-0.0049 l -0.05151,0.05087 c -0.264752,0.260725 -0.48609,0.480073 0.0055,1.114567 l -3.777657,3.730903 c -0.643676,-0.484272 -0.865751,-0.266445 -1.129765,-0.0042 l -0.05148,0.0501 c -0.264751,0.260725 -0.485307,0.480051 0.0055,1.11534 L 22.80456,74.18879 c -0.113497,0.112842 1.950106,1.40756 1.950106,1.40756 l 11.27516,-10.990626 c 0.645262,0.483455 0.865773,0.265673 1.129742,0.005 l 0.05148,-0.0501 c 0.264774,-0.261497 0.486089,-0.480073 -0.0054,-1.116112 l 3.777612,-3.729358 c 0.643676,0.484272 0.865796,0.264901 1.129765,0.0042 l 0.05148,-0.0501 c 0.264797,-0.262269 0.48609,-0.480074 -0.0055,-1.11534 l 2.723413,-2.690456 c 3.01624,2.625495 6.011328,2.658358 6.011328,2.658358 0.577766,0.201527 1.322586,-0.04231 1.581751,-0.617623 z"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.9 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 928 B

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.2"
viewBox="0 0 1024 1024"
width="1024"
height="1024"
id="svg7"
sodipodi:docname="kopia-outline.svg"
inkscape:version="1.2.1 (9c6d41e, 2022-07-14)"
inkscape:export-filename="kopia-outline.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs11" />
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.35856122"
inkscape:cx="654.00269"
inkscape:cy="461.56693"
inkscape:window-width="1512"
inkscape:window-height="667"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="svg7" />
<title
id="title2">kopia-flat-outline-svg</title>
<style
id="style4">
.s0 { fill: #ffffff;stroke: #000000;stroke-width: .3 }
</style>
<metadata
id="metadata131">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>kopia-flat-outline-svg</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="Shape 1-1"
class="s0"
d="M 358.04923,339.39357 C 499.7105,64.986861 865.95665,229.63089 834.86031,474.76756 c 152.02683,21.95259 152.02683,289.04171 -17.27574,289.04171 -41.46179,3.65884 -173.39498,3.65884 -173.39498,3.65884 V 650.38792 L 716.74784,569.89526 592.99962,335.73488 460.67731,569.89526 536.69065,650.38792 V 767.46811 H 223.29826 c -162.392193,0 -210.764344,-281.72424 -20.73094,-329.28798 -6.9103,-65.85766 65.64793,-131.7153 152.02674,-98.7865 z"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:28.5255;stroke-linejoin:round;stroke-dasharray:none"
sodipodi:nodetypes="ccccccccccsccc" />
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.2"
viewBox="0 0 56 40"
width="56"
height="40"
id="svg7"
sodipodi:docname="kopia-outline-mac-tray.svg"
inkscape:version="1.2.1 (9c6d41e, 2022-07-14)"
inkscape:export-filename="../app/resources/mac/icons/kopia-tray@2x.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs11" />
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="9.2580367"
inkscape:cx="15.392032"
inkscape:cy="23.277073"
inkscape:window-width="1512"
inkscape:window-height="667"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="svg7" />
<title
id="title2">kopia-flat-outline-svg</title>
<style
id="style4">
.s0 { fill: #ffffff;stroke: #000000;stroke-width: .3 }
</style>
<metadata
id="metadata131">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>kopia-flat-outline-svg</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="Shape 1-1"
class="s0"
d="M 18.385204,11.430586 C 27.14124,-6.4540195 49.778789,4.2767401 47.856738,20.253655 57.253466,21.68443 57.253466,39.092102 46.788934,39.092102 44.226192,39.33057 36.071448,39.33057 36.071448,39.33057 V 31.699808 L 40.55625,26.453651 32.907409,11.19213 24.728611,26.453651 29.42697,31.699808 V 39.33057 H 10.056292 C 0.0188829,39.33057 -2.9709838,20.969049 8.7749185,17.869052 8.3477946,13.576745 12.832595,9.2844387 18.171639,11.430586 Z"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.81053;stroke-linejoin:round;stroke-dasharray:none"
sodipodi:nodetypes="ccccccccccsccc" />
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.2"
viewBox="0 0 32 32"
width="32"
height="32"
id="svg7"
sodipodi:docname="kopia-outline-win-tray.svg"
inkscape:version="1.2.1 (9c6d41e, 2022-07-14)"
inkscape:export-filename="kopia-outline-win-tray.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs11" />
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="4.0712247"
inkscape:cx="-21.246678"
inkscape:cy="26.896083"
inkscape:window-width="1512"
inkscape:window-height="667"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="svg7" />
<title
id="title2">kopia-flat-outline-svg</title>
<style
id="style4">
.s0 { fill: #ffffff;stroke: #000000;stroke-width: .3 }
</style>
<metadata
id="metadata131">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>kopia-flat-outline-svg</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="Shape 1-1"
class="s0"
d="m 10.71835,11.16046 c 5.010062,-9.6271988 17.9629,-3.8508816 16.863134,4.749415 5.376654,0.77018 5.376654,10.140646 -0.610981,10.140646 -1.466359,0.128367 -6.132371,0.128367 -6.132371,0.128367 v -4.107603 l 2.56613,-2.823982 -4.376542,-8.215203 -4.679775,8.215203 2.688325,2.823982 v 4.107603 H 5.9526816 c -5.74324235,0 -7.4539955,-9.883919 -0.7331812,-11.552633 -0.2443929,-2.310529 2.3217363,-4.621057 5.3766516,-3.465795 z"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.00482;stroke-linejoin:round;stroke-dasharray:none"
sodipodi:nodetypes="ccccccccccsccc" />
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

50
icons/kopia-white.svg Normal file
View File

@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.2"
viewBox="0 0 68.505156 45.063541"
width="68.505157"
height="45.063541"
id="svg7"
sodipodi:docname="kopia-white.svg"
inkscape:version="1.2.1 (9c6d41e, 2022-07-14)"
inkscape:export-filename="kopia-app-1024.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs11" /><sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="23"
inkscape:cy="125.5"
inkscape:window-width="1487"
inkscape:window-height="801"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="svg7" /><title
id="title2">kopia-svg</title><style
id="style4">
.s0 { fill: #2a7fff }
</style><path
id="Shape 1"
class="s0"
d="M 22.000556,11.250997 C 33.190028,-10.42371 62.11891,2.5811144 59.662682,21.943853 c 12.008216,1.733979 12.008216,22.830688 -1.364569,22.830688 -3.274965,0.289001 -13.696041,0.289001 -13.696041,0.289001 v -9.247873 l 5.731197,-6.357916 -9.774565,-18.495748 -10.451812,18.495748 6.004106,6.357916 v 9.247873 H 11.356911 c -12.826958,0 -16.6477545,-22.252699 -1.637487,-26.00964 C 9.1735974,13.851968 14.904791,8.6500365 21.72764,11.251001 Z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.312552;stroke-linejoin:round;stroke-dasharray:none"
sodipodi:nodetypes="ccccccccccsccc" /><metadata
id="metadata1000"><rdf:RDF><cc:Work
rdf:about=""><dc:title>kopia-svg</dc:title></cc:Work></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
icons/kopia-win-1024.png Normal file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

68
icons/kopia-win-1024.svg Normal file
View File

@@ -0,0 +1,68 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.2"
viewBox="0 0 1024 1024"
width="1024"
height="1024"
id="svg7"
sodipodi:docname="kopia-win-1024.svg"
inkscape:version="1.2.1 (9c6d41e, 2022-07-14)"
inkscape:export-filename="kopia-win-1024.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs11"><linearGradient
inkscape:collect="always"
id="linearGradient918"><stop
style="stop-color:#2f80ff;stop-opacity:1;"
offset="0"
id="stop914" /><stop
style="stop-color:#5c91ff;stop-opacity:1;"
offset="1"
id="stop916" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient918"
id="linearGradient920"
x1="157.25082"
y1="502.64564"
x2="864.07942"
y2="502.64564"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4215284,0,0,1.3843699,-213.10087,-201.00504)" /></defs><sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.64832639"
inkscape:cx="516.71504"
inkscape:cy="480.46787"
inkscape:window-width="1487"
inkscape:window-height="801"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="svg7" /><title
id="title2">kopia-svg</title><style
id="style4">
.s0 { fill: #2a7fff }
</style><path
id="Shape 1"
class="s0"
d="m 333.12158,340.06143 c 164.1179,-297.393823 588.4228,-118.95751 552.39697,146.7143 176.12655,23.79155 176.12655,313.25479 -20.01437,313.25479 -48.03454,3.96534 -200.88226,3.96534 -200.88226,3.96534 V 677.10784 L 748.68236,589.87229 605.31713,336.09625 452.0186,589.87229 540.08186,677.10784 V 803.99586 H 177.00938 c -188.135195,0 -244.175479,-305.32433 -24.01729,-356.87251 -8.00573,-71.37456 76.05468,-142.7491 176.12657,-107.06185 z"
style="fill:url(#linearGradient920);fill-opacity:1;stroke:#000000;stroke-width:1.20783;stroke-linejoin:round;stroke-dasharray:none"
sodipodi:nodetypes="ccccccccccsccc" /><metadata
id="metadata1000"><rdf:RDF><cc:Work
rdf:about=""><dc:title>kopia-svg</dc:title></cc:Work></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
icons/kopia.png Normal file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 609 B

View File

@@ -1,251 +1,50 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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="96"
version="1.2"
viewBox="0 0 99.999998 64"
width="100"
height="64"
viewBox="0 0 25.400013 16.933339"
version="1.1"
id="svg4919"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
id="svg7"
sodipodi:docname="kopia.svg"
inkscape:export-filename="/Users/jarek/Projects/kopia-ui/resources/icon.png"
inkscape:version="1.2.1 (9c6d41e, 2022-07-14)"
inkscape:export-filename="kopia-app-1024.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96">
<defs
id="defs4913">
<linearGradient
id="linearGradient4646"
inkscape:collect="always">
<stop
id="stop4642"
offset="0"
style="stop-color:#0036ff;stop-opacity:1" />
<stop
id="stop4644"
offset="1"
style="stop-color:#46b6ff;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient4640"
inkscape:collect="always">
<stop
id="stop4636"
offset="0"
style="stop-color:#0036ff;stop-opacity:1" />
<stop
id="stop4638"
offset="1"
style="stop-color:#00aae0;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4592">
<stop
style="stop-color:#0066ff;stop-opacity:1;"
offset="0"
id="stop4588" />
<stop
style="stop-color:#ffd42a;stop-opacity:1"
offset="1"
id="stop4590" />
</linearGradient>
<linearGradient
osb:paint="gradient"
id="linearGradient4578">
<stop
id="stop4574"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop4576"
offset="1"
style="stop-color:#0066ff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2345"
osb:paint="gradient">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop2341" />
<stop
style="stop-color:#0066ff;stop-opacity:0;"
offset="1"
id="stop2343" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4592"
id="radialGradient4562"
cx="3.9366412"
cy="287.79721"
fx="3.9366412"
fy="287.79721"
r="6.7202239"
gradientTransform="matrix(1.6842501,0.95244793,-0.73311785,1.1017685,211.03954,-32.002776)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4592"
id="radialGradient4594"
cx="4.199245"
cy="289.90005"
fx="4.199245"
fy="289.90005"
r="6.7202239"
gradientTransform="matrix(1,0,0,0.62531561,0,108.62103)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4640"
id="radialGradient4596"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.62531561,0,108.62103)"
cx="-0.92879403"
cy="295.07019"
fx="-0.92879403"
fy="295.07019"
r="6.7202239" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4646"
id="radialGradient4634"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.6842501,0.95244793,-0.73311785,1.1017685,211.03954,-32.002776)"
cx="1.8884102"
cy="293.47107"
fx="1.8884102"
fy="293.47107"
r="6.7202239" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4640"
id="radialGradient2354"
cx="52.385254"
cy="46.281757"
fx="52.385254"
fy="46.281757"
r="29.724993"
gradientTransform="matrix(1,0,0,0.99215466,0,0.36309588)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4640"
id="radialGradient2356"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.21040374,-0.7569894,0.862133,-0.8802772,23.506279,126.67761)"
cx="52.385254"
cy="46.281757"
fx="52.385254"
fy="46.281757"
r="29.724993" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4640"
id="radialGradient2360"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.99215466,0,0.36309588)"
cx="52.385254"
cy="46.281757"
fx="52.385254"
fy="46.281757"
r="29.724993" />
</defs>
<sodipodi:namedview
id="base"
inkscape:export-ydpi="96"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs11" /><sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.2988035"
inkscape:cx="45.730628"
inkscape:cy="13.556193"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="942"
inkscape:zoom="0.72913551"
inkscape:cx="185.15077"
inkscape:cy="191.32246"
inkscape:window-width="1487"
inkscape:window-height="801"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-maximized="1"
units="px"
width="64px"
showguides="false"
inkscape:snap-text-baseline="true" />
<metadata
id="metadata4916">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-280.06662)">
<g
id="g849"
transform="matrix(0.09299418,0,0,0.09299418,-0.02106803,275.16005)">
<g
inkscape:export-ydpi="9.5134048"
inkscape:export-xdpi="9.5134048"
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
style="fill:url(#radialGradient4562);fill-opacity:1;stroke:url(#radialGradient4594);stroke-width:0.57724029;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
transform="matrix(19.66121,0,0,20.144513,53.912845,-5697.4527)"
id="g886">
<path
style="fill:url(#radialGradient4634);fill-opacity:1;stroke:url(#radialGradient4596);stroke-width:0.36512911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.68292,285.81098 a 3.7143042,3.9255907 0 0 1 3.2394206,2.00885 2.978621,3.1480586 0 0 1 0.9055101,-0.15021 2.978621,3.1480586 0 0 1 2.9786373,3.14795 2.978621,3.1480586 0 0 1 -2.6197318,3.12262 v 0.0254 H 7.8278507 0.29155891 v -8.5e-4 a 2.3864853,2.5222394 0 0 1 -0.31315577,0.0246 2.3864853,2.5222394 0 0 1 -2.38640124,-2.52228 2.3864853,2.5222394 0 0 1 2.38640124,-2.52228 2.3864853,2.5222394 0 0 1 0.07019771,0.002 3.7143042,3.9255907 0 0 1 3.63432355,-3.136 z"
id="rect4799-3"
inkscape:connector-curvature="0"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
</g>
<g
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
inkscape:export-ydpi="9.5134048"
inkscape:export-xdpi="9.5134048"
style="fill:#e4e4e4;fill-opacity:1;stroke:url(#radialGradient2354);stroke-width:0.28013071;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g10"
transform="matrix(2.1802385,2.8772027,-1.7541947,3.575994,104.54534,-155.29438)">
<g
style="fill:#e4e4e4;fill-opacity:1;stroke:url(#radialGradient2360);stroke-width:0.28013071;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g883">
<path
inkscape:connector-curvature="0"
d="m 52.475497,57.904193 2.118969,-4.700554 c 0.258337,-0.573742 0.794452,-1.452559 1.188918,-1.952342 l 2.189741,-5.099694 c 0.171725,-0.02042 0.344927,-0.09102 0.466732,-0.194079 l 0.630265,-0.546749 c 0.243632,-0.206882 0.608139,-0.67108 0.736916,-0.95794 l 0.31965,-0.665782 c 0.05776,-0.130508 0.08615,-0.298735 0.08241,-0.463714 l 4.176599,-5.28537 c 0.206096,0.05958 0.452753,0.01539 0.625077,-0.131566 l 0.268535,-0.229977 c 0.242872,-0.207632 0.555873,-0.62096 0.686215,-0.907865 l 0.122894,-0.272803 c 0.08361,-0.186032 0.07645,-0.420341 0.0074,-0.621993 L 81.942439,16.980848 c 0.394443,-0.499011 -3.499736,2.827825 -4.003591,3.221242 L 63.158733,32.961034 c 0,0 -0.470077,-0.09048 -0.672002,2.42e-4 l -0.315191,0.142618 c -0.289847,0.131081 -0.692958,0.446742 -0.889398,0.696224 l -0.197198,0.248733 c -0.137168,0.173703 -0.173217,0.41621 -0.114352,0.619702 l -5.260067,4.10647 c -0.211006,-0.0255 -0.444855,0.0083 -0.614306,0.0842 l -0.765391,0.385589 c -0.289846,0.131081 -0.709835,0.462661 -0.906298,0.712915 l -0.479332,0.595593 c -0.106358,0.135778 -0.173913,0.333686 -0.180977,0.520579 l -4.899926,2.25652 c -0.503833,0.392646 -1.390045,0.927547 -1.970452,1.187416 l -5.715688,2.569121 c -0.579625,0.259846 -0.824906,1.000611 -0.618168,1.569324 0,0 0.927303,2.582054 3.611972,5.535017 l -2.71371,2.679373 c -0.644457,-0.484249 -0.865773,-0.265673 -1.130524,-0.0049 l -0.05151,0.05087 c -0.264752,0.260725 -0.48609,0.480073 0.0055,1.114567 l -3.777657,3.730903 c -0.643676,-0.484272 -0.865751,-0.266445 -1.129765,-0.0042 l -0.05148,0.0501 c -0.264751,0.260725 -0.485307,0.480051 0.0055,1.11534 L 22.80456,74.18879 c -0.113497,0.112842 1.950106,1.40756 1.950106,1.40756 l 11.27516,-10.990626 c 0.645262,0.483455 0.865773,0.265673 1.129742,0.005 l 0.05148,-0.0501 c 0.264774,-0.261497 0.486089,-0.480073 -0.0054,-1.116112 l 3.777612,-3.729358 c 0.643676,0.484272 0.865796,0.264901 1.129765,0.0042 l 0.05148,-0.0501 c 0.264797,-0.262269 0.48609,-0.480074 -0.0055,-1.11534 l 2.723413,-2.690456 c 3.01624,2.625495 6.011328,2.658358 6.011328,2.658358 0.577766,0.201527 1.322586,-0.04231 1.581751,-0.617623 z"
id="path8"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
style="fill:#e4e4e4;fill-opacity:1;stroke:url(#radialGradient2356);stroke-width:0.38684717;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
<ellipse
inkscape:export-ydpi="9.5134048"
inkscape:export-xdpi="9.5134048"
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
ry="1.5360007"
rx="1.6261826"
cy="192.16341"
cx="190.19328"
id="path876"
style="fill:#b3b3b3;fill-opacity:1;stroke:#00ff00;stroke-width:0.17927414;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</svg>
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="svg7" /><title
id="title2">kopia-svg</title><style
id="style4">
.s0 { fill: #2a7fff }
</style><path
id="Shape 1"
class="s0"
d="M 31.559412,16.139358 C 47.610515,-14.952629 89.10849,3.7025634 85.585075,31.478073 c 17.225575,2.487364 17.225575,32.750223 -1.95745,32.750223 -4.697881,0.414568 -19.646732,0.414568 -19.646732,0.414568 V 51.376951 L 72.202195,42.256632 58.180752,15.724805 43.187811,42.256632 51.800595,51.376951 V 64.642864 H 16.291289 c -18.4000456,0 -23.8809114,-31.921108 -2.348945,-37.310375 -0.782979,-7.462083 7.438319,-14.924163 17.225575,-11.193125 z"
style="fill:#2f80ff;fill-opacity:1;stroke:none;stroke-width:0.448351;stroke-linejoin:round;stroke-dasharray:none"
sodipodi:nodetypes="ccccccccccsccc" /><metadata
id="metadata1000"><rdf:RDF><cc:Work
rdf:about=""><dc:title>kopia-svg</dc:title></cc:Work></rdf:RDF></metadata></svg>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -1,251 +1,50 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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="96"
height="64"
viewBox="0 0 25.400013 16.933339"
version="1.1"
id="svg4919"
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
sodipodi:docname="kopia.svg"
inkscape:export-filename="/Users/jarek/Projects/kopia-ui/resources/icon.png"
version="1.2"
viewBox="0 0 68.505156 45.063541"
width="68.505157"
height="45.063541"
id="svg7"
sodipodi:docname="kopia-white.svg"
inkscape:version="1.2.1 (9c6d41e, 2022-07-14)"
inkscape:export-filename="kopia-app-1024.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96">
<defs
id="defs4913">
<linearGradient
id="linearGradient4646"
inkscape:collect="always">
<stop
id="stop4642"
offset="0"
style="stop-color:#0036ff;stop-opacity:1" />
<stop
id="stop4644"
offset="1"
style="stop-color:#46b6ff;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient4640"
inkscape:collect="always">
<stop
id="stop4636"
offset="0"
style="stop-color:#0036ff;stop-opacity:1" />
<stop
id="stop4638"
offset="1"
style="stop-color:#00aae0;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4592">
<stop
style="stop-color:#0066ff;stop-opacity:1;"
offset="0"
id="stop4588" />
<stop
style="stop-color:#ffd42a;stop-opacity:1"
offset="1"
id="stop4590" />
</linearGradient>
<linearGradient
osb:paint="gradient"
id="linearGradient4578">
<stop
id="stop4574"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop4576"
offset="1"
style="stop-color:#0066ff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2345"
osb:paint="gradient">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop2341" />
<stop
style="stop-color:#0066ff;stop-opacity:0;"
offset="1"
id="stop2343" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4592"
id="radialGradient4562"
cx="3.9366412"
cy="287.79721"
fx="3.9366412"
fy="287.79721"
r="6.7202239"
gradientTransform="matrix(1.6842501,0.95244793,-0.73311785,1.1017685,211.03954,-32.002776)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4592"
id="radialGradient4594"
cx="4.199245"
cy="289.90005"
fx="4.199245"
fy="289.90005"
r="6.7202239"
gradientTransform="matrix(1,0,0,0.62531561,0,108.62103)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4640"
id="radialGradient4596"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.62531561,0,108.62103)"
cx="-0.92879403"
cy="295.07019"
fx="-0.92879403"
fy="295.07019"
r="6.7202239" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4646"
id="radialGradient4634"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.6842501,0.95244793,-0.73311785,1.1017685,211.03954,-32.002776)"
cx="1.8884102"
cy="293.47107"
fx="1.8884102"
fy="293.47107"
r="6.7202239" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4640"
id="radialGradient2354"
cx="52.385254"
cy="46.281757"
fx="52.385254"
fy="46.281757"
r="29.724993"
gradientTransform="matrix(1,0,0,0.99215466,0,0.36309588)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4640"
id="radialGradient2356"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.21040374,-0.7569894,0.862133,-0.8802772,23.506279,126.67761)"
cx="52.385254"
cy="46.281757"
fx="52.385254"
fy="46.281757"
r="29.724993" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4640"
id="radialGradient2360"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.99215466,0,0.36309588)"
cx="52.385254"
cy="46.281757"
fx="52.385254"
fy="46.281757"
r="29.724993" />
</defs>
<sodipodi:namedview
id="base"
inkscape:export-ydpi="96"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs11" /><sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.2988035"
inkscape:cx="45.730628"
inkscape:cy="13.556193"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="942"
inkscape:zoom="1"
inkscape:cx="23"
inkscape:cy="125.5"
inkscape:window-width="1487"
inkscape:window-height="801"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-maximized="1"
units="px"
width="64px"
showguides="false"
inkscape:snap-text-baseline="true" />
<metadata
id="metadata4916">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-280.06662)">
<g
id="g849"
transform="matrix(0.09299418,0,0,0.09299418,-0.02106803,275.16005)">
<g
inkscape:export-ydpi="9.5134048"
inkscape:export-xdpi="9.5134048"
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
style="fill:url(#radialGradient4562);fill-opacity:1;stroke:url(#radialGradient4594);stroke-width:0.57724029;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
transform="matrix(19.66121,0,0,20.144513,53.912845,-5697.4527)"
id="g886">
<path
style="fill:url(#radialGradient4634);fill-opacity:1;stroke:url(#radialGradient4596);stroke-width:0.36512911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.68292,285.81098 a 3.7143042,3.9255907 0 0 1 3.2394206,2.00885 2.978621,3.1480586 0 0 1 0.9055101,-0.15021 2.978621,3.1480586 0 0 1 2.9786373,3.14795 2.978621,3.1480586 0 0 1 -2.6197318,3.12262 v 0.0254 H 7.8278507 0.29155891 v -8.5e-4 a 2.3864853,2.5222394 0 0 1 -0.31315577,0.0246 2.3864853,2.5222394 0 0 1 -2.38640124,-2.52228 2.3864853,2.5222394 0 0 1 2.38640124,-2.52228 2.3864853,2.5222394 0 0 1 0.07019771,0.002 3.7143042,3.9255907 0 0 1 3.63432355,-3.136 z"
id="rect4799-3"
inkscape:connector-curvature="0"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
</g>
<g
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
inkscape:export-ydpi="9.5134048"
inkscape:export-xdpi="9.5134048"
style="fill:#e4e4e4;fill-opacity:1;stroke:url(#radialGradient2354);stroke-width:0.28013071;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g10"
transform="matrix(2.1802385,2.8772027,-1.7541947,3.575994,104.54534,-155.29438)">
<g
style="fill:#e4e4e4;fill-opacity:1;stroke:url(#radialGradient2360);stroke-width:0.28013071;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g883">
<path
inkscape:connector-curvature="0"
d="m 52.475497,57.904193 2.118969,-4.700554 c 0.258337,-0.573742 0.794452,-1.452559 1.188918,-1.952342 l 2.189741,-5.099694 c 0.171725,-0.02042 0.344927,-0.09102 0.466732,-0.194079 l 0.630265,-0.546749 c 0.243632,-0.206882 0.608139,-0.67108 0.736916,-0.95794 l 0.31965,-0.665782 c 0.05776,-0.130508 0.08615,-0.298735 0.08241,-0.463714 l 4.176599,-5.28537 c 0.206096,0.05958 0.452753,0.01539 0.625077,-0.131566 l 0.268535,-0.229977 c 0.242872,-0.207632 0.555873,-0.62096 0.686215,-0.907865 l 0.122894,-0.272803 c 0.08361,-0.186032 0.07645,-0.420341 0.0074,-0.621993 L 81.942439,16.980848 c 0.394443,-0.499011 -3.499736,2.827825 -4.003591,3.221242 L 63.158733,32.961034 c 0,0 -0.470077,-0.09048 -0.672002,2.42e-4 l -0.315191,0.142618 c -0.289847,0.131081 -0.692958,0.446742 -0.889398,0.696224 l -0.197198,0.248733 c -0.137168,0.173703 -0.173217,0.41621 -0.114352,0.619702 l -5.260067,4.10647 c -0.211006,-0.0255 -0.444855,0.0083 -0.614306,0.0842 l -0.765391,0.385589 c -0.289846,0.131081 -0.709835,0.462661 -0.906298,0.712915 l -0.479332,0.595593 c -0.106358,0.135778 -0.173913,0.333686 -0.180977,0.520579 l -4.899926,2.25652 c -0.503833,0.392646 -1.390045,0.927547 -1.970452,1.187416 l -5.715688,2.569121 c -0.579625,0.259846 -0.824906,1.000611 -0.618168,1.569324 0,0 0.927303,2.582054 3.611972,5.535017 l -2.71371,2.679373 c -0.644457,-0.484249 -0.865773,-0.265673 -1.130524,-0.0049 l -0.05151,0.05087 c -0.264752,0.260725 -0.48609,0.480073 0.0055,1.114567 l -3.777657,3.730903 c -0.643676,-0.484272 -0.865751,-0.266445 -1.129765,-0.0042 l -0.05148,0.0501 c -0.264751,0.260725 -0.485307,0.480051 0.0055,1.11534 L 22.80456,74.18879 c -0.113497,0.112842 1.950106,1.40756 1.950106,1.40756 l 11.27516,-10.990626 c 0.645262,0.483455 0.865773,0.265673 1.129742,0.005 l 0.05148,-0.0501 c 0.264774,-0.261497 0.486089,-0.480073 -0.0054,-1.116112 l 3.777612,-3.729358 c 0.643676,0.484272 0.865796,0.264901 1.129765,0.0042 l 0.05148,-0.0501 c 0.264797,-0.262269 0.48609,-0.480074 -0.0055,-1.11534 l 2.723413,-2.690456 c 3.01624,2.625495 6.011328,2.658358 6.011328,2.658358 0.577766,0.201527 1.322586,-0.04231 1.581751,-0.617623 z"
id="path8"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
style="fill:#e4e4e4;fill-opacity:1;stroke:url(#radialGradient2356);stroke-width:0.38684717;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
<ellipse
inkscape:export-ydpi="9.5134048"
inkscape:export-xdpi="9.5134048"
inkscape:export-filename="/Users/jarek/Projects/kopia-app/icons/converted/g886.png"
ry="1.5360007"
rx="1.6261826"
cy="192.16341"
cx="190.19328"
id="path876"
style="fill:#b3b3b3;fill-opacity:1;stroke:#00ff00;stroke-width:0.17927414;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</svg>
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="svg7" /><title
id="title2">kopia-svg</title><style
id="style4">
.s0 { fill: #2a7fff }
</style><path
id="Shape 1"
class="s0"
d="M 22.000556,11.250997 C 33.190028,-10.42371 62.11891,2.5811144 59.662682,21.943853 c 12.008216,1.733979 12.008216,22.830688 -1.364569,22.830688 -3.274965,0.289001 -13.696041,0.289001 -13.696041,0.289001 v -9.247873 l 5.731197,-6.357916 -9.774565,-18.495748 -10.451812,18.495748 6.004106,6.357916 v 9.247873 H 11.356911 c -12.826958,0 -16.6477545,-22.252699 -1.637487,-26.00964 C 9.1735974,13.851968 14.904791,8.6500365 21.72764,11.251001 Z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.312552;stroke-linejoin:round;stroke-dasharray:none"
sodipodi:nodetypes="ccccccccccsccc" /><metadata
id="metadata1000"><rdf:RDF><cc:Work
rdf:about=""><dc:title>kopia-svg</dc:title></cc:Work></rdf:RDF></metadata></svg>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB