summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2023-11-27 17:48:01 -0600
committerZach van Rijn <me@zv.io>2023-11-27 17:55:35 -0600
commitf800e267b75bf8dce7c3f0a61f66d944eab14d75 (patch)
treeec249411c59d7db22505076dc8cc3828e8a62259
parent394df62a1eed3bf94072c5d94c4de200cd5889ac (diff)
downloadsite-ng-f800e267b75bf8dce7c3f0a61f66d944eab14d75.tar.gz
site-ng-f800e267b75bf8dce7c3f0a61f66d944eab14d75.tar.bz2
site-ng-f800e267b75bf8dce7c3f0a61f66d944eab14d75.tar.xz
site-ng-f800e267b75bf8dce7c3f0a61f66d944eab14d75.zip
Remove generated SVG files, ensure .gitignore captures them.
-rwxr-xr-xassets/images/polyguin.sh22
-rw-r--r--assets/images/polyguin_black.svg171
-rw-r--r--assets/images/polyguin_color.svg171
-rw-r--r--assets/images/polyguin_white.svg171
4 files changed, 11 insertions, 524 deletions
diff --git a/assets/images/polyguin.sh b/assets/images/polyguin.sh
index dcf670a..7497f8c 100755
--- a/assets/images/polyguin.sh
+++ b/assets/images/polyguin.sh
@@ -13,14 +13,14 @@ rm -f gen_*;
#
# Optionally apply color transformations here.
#
-cp polyguin.svg polyguin_color.svg
+cp polyguin.svg gen_polyguin_color.svg
##
# Target: black
#
# Convert color SVG to black SVG and maintain transparency.
#
-cp polyguin.svg polyguin_black.svg
+cp polyguin.svg gen_polyguin_black.svg
grep fill: polyguin.svg \
| grep -v fill:none \
| grep -E -o '\#[a-f0-9]*\w' \
@@ -28,7 +28,7 @@ grep fill: polyguin.svg \
| uniq \
| cut -d\# -f2 \
| while read k; do
- sed -i polyguin_black.svg \
+ sed -i gen_polyguin_black.svg \
-e 's@'"$k"'@__BLACK_'"$k"'__@g' \
;
done \
@@ -43,7 +43,7 @@ grep fill: polyguin.svg \
| awk '{ print "0x"$1,"0x"$2,"0x"$3, ($1 $2 $3) }' \
| awk --non-decimal-data '{ print $4, (1 - (($1 + $2 + $3) / (3 * 256))) }' \
| while read a b; do
- sed -i polyguin_black.svg \
+ sed -i gen_polyguin_black.svg \
-e '/'"$a"'/ s@-opacity:1@-opacity:'"$b"'@g' \
-e '/'"$a"'/ s@__BLACK_[a-f0-9]*__@000000@g' \
;
@@ -56,7 +56,7 @@ grep fill: polyguin.svg \
#
# Convert color SVG to white SVG and maintain transparency.
#
-cp polyguin.svg polyguin_white.svg
+cp polyguin.svg gen_polyguin_white.svg
grep fill: polyguin.svg \
| grep -v fill:none \
| grep -E -o '\#[a-f0-9]*\w' \
@@ -64,7 +64,7 @@ grep fill: polyguin.svg \
| uniq \
| cut -d\# -f2 \
| while read k; do
- sed -i polyguin_white.svg \
+ sed -i gen_polyguin_white.svg \
-e 's@'"$k"'@__WHITE_'"$k"'__@g' \
;
done \
@@ -79,7 +79,7 @@ grep fill: polyguin.svg \
| awk '{ print "0x"$1,"0x"$2,"0x"$3, ($1 $2 $3) }' \
| awk --non-decimal-data '{ print $4, (($1 + $2 + $3) / (3 * 256)) }' \
| while read a b; do
- sed -i polyguin_white.svg \
+ sed -i gen_polyguin_white.svg \
-e '/'"$a"'/ s@-opacity:1@-opacity:'"$b"'@g' \
-e '/'"$a"'/ s@__WHITE_[a-f0-9]*__@ffffff@g' \
;
@@ -108,7 +108,7 @@ apk add graphicsmagick imagemagick;
#
for c in color black white; do
for r in x28 x54 x200 x900; do
- gm convert -trim -density 600 -resize ${r} -background none polyguin_${c}.svg gen_polyguin_${c}_${r}.png;
+ gm convert -trim -density 600 -resize ${r} -background none gen_polyguin_${c}.svg gen_polyguin_${c}_${r}.png;
magick convert -auto-level -brightness-contrast -5x+25 gen_polyguin_${c}_${r}.png gen_polyguin_${c}_${r}.png;
chown 1000:1000 gen_polyguin_${c}_${r}.png;
done # r
@@ -184,13 +184,13 @@ chown 1000:1000 icons/gen_polyguin_color_favicon.ico;
##
# GitLab group/project avatar is 96x96 square. MUST be square.
#
-magick convert -background none -gravity center -resize 96x96 -extent 96x96 polyguin_color.svg gen_polyguin_color_gitlab.png;
+magick convert -background none -gravity center -resize 96x96 -extent 96x96 gen_polyguin_color.svg gen_polyguin_color_gitlab.png;
chown 1000:1000 gen_polyguin_color_gitlab.png;
##
# Twitter avatar is 400x400 square. MUST be square.
#
-magick convert -background none -gravity center -resize 400x400 -extent 400x400 polyguin_color.svg gen_polyguin_color_twitter.png;
+magick convert -background none -gravity center -resize 400x400 -extent 400x400 gen_polyguin_color.svg gen_polyguin_color_twitter.png;
chown 1000:1000 gen_polyguin_color_twitter.png;
##
@@ -202,7 +202,7 @@ chown 1000:1000 gen_polyguin_color_wordpress.png;
##
# GitHub group/project avatar is 500x500 square. MUST be square.
#
-magick convert -background none -gravity center -resize 500x500 -extent 500x500 polyguin_color.svg gen_polyguin_color_github.png;
+magick convert -background none -gravity center -resize 500x500 -extent 500x500 gen_polyguin_color.svg gen_polyguin_color_github.png;
chown 1000:1000 gen_polyguin_color_github.png;
#===============================================================
diff --git a/assets/images/polyguin_black.svg b/assets/images/polyguin_black.svg
deleted file mode 100644
index ef73aa3..0000000
--- a/assets/images/polyguin_black.svg
+++ /dev/null
@@ -1,171 +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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- viewBox="0 0 210 297"
- version="1.1"
- id="svg8"
- inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
- sodipodi:docname="polyguin.svg">
- <defs
- id="defs2" />
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="256"
- inkscape:cx="455.73737"
- inkscape:cy="1064.9893"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- inkscape:document-rotation="0"
- showgrid="true"
- inkscape:window-width="2556"
- inkscape:window-height="1416"
- inkscape:window-x="0"
- inkscape:window-y="20"
- inkscape:window-maximized="1"
- showguides="false"
- objecttolerance="10000"
- guidetolerance="10000"
- inkscape:snap-perpendicular="true"
- inkscape:snap-tangential="true">
- <inkscape:grid
- type="xygrid"
- id="grid30"
- empspacing="1" />
- </sodipodi:namedview>
- <metadata
- id="metadata5">
- <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:groupmode="layer"
- id="layer1"
- inkscape:label="Polyguin"
- style="display:inline;opacity:1">
- <path
- style="fill:#000000;fill-opacity:0.122396;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.122396"
- d="m 159.01458,33.072917 2.91042,-15.875 39.95208,1.5875 z"
- id="path36"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.201823;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.201823"
- d="M 159.01458,33.072917 133.35,14.2875 l 28.575,2.910417 z"
- id="path861"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:none"
- d="m 133.69733,14.252581 13.9927,37.834885 11.2626,-18.975997 z"
- id="path865"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.354167;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.354167"
- d="m 133.35,14.2875 14.2875,37.835417 11.37708,-19.05 z"
- id="path913"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.335938;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.335938"
- d="M 133.35,14.2875 116.41667,32.808333 147.6375,52.122917 Z"
- id="path915"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.209635;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.209635"
- d="M 116.41667,32.808333 98.689583,82.55 147.6375,52.122917 Z"
- id="path917"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.361979;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.361979"
- d="M 98.689583,82.55 164.04167,100.80625 147.6375,52.122917 Z"
- id="path919"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#000000;fill-opacity:0.395833;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.395833"
- d="M 98.689583,82.55 80.697917,126.47083 164.04167,100.80625 Z"
- id="path921"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#000000;fill-opacity:0.424479;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.424479"
- d="m 80.697917,126.47083 -70.64375,25.4 L 98.689583,82.55 Z"
- id="path923"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#000000;fill-opacity:0.390625;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.390625"
- d="M 164.04167,100.80625 115.35833,163.5125 80.697917,126.47083 Z"
- id="path925"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#000000;fill-opacity:0.209635;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.209635"
- d="m 164.04167,100.80625 -6.87917,58.47292 -41.80417,4.23333 z"
- id="path927"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#000000;fill-opacity:0.554688;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.554688"
- d="m 80.697917,126.47083 -7.9375,73.81875 42.597913,-36.77708 z"
- id="path929"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#000000;fill-opacity:0.335938;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.335938"
- d="m 157.1625,159.27917 -21.16667,49.74166 -20.6375,-45.50833 z"
- id="path931"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.424479;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.424479"
- d="M 135.99583,209.02083 72.760417,200.28958 115.35833,163.5125 Z"
- id="path973"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.480469;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.480469"
- d="m 72.760417,200.28958 38.893753,39.95209 24.34166,-31.22084 z"
- id="path975"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.608073;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.608073"
- d="m 72.760417,200.28958 -5.820834,38.62917 44.714587,1.32292 z"
- id="path977"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.55599;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55599"
- d="M 66.939583,238.91875 73.025,273.05 111.65417,240.24167 Z"
- id="path979"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.608073;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.608073"
- d="m 66.939583,238.91875 -28.575,43.39167 L 73.025,273.05 Z"
- id="path981"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.473958;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.473958"
- d="m 73.025,273.05 20.6375,-1.5875 17.99167,-31.22083 z"
- id="path983"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.554688;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.554688"
- d="m 73.025,273.05 6.879167,9.78958 L 93.6625,271.4625 Z"
- id="path985"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#000000;fill-opacity:0.608073;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.608073"
- d="m 93.6625,271.4625 26.9875,10.84792 -40.745833,0.52916 z"
- id="path987"
- sodipodi:nodetypes="cccc" />
- </g>
-</svg>
diff --git a/assets/images/polyguin_color.svg b/assets/images/polyguin_color.svg
deleted file mode 100644
index aee9a93..0000000
--- a/assets/images/polyguin_color.svg
+++ /dev/null
@@ -1,171 +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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- viewBox="0 0 210 297"
- version="1.1"
- id="svg8"
- inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
- sodipodi:docname="polyguin.svg">
- <defs
- id="defs2" />
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="256"
- inkscape:cx="455.73737"
- inkscape:cy="1064.9893"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- inkscape:document-rotation="0"
- showgrid="true"
- inkscape:window-width="2556"
- inkscape:window-height="1416"
- inkscape:window-x="0"
- inkscape:window-y="20"
- inkscape:window-maximized="1"
- showguides="false"
- objecttolerance="10000"
- guidetolerance="10000"
- inkscape:snap-perpendicular="true"
- inkscape:snap-tangential="true">
- <inkscape:grid
- type="xygrid"
- id="grid30"
- empspacing="1" />
- </sodipodi:namedview>
- <metadata
- id="metadata5">
- <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:groupmode="layer"
- id="layer1"
- inkscape:label="Polyguin"
- style="display:inline;opacity:1">
- <path
- style="fill:#a4ffff;fill-opacity:1;stroke:#a4ffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 159.01458,33.072917 2.91042,-15.875 39.95208,1.5875 z"
- id="path36"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#69fffd;fill-opacity:1;stroke:#69fffd;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 159.01458,33.072917 133.35,14.2875 l 28.575,2.910417 z"
- id="path861"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:none"
- d="m 133.69733,14.252581 13.9927,37.834885 11.2626,-18.975997 z"
- id="path865"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#00f1ff;fill-opacity:1;stroke:#00f1ff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 133.35,14.2875 14.2875,37.835417 11.37708,-19.05 z"
- id="path913"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 133.35,14.2875 116.41667,32.808333 147.6375,52.122917 Z"
- id="path915"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#61ffff;fill-opacity:1;stroke:#61ffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 116.41667,32.808333 98.689583,82.55 147.6375,52.122917 Z"
- id="path917"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#00ebff;fill-opacity:1;stroke:#00ebff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 98.689583,82.55 164.04167,100.80625 147.6375,52.122917 Z"
- id="path919"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#00d1ff;fill-opacity:1;stroke:#00d1ff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 98.689583,82.55 80.697917,126.47083 164.04167,100.80625 Z"
- id="path921"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#4378ff;fill-opacity:1;stroke:#4378ff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 80.697917,126.47083 -70.64375,25.4 L 98.689583,82.55 Z"
- id="path923"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#33a2ff;fill-opacity:1;stroke:#33a2ff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 164.04167,100.80625 115.35833,163.5125 80.697917,126.47083 Z"
- id="path925"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#61ffff;fill-opacity:1;stroke:#61ffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 164.04167,100.80625 -6.87917,58.47292 -41.80417,4.23333 z"
- id="path927"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#5700ff;fill-opacity:1;stroke:#5700ff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 80.697917,126.47083 -7.9375,73.81875 42.597913,-36.77708 z"
- id="path929"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 157.1625,159.27917 -21.16667,49.74166 -20.6375,-45.50833 z"
- id="path931"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#4378ff;fill-opacity:1;stroke:#4378ff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 135.99583,209.02083 72.760417,200.28958 115.35833,163.5125 Z"
- id="path973"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#4c44ff;fill-opacity:1;stroke:#4c44ff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 72.760417,200.28958 38.893753,39.95209 24.34166,-31.22084 z"
- id="path975"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#4d00e0;fill-opacity:1;stroke:#4d00e0;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 72.760417,200.28958 -5.820834,38.62917 44.714587,1.32292 z"
- id="path977"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#5600ff;fill-opacity:1;stroke:#5600ff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 66.939583,238.91875 73.025,273.05 111.65417,240.24167 Z"
- id="path979"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#4d00e0;fill-opacity:1;stroke:#4d00e0;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 66.939583,238.91875 -28.575,43.39167 L 73.025,273.05 Z"
- id="path981"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#4c49ff;fill-opacity:1;stroke:#4c49ff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 73.025,273.05 20.6375,-1.5875 17.99167,-31.22083 z"
- id="path983"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#5700ff;fill-opacity:1;stroke:#5700ff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 73.025,273.05 6.879167,9.78958 L 93.6625,271.4625 Z"
- id="path985"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#4d00e0;fill-opacity:1;stroke:#4d00e0;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 93.6625,271.4625 26.9875,10.84792 -40.745833,0.52916 z"
- id="path987"
- sodipodi:nodetypes="cccc" />
- </g>
-</svg>
diff --git a/assets/images/polyguin_white.svg b/assets/images/polyguin_white.svg
deleted file mode 100644
index 07e853c..0000000
--- a/assets/images/polyguin_white.svg
+++ /dev/null
@@ -1,171 +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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- viewBox="0 0 210 297"
- version="1.1"
- id="svg8"
- inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
- sodipodi:docname="polyguin.svg">
- <defs
- id="defs2" />
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="256"
- inkscape:cx="455.73737"
- inkscape:cy="1064.9893"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- inkscape:document-rotation="0"
- showgrid="true"
- inkscape:window-width="2556"
- inkscape:window-height="1416"
- inkscape:window-x="0"
- inkscape:window-y="20"
- inkscape:window-maximized="1"
- showguides="false"
- objecttolerance="10000"
- guidetolerance="10000"
- inkscape:snap-perpendicular="true"
- inkscape:snap-tangential="true">
- <inkscape:grid
- type="xygrid"
- id="grid30"
- empspacing="1" />
- </sodipodi:namedview>
- <metadata
- id="metadata5">
- <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:groupmode="layer"
- id="layer1"
- inkscape:label="Polyguin"
- style="display:inline;opacity:1">
- <path
- style="fill:#ffffff;fill-opacity:0.877604;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.877604"
- d="m 159.01458,33.072917 2.91042,-15.875 39.95208,1.5875 z"
- id="path36"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.798177;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.798177"
- d="M 159.01458,33.072917 133.35,14.2875 l 28.575,2.910417 z"
- id="path861"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:none"
- d="m 133.69733,14.252581 13.9927,37.834885 11.2626,-18.975997 z"
- id="path865"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.645833;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.645833"
- d="m 133.35,14.2875 14.2875,37.835417 11.37708,-19.05 z"
- id="path913"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.664062;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.664062"
- d="M 133.35,14.2875 116.41667,32.808333 147.6375,52.122917 Z"
- id="path915"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.790365;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.790365"
- d="M 116.41667,32.808333 98.689583,82.55 147.6375,52.122917 Z"
- id="path917"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.638021;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.638021"
- d="M 98.689583,82.55 164.04167,100.80625 147.6375,52.122917 Z"
- id="path919"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#ffffff;fill-opacity:0.604167;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.604167"
- d="M 98.689583,82.55 80.697917,126.47083 164.04167,100.80625 Z"
- id="path921"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#ffffff;fill-opacity:0.575521;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.575521"
- d="m 80.697917,126.47083 -70.64375,25.4 L 98.689583,82.55 Z"
- id="path923"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#ffffff;fill-opacity:0.609375;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.609375"
- d="M 164.04167,100.80625 115.35833,163.5125 80.697917,126.47083 Z"
- id="path925"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#ffffff;fill-opacity:0.790365;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.790365"
- d="m 164.04167,100.80625 -6.87917,58.47292 -41.80417,4.23333 z"
- id="path927"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#ffffff;fill-opacity:0.445312;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.445312"
- d="m 80.697917,126.47083 -7.9375,73.81875 42.597913,-36.77708 z"
- id="path929"
- sodipodi:nodetypes="cccc" />
- <path
- style="display:inline;fill:#ffffff;fill-opacity:0.664062;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.664062"
- d="m 157.1625,159.27917 -21.16667,49.74166 -20.6375,-45.50833 z"
- id="path931"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.575521;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.575521"
- d="M 135.99583,209.02083 72.760417,200.28958 115.35833,163.5125 Z"
- id="path973"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.519531;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.519531"
- d="m 72.760417,200.28958 38.893753,39.95209 24.34166,-31.22084 z"
- id="path975"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.391927;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.391927"
- d="m 72.760417,200.28958 -5.820834,38.62917 44.714587,1.32292 z"
- id="path977"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.44401;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.44401"
- d="M 66.939583,238.91875 73.025,273.05 111.65417,240.24167 Z"
- id="path979"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.391927;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.391927"
- d="m 66.939583,238.91875 -28.575,43.39167 L 73.025,273.05 Z"
- id="path981"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.526042;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.526042"
- d="m 73.025,273.05 20.6375,-1.5875 17.99167,-31.22083 z"
- id="path983"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.445312;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.445312"
- d="m 73.025,273.05 6.879167,9.78958 L 93.6625,271.4625 Z"
- id="path985"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#ffffff;fill-opacity:0.391927;stroke:#ffffff;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.391927"
- d="m 93.6625,271.4625 26.9875,10.84792 -40.745833,0.52916 z"
- id="path987"
- sodipodi:nodetypes="cccc" />
- </g>
-</svg>