Fix icon colors

This commit is contained in:
Nathan Upchurch 2024-01-22 22:30:05 -06:00
parent 07ddc100c0
commit 1265d3d4a9
16 changed files with 176 additions and 85 deletions

View File

@ -1,9 +1,10 @@
module.exports = {
title: "Nathan Upchurch",
logo: "/img/logo_favicon.svg",
logo: "/img/logo.svg",
url: "https://nathanupchurch.com/",
language: "en",
description: "The personal website and blog of Nathan Upchurch.",
pgpkey: "",
author: {
name: "Nathan Upchurch",
email: "blog@upchur.ch",
@ -17,7 +18,7 @@ module.exports = {
title: "My Blog",
linkURL: "https://nathanupchurch.com",
linkDisplay: "My Blog",
iconURL: "/img/logo_favicon_dark.svg"
iconURL: "/img/logo.svg"
},
{
title: "Mastodon",

View File

@ -10,6 +10,7 @@
<link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
<link rel="alternate" href="/feed/feed.json" type="application/json" title="{{ metadata.title }}">
{% if metadata.pgpkey %}<link rel="pgpkey" href="{{ metadata.pgpkey | safe }}">{% endif %}
<meta name="generator" content="{{ eleventy.generator }}">
{#- Bundle CSS #}
@ -56,7 +57,7 @@
<a href="#skip" class="visually-hidden">Skip to main content</a>
<header>
<a href="/" class="home-link"><img src="{{ metadata.logo }}" alt="{{ metadata.title }}"></a>
<a href="/" class="home-link"><img class="logo" src="{{ metadata.logo }}" alt="{{ metadata.title }}"></a>
<nav>
<h2 class="visually-hidden">Top level navigation menu</h2>
@ -65,7 +66,7 @@
<a class="nav-item" href="{{ entry.url }}"{% if entry.url == page.url %} aria-current="page"{% endif %}><li {% if entry.url == page.url %} data-currentpage="true"{% endif %}>{{ entry.title }}</li></a>
{%- endfor %}
<a class="nav-item" href="/feed/feed.xml">
<li subscribe">
<li class="subscribe">
<!-- RSS Logo -->
<svg class="nav-icon" viewBox="0 0 155 155" width="153.349" height="152.909" version="1.0" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-427.323 -373.814)">
@ -93,6 +94,10 @@
<main id="skip">
{{ content | safe }}
</main>
<footer>© Nathan Upchurch 2022 - 2024</footer>
<footer><p>© Nathan Upchurch 2022 - 2024<br>
<a href="https://fediring.net/previous?host=nathanupchurch.com">←</a>
<a href="https://fediring.net/">Fediring</a>
<a href="https://fediring.net/next?host=nathanupchurch.com">→</a>
</p></footer>
</body>
</html>

View File

@ -21,7 +21,7 @@
<a href="#skip" class="visually-hidden">Skip to main content</a>
<header>
<a href="/" class="home-link"><img src="{{ metadata.logo }}" alt="{{ metadata.title }}"></a>
<a href="/" class="home-link"><img class="logo" src="{{ metadata.logo }}" alt="{{ metadata.title }}"></a>
</header>
<main id="skip">

View File

@ -8,6 +8,6 @@ layout: layouts/baseBareBones.njk
<ul class="socialLinks">
{% for link in metadata.socialLinks %}
<a {% if link.customAttribute %} {{ link.customAttribute | safe }} {% endif %} href="{{ link.linkURL }}"><li><img src="{{ link.iconURL }}" />{{ link.linkDisplay }}</li></a>
<a class="icon-button" {% if link.customAttribute %} {{ link.customAttribute | safe }} {% endif %} href="{{ link.linkURL }}"><li><img src="{{ link.iconURL }}" />{{ link.linkDisplay }}</li></a>
{% endfor %}
</ul>

View File

@ -19,6 +19,10 @@
--text-color-link: var(--text-color);
--text-color-tag: var(--contrast-color);
/* Change <img> SVG color with filter */
--logo-filter: brightness(0) saturate(100%) invert(16%) sepia(0%) saturate(1024%) hue-rotate(177deg) brightness(99%) contrast(88%);
--icon-filter: none;
/* Corners */
--corner-radius: .3rem;
@ -63,6 +67,8 @@
--text-color-link: var(--contrast-color);
--background-color: #15202b;
--logo-filter: none;
--icon-filter: brightness(0) saturate(100%) invert(9%) sepia(76%) saturate(340%) hue-rotate(168deg) brightness(95%) contrast(94%);
}
}
@ -142,6 +148,9 @@ h3 {
hr {
border-top: var(--border-thin);
}
.logo {
filter: var(--logo-filter);
}
main { --border-nav-currentpage: 15px solid var(--contrast-color);
padding: var(--single-gap);
@ -173,14 +182,14 @@ figcaption {
.page-block {
margin-bottom: var(--triple-gap);
}
a[href] {
a[href]:not(.icon-button) {
color: var(--text-color-link);
}
a[href]:visited {
color: var(--text-color-link);
}
a[href]:hover,
a[href]:active {
a[href]:hover:not(.icon-button),
a[href]:active:not(.icon-button) {
color: var(--contrast-color);
}
.links-nextprev {

View File

@ -27,7 +27,7 @@ ul.socialLinks {
}
.socialLinks a {
background-color: var(--text-color);
background-color: var(--color-gray-90);
border-radius: var(--corner-radius);
padding: .5em;
margin-bottom: 1em;
@ -39,6 +39,7 @@ ul.socialLinks {
align-items: center;
justify-content: center;
text-decoration: none;
color: var(--background-color);
}
.socialLinks a:hover {
@ -46,12 +47,14 @@ ul.socialLinks {
transform: scale(1.05, 1.05);
}
.socialLinks a img {
.socialLinks a li img {
max-width: 1em;
margin-right: .5em;
filter: var(--icon-filter);
}
}
.socialLinks a li {
li.iconButton {
color: var(--background-color);
}
@ -66,3 +69,9 @@ ul.socialLinks {
}
}
@media (prefers-color-scheme: dark) {
.socialLinks a li img {
filter: auto;
}
}

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -4,8 +4,30 @@
height="1536"
version="1.1"
id="svg1"
sodipodi:docname="book.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
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">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="0.13684081"
inkscape:cx="-1297.1277"
inkscape:cy="1143.6647"
inkscape:window-width="2560"
inkscape:window-height="1390"
inkscape:window-x="0"
inkscape:window-y="50"
inkscape:window-maximized="1"
inkscape:current-layer="svg1" />
<defs
id="defs1" />
<path

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -5,7 +5,7 @@
version="1.1"
id="svg1"
sodipodi:docname="envelope.svg"
inkscape:version="1.3-alpha (0a19572, 2023-05-23)"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
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"
@ -21,10 +21,15 @@
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="0.61458333"
inkscape:cx="656.54237"
inkscape:cy="1013.6949"
inkscape:current-layer="svg1" />
inkscape:zoom="0.15364583"
inkscape:cx="-172.47458"
inkscape:cy="478.37289"
inkscape:current-layer="svg1"
inkscape:window-width="2560"
inkscape:window-height="1390"
inkscape:window-x="0"
inkscape:window-y="50"
inkscape:window-maximized="1" />
<path
d="m 1467.661,572.78211 v 620.01219 c 0,68.7167 -56.2228,124.9394 -124.9395,124.9394 H 193.27845 C 124.56174,1317.7336 68.338983,1261.511 68.338983,1192.7943 V 572.78211 c 23.426151,25.76876 49.975787,48.41403 78.868037,67.93583 129.6247,88.2385 260.81114,176.477 388.09322,269.40075 65.59322,48.41399 146.80388,107.76021 231.91889,107.76021 h 1.56174 c 85.11501,0 166.32567,-59.34622 231.91893,-107.76021 127.2821,-92.14289 258.4685,-181.16225 388.874,-269.40075 28.1115,-19.5218 54.6611,-42.16707 78.0872,-67.93583 z m 0,-229.57627 c 0,87.45762 -64.8124,166.32566 -133.529,213.95883 -121.816,84.33414 -244.4128,168.66828 -365.44798,253.78329 -50.75666,35.13923 -136.65255,106.97942 -199.90315,106.97942 h -1.56174 c -63.2506,0 -149.14649,-71.84019 -199.90315,-106.97942 C 446.28087,725.83295 323.68402,641.49881 202.64891,557.16467 147.20702,519.68283 68.338983,431.44433 68.338983,360.38501 c 0,-76.52542 41.386197,-142.11864 124.939467,-142.11864 H 1342.7215 c 67.9359,0 124.9395,56.22276 124.9395,124.93947 z"
id="path1"

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -7,8 +7,8 @@
viewBox="0 0 8.4666662 8.4666662"
version="1.1"
id="svg1"
sodipodi:docname="logo_favicon_dark.svg"
inkscape:version="1.3-alpha (0a19572, 2023-05-23)"
sodipodi:docname="logo.svg"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
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"
@ -25,8 +25,13 @@
inkscape:document-units="mm"
inkscape:zoom="19.124999"
inkscape:cx="4.6797388"
inkscape:cy="26.039217"
inkscape:current-layer="g1" />
inkscape:cy="26.117648"
inkscape:current-layer="g1"
inkscape:window-width="2560"
inkscape:window-height="1390"
inkscape:window-x="0"
inkscape:window-y="50"
inkscape:window-maximized="1" />
<defs
id="defs1" />
<g

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -8,7 +8,7 @@
version="1.1"
id="svg1"
sodipodi:docname="logo_favicon.svg"
inkscape:version="1.3-alpha (0a19572, 2023-05-23)"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
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"
@ -23,10 +23,15 @@
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="6.7617082"
inkscape:cx="12.127113"
inkscape:cy="28.986758"
inkscape:current-layer="g1" />
inkscape:zoom="9.5624995"
inkscape:cx="25.098041"
inkscape:cy="34.19608"
inkscape:current-layer="g1"
inkscape:window-width="1337"
inkscape:window-height="1077"
inkscape:window-x="522"
inkscape:window-y="231"
inkscape:window-maximized="0" />
<defs
id="defs1" />
<g
@ -34,28 +39,14 @@
transform="translate(-23.248082,-20.452073)">
<g
id="g1">
<rect
style="fill:#333333;fill-opacity:1;stroke-width:0.0580231;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
id="rect1"
width="8.4666672"
height="8.4666672"
x="23.248081"
y="20.452072"
ry="2.0226691"
rx="2.0226691" />
<rect
style="fill:#333333;stroke-width:0.162218;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;fill-opacity:1"
id="rect3"
width="2.618768"
height="2.9992118"
x="23.248079"
y="20.452072"
ry="0" />
<path
d="m 28.894012,22.376224 v 0.12746 q -0.203935,0.01912 -0.312275,0.09559 -0.108341,0.0701 -0.146578,0.229426 -0.03187,0.152951 -0.03187,0.439735 V 26.9074 q -0.05736,-0.0063 -0.12746,-0.0063 -0.06373,0 -0.140205,0.0063 l -2.734,-3.715437 v 2.75312 q 0,0.305902 0.03823,0.477972 0.03824,0.165697 0.165696,0.242172 0.133833,0.0701 0.401498,0.09559 v 0.127459 q -0.121087,-0.01275 -0.312276,-0.01275 -0.191188,-0.0063 -0.363258,-0.0063 -0.152952,0 -0.312276,0.0063 -0.15295,0 -0.254918,0.01275 v -0.127459 q 0.210308,-0.02549 0.312275,-0.09559 0.10834,-0.0701 0.140205,-0.229426 0.03824,-0.159324 0.03824,-0.439735 v -2.944308 q 0,-0.2358 -0.03824,-0.344139 -0.03186,-0.114714 -0.140205,-0.152952 -0.101967,-0.04461 -0.312275,-0.05098 v -0.127459 q 0.101968,0.0063 0.254918,0.01275 0.159324,0.0063 0.312276,0.0063 0.146578,0 0.286782,-0.0063 0.140206,-0.0063 0.248546,-0.01275 l 2.389861,3.180108 v -2.236909 q 0,-0.312276 -0.03824,-0.477973 -0.03823,-0.165697 -0.165696,-0.242172 -0.127459,-0.07648 -0.401497,-0.09559 v -0.127459 q 0.121086,0.0063 0.312275,0.01275 0.197562,0.0063 0.363259,0.0063 0.159324,0 0.312275,-0.0063 0.159324,-0.0063 0.254918,-0.01275 z m 0.962308,3.670826 q 0.21668,0 0.356886,0.127459 0.140205,0.12746 0.140205,0.337768 0,0.210307 -0.140205,0.337766 -0.140206,0.12746 -0.356886,0.12746 -0.223054,0 -0.363259,-0.12746 -0.133832,-0.127459 -0.133832,-0.337766 0,-0.210308 0.133832,-0.337768 0.140205,-0.127459 0.363259,-0.127459 z"
id="text1"
style="font-weight:600;font-size:7.54899px;line-height:1;font-family:'Playfair Display';-inkscape-font-specification:'Playfair Display, Semi-Bold';letter-spacing:0px;fill:#ffffff;stroke-width:0.125453;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
aria-label="N." />
d="m 24.299497,21.503489 v 1.520267 0.734109 2.589192 c 0,0.842244 0.678022,1.520267 1.520266,1.520267 h 3.323302 c 0.842243,0 1.520266,-0.678023 1.520266,-1.520267 v -3.323301 c 0,-0.842245 -0.678023,-1.520267 -1.520266,-1.520267 h -2.875068 -0.448234 z"
style="fill:#faf5f5;fill-opacity:1;stroke-width:0.121929;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
id="path3" />
<path
id="path1"
style="fill:#333333;fill-opacity:1;stroke-width:0.162218;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
d="m 23.248081,20.452073 v 2.022616 0.976684 3.444751 c 0,1.120554 0.902061,2.022616 2.022616,2.022616 h 4.421435 c 1.120554,0 2.022616,-0.902062 2.022616,-2.022616 v -4.421435 c 0,-1.120555 -0.902062,-2.022616 -2.022616,-2.022616 h -3.825089 -0.596346 z m 1.516187,1.923914 c 0.06798,0.0042 0.152798,0.0086 0.254764,0.01292 0.106216,0.0042 0.210675,0.0062 0.312643,0.0062 0.09772,0 0.193335,-0.002 0.286804,-0.0062 0.09347,-0.0042 0.176337,-0.0086 0.248564,-0.01292 l 2.389518,3.180167 v -2.236556 c 0,-0.208184 -0.01275,-0.367542 -0.03824,-0.478007 -0.02549,-0.110464 -0.08039,-0.191379 -0.165364,-0.242362 -0.08497,-0.05099 -0.218834,-0.08286 -0.401526,-0.0956 v -0.12764 c 0.08072,0.0042 0.184666,0.0086 0.312125,0.01292 0.131708,0.0042 0.252821,0.0062 0.363286,0.0062 0.106216,0 0.210158,-0.002 0.312125,-0.0062 0.106216,-0.0042 0.191553,-0.0086 0.255282,-0.01292 v 0.12764 c -0.135957,0.01275 -0.240416,0.04462 -0.312642,0.0956 -0.07223,0.04673 -0.120753,0.123226 -0.146245,0.229443 -0.02125,0.101967 -0.03204,0.248577 -0.03204,0.439767 v 3.639054 c -0.03824,-0.0042 -0.08091,-0.0062 -0.127641,-0.0062 -0.04249,0 -0.08906,0.002 -0.140043,0.0062 l -2.7342,-3.715536 v 2.753321 c 0,0.203934 0.01275,0.363294 0.03824,0.478007 0.02549,0.110464 0.08091,0.190862 0.165882,0.241845 0.08922,0.04673 0.223083,0.07861 0.401526,0.0956 v 0.127641 c -0.08073,-0.0085 -0.184667,-0.01292 -0.312126,-0.01292 -0.127458,-0.0042 -0.248572,-0.0062 -0.363285,-0.0062 -0.101968,0 -0.206427,0.002 -0.312643,0.0062 -0.101966,0 -0.186786,0.0044 -0.254764,0.01292 v -0.127641 c 0.140205,-0.01699 0.244147,-0.04887 0.312125,-0.0956 0.07223,-0.04673 0.119317,-0.123226 0.14056,-0.229443 0.02549,-0.106216 0.03824,-0.252826 0.03824,-0.439766 v -2.944007 c 0,-0.1572 -0.01275,-0.271939 -0.03824,-0.344165 -0.02124,-0.07648 -0.06833,-0.12747 -0.14056,-0.152962 -0.06798,-0.02974 -0.17192,-0.04691 -0.312125,-0.05116 z m 5.092195,3.671093 c 0.144453,0 0.263097,0.04267 0.356568,0.127641 0.09347,0.08497 0.140559,0.197242 0.140559,0.337447 0,0.140205 -0.04709,0.252992 -0.140559,0.337964 -0.09347,0.08497 -0.212115,0.127124 -0.356568,0.127124 -0.148702,0 -0.269815,-0.04215 -0.363285,-0.127124 -0.08922,-0.08497 -0.133842,-0.197759 -0.133842,-0.337964 0,-0.140205 0.04462,-0.252474 0.133842,-0.337447 0.09347,-0.08497 0.214583,-0.127641 0.363285,-0.127641 z" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -6,7 +6,7 @@
version="1.1"
id="svg1"
sodipodi:docname="mastodon.svg"
inkscape:version="1.3-alpha (0a19572, 2023-05-23)"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
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"
@ -23,9 +23,14 @@
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="0.13169643"
inkscape:cx="-1848.9492"
inkscape:cy="896"
inkscape:current-layer="svg1" />
inkscape:cx="-1848.9491"
inkscape:cy="899.7966"
inkscape:current-layer="svg1"
inkscape:window-width="2560"
inkscape:window-height="1390"
inkscape:window-x="0"
inkscape:window-y="50"
inkscape:window-maximized="1" />
<path
d="M1503.302 1111.386c-22.579 116.159-202.224 243.284-408.55 267.921-107.588 12.837-213.519 24.636-326.476 19.455-184.728-8.463-330.494-44.092-330.494-44.092 0 17.983 1.11 35.106 3.328 51.12 24.015 182.308 180.772 193.228 329.261 198.32 149.872 5.127 283.321-36.951 283.321-36.951l6.157 135.491s-104.827 56.293-291.574 66.646c-102.974 5.66-230.836-2.59-379.759-42.009C65.529 1641.797 10.219 1297.502 1.482 948.17-1.11 844.449.485 746.646.49 664.847.5 307.631 234.539 202.924 234.539 202.924c118.011-54.199 320.512-76.99 531.033-78.71h5.173c210.52 1.721 413.152 24.511 531.157 78.71 0 0 234.04 104.706 234.04 461.923 0 0 2.935 263.556-32.64 446.539zm-243.429-418.827c0-88.4-21.711-159.35-67.71-210.618-46.63-51.972-107.687-78.613-183.47-78.613-87.699 0-154.104 33.703-198.002 101.121L768 576l-42.683-71.55c-43.907-67.42-110.313-101.124-198.003-101.124-75.792 0-136.849 26.642-183.47 78.614-45.21 51.973-67.718 122.219-67.718 210.618v432.53h171.359V705.273c0-88.498 37.234-133.415 111.713-133.415 82.35 0 123.63 53.283 123.63 158.646v229.788h170.35V730.505c0-105.363 41.272-158.646 123.62-158.646 74.478 0 111.715 44.917 111.715 133.415v419.816h171.358V692.56z"
id="path1"

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -6,7 +6,7 @@
version="1.1"
id="svg1"
sodipodi:docname="matrix-org.svg"
inkscape:version="1.3-alpha (0a19572, 2023-05-23)"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
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"
@ -23,9 +23,14 @@
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="0.13169643"
inkscape:cx="-1848.9492"
inkscape:cy="896"
inkscape:current-layer="svg1" />
inkscape:cx="-1848.9491"
inkscape:cy="899.7966"
inkscape:current-layer="svg1"
inkscape:window-width="2560"
inkscape:window-height="1390"
inkscape:window-x="0"
inkscape:window-y="50"
inkscape:window-maximized="1" />
<path
d="M40.467 163.152v1465.696H145.92V1664H0V128h145.92v35.152zm450.757 464.64v74.14h2.069c19.79-28.356 43.717-50.215 71.483-65.575 27.765-15.656 59.963-23.336 96-23.336 34.56 0 66.165 6.795 94.818 20.086 28.652 13.293 50.216 37.22 65.28 70.893 16.246-23.926 38.4-45.194 66.166-63.507 27.766-18.314 60.848-27.472 98.954-27.472 28.948 0 55.828 3.545 80.64 10.635 24.812 7.088 45.785 18.314 63.508 33.968 17.722 15.656 31.31 35.742 41.354 60.85 9.747 25.107 14.768 55.236 14.768 90.683v366.573h-150.35V865.28c0-18.314-.59-35.741-2.068-51.987-1.476-16.247-5.316-30.426-11.52-42.24-6.499-12.112-15.656-21.563-28.062-28.653-12.405-7.088-29.242-10.634-50.214-10.634-21.268 0-38.4 4.135-51.397 12.112-12.997 8.27-23.336 18.608-30.72 31.901-7.386 12.997-12.407 27.765-14.77 44.602-2.363 16.542-3.84 33.379-3.84 50.216v305.133H692.971v-307.2c0-16.247-.294-32.197-1.18-48.149-.591-15.95-3.84-30.424-9.157-44.011-5.317-13.293-14.178-24.223-26.585-32.197-12.406-7.976-30.425-12.112-54.646-12.112-7.088 0-16.542 1.478-28.062 4.726-11.52 3.25-23.04 9.157-33.968 18.02-10.93 8.86-20.383 21.563-28.063 38.103-7.68 16.543-11.52 38.4-11.52 65.28v317.834H349.44V627.792zm1004.309 1001.056V163.152H1390.08V128H1536v1536h-145.92v-35.152z"
id="path1"

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
sodipodi:docname="peertube.svg"
id="svg895"
version="1.1"
@ -31,15 +31,15 @@
<sodipodi:namedview
inkscape:current-layer="Group"
inkscape:window-maximized="1"
inkscape:window-y="30"
inkscape:window-y="50"
inkscape:window-x="0"
inkscape:cy="54.247943"
inkscape:cx="17.316052"
inkscape:cy="54.315583"
inkscape:cx="17.383692"
inkscape:zoom="7.3919854"
showgrid="false"
id="namedview897"
inkscape:window-height="1022"
inkscape:window-width="1920"
inkscape:window-height="1390"
inkscape:window-width="2560"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
@ -72,13 +72,13 @@
transform="rotate(90,19,75)"
fill="#737373"
id="Triangle-Copy"
style="fill:#faf5f5;fill-opacity:0.848211" />
style="fill:#faf5f5;fill-opacity:1" />
<polygon
points="57,31 82,69 32,69 "
transform="rotate(90,57,50)"
fill="#f1680d"
id="Triangle-Copy-2"
style="fill:#faf5f5;fill-opacity:0.695179" />
style="fill:#faf5f5;fill-opacity:1" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -6,7 +6,7 @@
version="1.1"
id="svg1"
sodipodi:docname="pixelfed.svg"
inkscape:version="1.3-alpha (0a19572, 2023-05-23)"
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
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"
@ -22,10 +22,15 @@
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="0.13169643"
inkscape:cx="-1848.9492"
inkscape:cy="896"
inkscape:current-layer="svg1" />
inkscape:zoom="0.093123439"
inkscape:cx="2485.9477"
inkscape:cy="230.87635"
inkscape:current-layer="svg1"
inkscape:window-width="2560"
inkscape:window-height="1390"
inkscape:window-x="0"
inkscape:window-y="50"
inkscape:window-maximized="1" />
<path
d="M768 1664C343.845 1664 0 1320.155 0 896s343.845-768 768-768 768 343.845 768 768-343.845 768-768 768zm-60.97-600.33h140.887c132.72 0 240.312-104.74 240.312-233.944S980.638 595.782 847.917 595.782H644.576c-76.57 0-138.642 60.427-138.642 134.968v525.312z"
fill-rule="evenodd"

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB