Add emblems icons

This commit is contained in:
vinceliuice
2022-03-19 20:36:58 +08:00
parent 1ec83804f3
commit f12dc0f66d
107 changed files with 890 additions and 10 deletions

View File

@@ -13,7 +13,7 @@ fi
SRC_DIR="$(cd "$(dirname "$0")" && pwd)" SRC_DIR="$(cd "$(dirname "$0")" && pwd)"
THEME_NAME=Colloid THEME_NAME=Colloid
COLOR_VARIANTS=('' '-dark') COLOR_VARIANTS=('-light' '-dark' '')
SCHEME_VARIANTS=('' '-nord' '-dracula') SCHEME_VARIANTS=('' '-nord' '-dracula')
THEME_VARIANTS=('' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-teal' '-grey') THEME_VARIANTS=('' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-teal' '-grey')
@@ -46,10 +46,9 @@ install() {
mkdir -p ${THEME_DIR} mkdir -p ${THEME_DIR}
cp -r ${SRC_DIR}/src/index.theme ${THEME_DIR} cp -r ${SRC_DIR}/src/index.theme ${THEME_DIR}
sed -i "s/Colloid/${2}${3}${4}${5}/g" ${THEME_DIR}/index.theme sed -i "s/Colloid/${2}${3}${4}${5}/g" ${THEME_DIR}/index.theme
sed -i "s/WhiteSur/WhiteSur${color}/g" ${THEME_DIR}/index.theme
if [[ ${color} == '' ]]; then if [[ ${color} == '-light' ]]; then
cp -r ${SRC_DIR}/src/{actions,apps,categories,devices,mimetypes,places,status} ${THEME_DIR} cp -r ${SRC_DIR}/src/{actions,apps,categories,devices,emblems,mimetypes,places,status} ${THEME_DIR}
cp -r ${SRC_DIR}/links/* ${THEME_DIR} cp -r ${SRC_DIR}/links/* ${THEME_DIR}
if [[ ${theme} != '' ]]; then if [[ ${theme} != '' ]]; then
@@ -60,10 +59,11 @@ install() {
fi fi
if [[ ${color} == '-dark' ]]; then if [[ ${color} == '-dark' ]]; then
mkdir -p ${THEME_DIR}/{apps,categories,devices,mimetypes,places,status} mkdir -p ${THEME_DIR}/{apps,categories,devices,emblems,mimetypes,places,status}
cp -r ${SRC_DIR}/src/actions ${THEME_DIR} cp -r ${SRC_DIR}/src/actions ${THEME_DIR}
cp -r ${SRC_DIR}/src/apps/symbolic ${THEME_DIR}/apps cp -r ${SRC_DIR}/src/apps/symbolic ${THEME_DIR}/apps
cp -r ${SRC_DIR}/src/categories/symbolic ${THEME_DIR}/categories cp -r ${SRC_DIR}/src/categories/symbolic ${THEME_DIR}/categories
cp -r ${SRC_DIR}/src/emblems/symbolic ${THEME_DIR}/emblems
cp -r ${SRC_DIR}/src/mimetypes/symbolic ${THEME_DIR}/mimetypes cp -r ${SRC_DIR}/src/mimetypes/symbolic ${THEME_DIR}/mimetypes
cp -r ${SRC_DIR}/src/devices/{16,22,24,symbolic} ${THEME_DIR}/devices cp -r ${SRC_DIR}/src/devices/{16,22,24,symbolic} ${THEME_DIR}/devices
cp -r ${SRC_DIR}/src/places/{16,22,24,symbolic} ${THEME_DIR}/places cp -r ${SRC_DIR}/src/places/{16,22,24,symbolic} ${THEME_DIR}/places
@@ -72,7 +72,7 @@ install() {
# Change icon color for dark theme # Change icon color for dark theme
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,devices,places,status}/{16,22,24}/* sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,devices,places,status}/{16,22,24}/*
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/actions/32/* sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/actions/32/*
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,apps,categories,devices,mimetypes,places,status}/symbolic/* sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,apps,categories,devices,emblems,mimetypes,places,status}/symbolic/*
cp -r ${SRC_DIR}/links/actions/{16,22,24,32,symbolic} ${THEME_DIR}/actions cp -r ${SRC_DIR}/links/actions/{16,22,24,32,symbolic} ${THEME_DIR}/actions
cp -r ${SRC_DIR}/links/devices/{16,22,24,symbolic} ${THEME_DIR}/devices cp -r ${SRC_DIR}/links/devices/{16,22,24,symbolic} ${THEME_DIR}/devices
@@ -80,6 +80,7 @@ install() {
cp -r ${SRC_DIR}/links/status/{16,22,24,symbolic} ${THEME_DIR}/status cp -r ${SRC_DIR}/links/status/{16,22,24,symbolic} ${THEME_DIR}/status
cp -r ${SRC_DIR}/links/apps/symbolic ${THEME_DIR}/apps cp -r ${SRC_DIR}/links/apps/symbolic ${THEME_DIR}/apps
cp -r ${SRC_DIR}/links/categories/symbolic ${THEME_DIR}/categories cp -r ${SRC_DIR}/links/categories/symbolic ${THEME_DIR}/categories
cp -r ${SRC_DIR}/links/emblems/symbolic ${THEME_DIR}/emblems
cp -r ${SRC_DIR}/links/mimetypes/symbolic ${THEME_DIR}/mimetypes cp -r ${SRC_DIR}/links/mimetypes/symbolic ${THEME_DIR}/mimetypes
cd ${dest} cd ${dest}
@@ -87,16 +88,38 @@ install() {
ln -s ../../${name}${theme}${scheme}/devices/scalable ${name}${theme}${scheme}-dark/devices/scalable ln -s ../../${name}${theme}${scheme}/devices/scalable ${name}${theme}${scheme}-dark/devices/scalable
ln -s ../../${name}${theme}${scheme}/places/scalable ${name}${theme}${scheme}-dark/places/scalable ln -s ../../${name}${theme}${scheme}/places/scalable ${name}${theme}${scheme}-dark/places/scalable
ln -s ../../${name}${theme}${scheme}/categories/32 ${name}${theme}${scheme}-dark/categories/32 ln -s ../../${name}${theme}${scheme}/categories/32 ${name}${theme}${scheme}-dark/categories/32
ln -s ../../${name}${theme}${scheme}/emblems/16 ${name}${theme}${scheme}-dark/emblems/16
ln -s ../../${name}${theme}${scheme}/emblems/22 ${name}${theme}${scheme}-dark/emblems/22
ln -s ../../${name}${theme}${scheme}/status/32 ${name}${theme}${scheme}-dark/status/32 ln -s ../../${name}${theme}${scheme}/status/32 ${name}${theme}${scheme}-dark/status/32
ln -s ../../${name}${theme}${scheme}/mimetypes/scalable ${name}${theme}${scheme}-dark/mimetypes/scalable ln -s ../../${name}${theme}${scheme}/mimetypes/scalable ${name}${theme}${scheme}-dark/mimetypes/scalable
fi fi
if [[ ${color} == '' ]]; then
mkdir -p ${THEME_DIR}/status
cp -r ${SRC_DIR}/src/status/{16,22,24} ${THEME_DIR}/status
# Change icon color for dark panel
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/status/{16,22,24}/*
cp -r ${SRC_DIR}/links/status/{16,22,24} ${THEME_DIR}/status
cd ${dest}
ln -s ../${name}${theme}${scheme}-light/apps ${name}${theme}${scheme}/apps
ln -s ../${name}${theme}${scheme}-light/actions ${name}${theme}${scheme}/actions
ln -s ../${name}${theme}${scheme}-light/devices ${name}${theme}${scheme}/devices
ln -s ../${name}${theme}${scheme}-light/emblems ${name}${theme}${scheme}/emblems
ln -s ../${name}${theme}${scheme}-light/places ${name}${theme}${scheme}/places
ln -s ../${name}${theme}${scheme}-light/categories ${name}${theme}${scheme}/categories
ln -s ../${name}${theme}${scheme}-light/mimetypes ${name}${theme}${scheme}/mimetypes
ln -s ../../${name}${theme}${scheme}-light/status/32 ${name}${theme}${scheme}/status/32
ln -s ../../${name}${theme}${scheme}-light/status/symbolic ${name}${theme}${scheme}/status/symbolic
fi
( (
cd ${THEME_DIR} cd ${THEME_DIR}
ln -sf actions actions@2x ln -sf actions actions@2x
ln -sf apps apps@2x ln -sf apps apps@2x
ln -sf categories categories@2x ln -sf categories categories@2x
ln -sf devices devices@2x ln -sf devices devices@2x
ln -sf emblems emblems@2x
ln -sf mimetypes mimetypes@2x ln -sf mimetypes mimetypes@2x
ln -sf places places@2x ln -sf places places@2x
ln -sf status status@2x ln -sf status status@2x

View File

@@ -0,0 +1 @@
emblem-checked.svg

View File

@@ -0,0 +1 @@
emblem-locked.svg

View File

@@ -0,0 +1 @@
emblem-unlocked.svg

View File

@@ -0,0 +1 @@
emblem-unreadable.svg

View File

@@ -0,0 +1 @@
rating.svg

View File

@@ -0,0 +1 @@
emblem-checked.svg

View File

@@ -0,0 +1 @@
package-install.svg

1
links/emblems/16/newer.svg Symbolic link
View File

@@ -0,0 +1 @@
package-upgrade.svg

View File

@@ -0,0 +1 @@
package-available.svg

View File

@@ -0,0 +1 @@
package-installed-outdated.svg

View File

@@ -0,0 +1 @@
package-install.svg

View File

@@ -0,0 +1 @@
emblem-added.svg

View File

@@ -0,0 +1 @@
emblem-warning.svg

View File

@@ -0,0 +1 @@
emblem-checked.svg

View File

@@ -0,0 +1 @@
emblem-remove.svg

View File

@@ -0,0 +1 @@
emblem-checked.svg

View File

@@ -0,0 +1 @@
emblem-locked.svg

View File

@@ -0,0 +1 @@
emblem-unlocked.svg

View File

@@ -0,0 +1 @@
emblem-unreadable.svg

View File

@@ -0,0 +1 @@
rating.svg

View File

@@ -0,0 +1 @@
emblem-checked.svg

View File

@@ -0,0 +1 @@
emblem-added.svg

View File

@@ -0,0 +1 @@
emblem-warning.svg

View File

@@ -0,0 +1 @@
emblem-checked.svg

View File

@@ -0,0 +1 @@
emblem-remove.svg

View File

@@ -0,0 +1,15 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -2.9969)">
<g transform="matrix(3.7794,0,0,3.7794,1.3524e-8,-1100.5)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-296.21" y="-5.0273" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#3daee9" stroke-width="1.0001"/>
</g>
<path d="m10 6v4h-4v2h4v4h2v-4h4v-2h-4v-4z" fill="#ffffff"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 862 B

View File

@@ -0,0 +1,15 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-PositiveText {
color:#27ae60;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -2.9969)">
<g transform="matrix(3.7794,0,0,3.7794,1.3524e-8,-1100.5)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-296.21" y="-5.027" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#27ae60"/>
<path d="m1.919 294.28 0.595 0.595 1.389-1.587" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-width=".529"/>
</g>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 901 B

View File

@@ -0,0 +1,14 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -3)">
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#3bce8b"/>
<circle cx="11" cy="15" r="1" fill="#ffffff"/>
<path d="m10 13h2v-7h-2z" fill="#ffffff" fill-rule="evenodd"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 754 B

View File

@@ -0,0 +1,14 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -3)">
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#4f97ed"/>
<circle cx="11" cy="15" r="1" fill="#ffffff"/>
<path d="m10 13h2v-7h-2z" fill="#ffffff" fill-rule="evenodd"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 752 B

View File

@@ -0,0 +1,18 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -2.9894)">
<g transform="matrix(3.7794,0,0,3.7794,4.5041e-8,-1100.5)">
<g transform="translate(3.969,1.588)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-294.62" y="-1.058" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#ff8135"/>
<path d="m-2.117 292.24h2.117v1.323h-2.117z" fill="#ffffff"/>
<rect x="-1.72" y="291.31" width="1.323" height="1.852" ry=".661" fill="none" stroke="#ffffff" stroke-linejoin="round" stroke-width=".265"/>
</g>
</g>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,13 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-PositiveText {
color:#27ae60;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -2.9995)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-18.999" y="-18.999" width="15.998" height="15.998" rx="8.001" ry="8.001" fill="#27ae60" stroke-width="3.7794"/>
<path d="m13 6.333c-1.6938 0.0016324-3.4355 1.07-4 2.667h-2v4h2.001c0.56435 1.5967 2.3055 2.6649 3.999 2.667v-1.667h3v-1h-3v-4h3v-1h-3z" fill="#ffffff"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 886 B

View File

@@ -0,0 +1,9 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-3 -3)">
<g transform="matrix(.4 0 0 .4 1.4 1.4)">
<circle cx="24" cy="24" r="20" fill="#ff5555"/>
<path d="m16.5 16.5h5v15h-5zm10 0h5v15h-5z" fill="#ffffff"/>
</g>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 545 B

View File

@@ -0,0 +1,9 @@
<svg width="16" height="16" version="1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-3 -3)">
<g transform="matrix(.4 0 0 .4 1.4 1.4)">
<circle cx="24" cy="24" r="20" fill="#ff7800"/>
<path d="m26 38h-4v-4h4zm4.14-15.5-1.8 1.84c-1.44 1.46-2.34 2.66-2.34 5.66h-4v-1c0-2.2 0.9-4.2 2.34-5.66l2.48-2.52a3.91 3.91 0 0 0 1.18-2.82c0-2.2-1.8-4-4-4s-4 1.8-4 4h-4c0-4.42 3.58-8 8-8s8 3.58 8 8c0 1.76-0.72 3.36-1.86 4.5z" fill="#ffffff"/>
</g>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 727 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 4.2335 4.2335" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-.79381 -.79516)">
<g transform="translate(3.969,-289.59)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-294.62" y="-1.058" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#545454"/>
<path d="m-2.117 292.24h2.117v1.323h-2.117z" fill="#ffffff"/>
<rect x="-1.72" y="291.31" width="1.323" height="1.852" ry=".661" fill="none" stroke="#ffffff" stroke-linejoin="round" stroke-width=".265"/>
</g>
<path d="m2.9105 0.79377c-1.1727 0-2.1167 0.94406-2.1167 2.1167 0 0.044499 0.001455 0.088495 0.004134 0.1323 0.067936-1.1105 0.98444-1.9844 2.1126-1.9844s2.0447 0.87394 2.1126 1.9844c0.00268-0.0438 0.00414-0.087797 0.00414-0.1323 0-1.1727-0.94406-2.1167-2.1167-2.1167z" fill="#ffffff" opacity=".1" stroke-width="1.0001"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 880 B

View File

@@ -0,0 +1,7 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-3 -3)">
<circle cx="11" cy="11" r="8" fill="#ff5555"/>
<path d="m7 12v-2h8v2z" fill="#ffffff"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 471 B

View File

@@ -0,0 +1,9 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 4.2335 4.2335" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-.79417 -.78678)">
<g transform="translate(.53 -290.92)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-295.94" y="-4.498" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#673ab7"/>
<path d="m2.778 292.77a0.397 0.397 0 0 0-0.397 0.397c0 0.03 6e-3 0.058 0.013 0.086l-0.426 0.265a0.397 0.397 0 1 0 0 0.62l0.426 0.265a0.38 0.38 0 0 0-0.013 0.086 0.397 0.397 0 1 0 0.15-0.31l-0.427-0.264a0.38 0.38 0 0 0 0.013-0.087 0.38 0.38 0 0 0-0.013-0.087l0.426-0.264a0.397 0.397 0 1 0 0.248-0.707z" fill="#ffffff"/>
</g>
<path d="m2.9105 0.79377c-1.1727 0-2.1167 0.94406-2.1167 2.1167 0 0.044499 0.001455 0.088495 0.004134 0.1323 0.067936-1.1105 0.98444-1.9844 2.1126-1.9844s2.0447 0.87394 2.1126 1.9844c0.00268-0.0438 0.00414-0.087797 0.00414-0.1323 0-1.1727-0.94406-2.1167-2.1167-2.1167z" fill="#ffffff" opacity=".1" stroke-width="1.0001"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 991 B

View File

@@ -0,0 +1,8 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 4.2335 4.2335" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-.79374 -.79372)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-5.0272" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#4d4d4d" stroke-width="1.0001"/>
<path class="ColorScheme-Text" d="m3.2847 2.5363c-0.032063-0.032063-0.066555-0.05997-0.10305-0.084042l-0.1944 0.1944c0.039514 0.019162 0.077181 0.043557 0.11036 0.076734 0.15709 0.15709 0.15709 0.40419 0 0.56128l-0.56128 0.56128c-0.15709 0.15709-0.40419 0.15709-0.56128 0s-0.15709-0.40419 0-0.56128l0.16005-0.16005c-0.036114-0.10343-0.055842-0.21119-0.054448-0.31973l-0.29269 0.29269c-0.25751 0.25751-0.25751 0.67796 0 0.93546 0.25751 0.25751 0.67796 0.25751 0.93546 0l0.56128-0.56128c0.25751-0.25751 0.25751-0.67796 0-0.93546z" color="#5d656b" fill="#ffffff" stroke-width=".26459"/>
<path class="ColorScheme-Text" d="m2.5363 3.2847c0.032063 0.032063 0.066555 0.05997 0.10305 0.084042l0.1944-0.1944c-0.039514-0.019159-0.07717-0.043568-0.11035-0.076747-0.15709-0.15709-0.15709-0.40419 0-0.56128l0.56128-0.56128c0.15709-0.15709 0.40419-0.15709 0.56128 0s0.15709 0.40419 0 0.56128l-0.16005 0.16005c0.036114 0.10343 0.055842 0.21119 0.054447 0.31973l0.29269-0.29269c0.25751-0.25751 0.25751-0.67796 0-0.93546-0.25751-0.25751-0.67796-0.25751-0.93546 0l-0.56128 0.56128c-0.25751 0.25751-0.25751 0.67796 0 0.93546z" color="#5d656b" fill="#ffffff" stroke-width=".26459"/>
<path transform="scale(.26459)" d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,7 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 4.2335 4.2335" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-.79381 -.79277)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-5.026" y="-5.027" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#62a0ea"/>
<path d="m2.9105 0.79377c-1.1727 0-2.1167 0.94406-2.1167 2.1167 0 0.044499 0.001455 0.088495 0.004134 0.1323 0.067936-1.1105 0.98444-1.9844 2.1126-1.9844s2.0447 0.87394 2.1126 1.9844c0.00268-0.0438 0.00414-0.087797 0.00414-0.1323 0-1.1727-0.94406-2.1167-2.1167-2.1167z" fill="#ffffff" opacity=".1" stroke-width="1.0001"/>
<path transform="scale(.26459)" d="m10.938 6.0039a5 5 0 0 0-3.4727 1.4629 5 5 0 0 0-1.457 3.5332h-1.0078l2 3 2-3h-0.99023a3 3 0 0 1 0.86914-2.1191 3 3 0 0 1 2.2871-0.87305l1.6582-1.6602a5 5 0 0 0-1.8867-0.34375zm4.0625 1.9961-2 3h1a3 3 0 0 1-0.87891 2.123 3 3 0 0 1-2.2812 0.86719l-1.6602 1.6621a5 5 0 0 0 5.3555-1.1152 5 5 0 0 0 1.4609-3.5371h1.0039l-2-3z" fill="#ffffff" stroke-width="3.7794"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1018 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-2.999 -2.992)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-18.992" y="-18.998" width="16" height="16" rx="7.9987" ry="7.9987" fill="#545454" stroke-width="2.7487"/>
<path d="m8.0908 8.1069 5.8162 5.8162m0.0027-5.8162-5.8217 5.8162" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-width="1.8169"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 800 B

View File

@@ -0,0 +1,13 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 4.2335 4.2335" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-.79381 -.79416)">
<g transform="translate(0,-291.18)">
<g transform="translate(3.969,1.588)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-294.62" y="-1.058" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#ff8135"/>
<path d="m-2.117 292.24h2.117v1.323h-2.117z" fill="#ffffff"/>
<rect x="-1.72" y="291.31" width="1.323" height="1.852" ry=".661" fill="none" stroke="#ffffff" stroke-linejoin="round" stroke-width=".265"/>
</g>
<rect x="1.852" y="293.56" width="1.058" height=".265" ry="0" fill="#ff8135" paint-order="markers stroke fill"/>
</g>
<path d="m2.9105 0.79377c-1.1727 0-2.1167 0.94406-2.1167 2.1167 0 0.044499 0.001455 0.088495 0.004134 0.1323 0.067936-1.1105 0.98444-1.9844 2.1126-1.9844s2.0447 0.87394 2.1126 1.9844c0.00268-0.0438 0.00414-0.087797 0.00414-0.1323 0-1.1727-0.94406-2.1167-2.1167-2.1167z" fill="#ffffff" opacity=".1" stroke-width="1.0001"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,13 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -2.9995)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-18.999" y="-18.999" width="15.998" height="15.998" rx="8.001" ry="8.001" fill="#f67400" stroke-width="3.7794"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
<path d="m15 6-2 2-1-1-1.75 1.75 3 3 1.75-1.75-1-1 2-2v-0.5c0-0.277-0.223-0.5-0.5-0.5zm-6.25 4.25-1.75 1.75 1 1-2 2v0.5c0 0.277 0.223 0.5 0.5 0.5h0.5l2-2 1 1 1.75-1.75z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 918 B

View File

@@ -0,0 +1,9 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 4.2335 4.2335" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-.79351 -.7952)">
<g transform="matrix(.72727 0 0 .72727 3.295 -210.78)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-296.74" y="-2.381" width="5.821" height="5.821" rx="2.91" ry="2.91" fill="#d32f2f"/>
<path d="m-1.587 292.77 2.116 2.116m1e-3 -2.116-2.118 2.116" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-width=".661"/>
</g>
<path d="m2.9105 0.79377c-1.1727 0-2.1167 0.94406-2.1167 2.1167 0 0.044499 0.001455 0.088495 0.004134 0.1323 0.067936-1.1105 0.98444-1.9844 2.1126-1.9844s2.0447 0.87394 2.1126 1.9844c0.00268-0.0438 0.00414-0.087797 0.00414-0.1323 0-1.1727-0.94406-2.1167-2.1167-2.1167z" fill="#ffffff" opacity=".1" stroke-width="1.0001"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 822 B

View File

@@ -0,0 +1,14 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -3)">
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#f67400"/>
<circle cx="11" cy="15" r="1" fill="#ffffff"/>
<path d="m10 13h2v-7h-2z" fill="#ffffff" fill-rule="evenodd"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 754 B

View File

Before

Width:  |  Height:  |  Size: 802 B

After

Width:  |  Height:  |  Size: 802 B

View File

Before

Width:  |  Height:  |  Size: 438 B

After

Width:  |  Height:  |  Size: 438 B

View File

Before

Width:  |  Height:  |  Size: 268 B

After

Width:  |  Height:  |  Size: 268 B

View File

Before

Width:  |  Height:  |  Size: 266 B

After

Width:  |  Height:  |  Size: 266 B

View File

@@ -0,0 +1,20 @@
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg">
<style
type="text/css"
id="current-color-scheme">
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}
</style>
<rect style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Highlight" height="16" rx="2" width="16"/>
<path d="m2 0c-1.108 0-2 .892-2 2v12c0 1.108.892 2 2 2h12c1.108 0 2-.892 2-2v-12c0-1.108-.892-2-2-2zm0 1h12c.554 0 1 .446 1 1v12c0 .554-.446 1-1 1h-12c-.554 0-1-.446-1-1v-12c0-.554.446-1 1-1z" style="fill:currentColor;fill-opacity:0.6;stroke:none" class="ColorScheme-Text"/>
<g fill="#fff">
<path d="m7 2v4h-4v2h4v4h2v-4h4v-2h-4v-4z"/>
<path d="m15 14a1 1 0 0 1 -1 1 1 1 0 0 1 -1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1z"/>
<path d="m9 14a1 1 0 0 1 -1 1 1 1 0 0 1 -1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1z"/>
<path d="m12 14a1 1 0 0 1 -1 1 1 1 0 0 1 -1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 479 B

After

Width:  |  Height:  |  Size: 479 B

View File

Before

Width:  |  Height:  |  Size: 823 B

After

Width:  |  Height:  |  Size: 823 B

View File

Before

Width:  |  Height:  |  Size: 276 B

After

Width:  |  Height:  |  Size: 276 B

View File

Before

Width:  |  Height:  |  Size: 341 B

After

Width:  |  Height:  |  Size: 341 B

View File

Before

Width:  |  Height:  |  Size: 392 B

After

Width:  |  Height:  |  Size: 392 B

View File

Before

Width:  |  Height:  |  Size: 328 B

After

Width:  |  Height:  |  Size: 328 B

View File

Before

Width:  |  Height:  |  Size: 554 B

After

Width:  |  Height:  |  Size: 554 B

View File

@@ -0,0 +1,20 @@
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg">
<style
type="text/css"
id="current-color-scheme">
.ColorScheme-NegativeText {
color:#da4453;
}
.ColorScheme-Text {
color:#232629;
}
</style>
<rect style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-NegativeText" height="16" rx="2" width="16"/>
<path style="fill:currentColor;fill-opacity:0.6;stroke:none" class="ColorScheme-Text" d="M2 0C.892 0 0 .892 0 2v12c0 1.108.892 2 2 2h12c1.108 0 2-.892 2-2V2c0-1.108-.892-2-2-2zm0 1h12c.554 0 1 .446 1 1v12c0 .554-.446 1-1 1H2c-.554 0-1-.446-1-1V2c0-.554.446-1 1-1z"/>
<g fill="#fff">
<path d="M2 7v2h12V7z"/>
<path d="m15 14a1 1 0 0 1 -1 1 1 1 0 0 1 -1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1z"/>
<path d="m9 14a1 1 0 0 1 -1 1 1 1 0 0 1 -1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1z"/>
<path d="m12 14a1 1 0 0 1 -1 1 1 1 0 0 1 -1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1010 B

View File

Before

Width:  |  Height:  |  Size: 553 B

After

Width:  |  Height:  |  Size: 553 B

View File

Before

Width:  |  Height:  |  Size: 186 B

After

Width:  |  Height:  |  Size: 186 B

View File

@@ -0,0 +1,21 @@
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg">
<style
type="text/css"
id="current-color-scheme">
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}
</style>
<rect style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Highlight" height="16" rx="2" width="16"/>
<path d="M2 0C.892 0 0 .892 0 2v12c0 1.108.892 2 2 2h12c1.108 0 2-.892 2-2V2c0-1.108-.892-2-2-2zm0 1h12c.554 0 1 .446 1 1v12c0 .554-.446 1-1 1H2c-.554 0-1-.446-1-1V2c0-.554.446-1 1-1z" style="fill:currentColor;fill-opacity:0.6;stroke:none" class="ColorScheme-Text"/>
<g fill="#fff">
<path d="M8 4l-6 6 1.414 1.414L8 6.828l4.586 4.586L14 10z"/>
<path d="m15 14a1 1 0 0 1 -1 1 1 1 0 0 1 -1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1z"/>
<path d="m9 14a1 1 0 0 1 -1 1 1 1 0 0 1 -1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1z"/>
<path d="m12 14a1 1 0 0 1 -1 1 1 1 0 0 1 -1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 445 B

After

Width:  |  Height:  |  Size: 445 B

View File

@@ -0,0 +1,13 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -3)">
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#3daee9"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
<g fill="#ffffff">
<path class="ColorScheme-Highlight" d="m11 5.556 1.7 3.444 3.8 0.552-2.75 2.6805 0.649 3.785-3.399-1.787-3.399 1.787 0.649-3.785-2.75-2.6805 3.8-0.552z" color="#3daee9" opacity=".5"/>
<path d="m11 5.5566v8.6738l3.3984 1.7871-0.64844-3.7852 2.75-2.6797-3.8008-0.55273z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 893 B

View File

@@ -0,0 +1,13 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -3)">
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#3daee9"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
<g transform="matrix(-1,0,0,1,22,0)" fill="#ffffff">
<path class="ColorScheme-Highlight" d="m11 5.556 1.7 3.444 3.8 0.552-2.75 2.6805 0.649 3.785-3.399-1.787-3.399 1.787 0.649-3.785-2.75-2.6805 3.8-0.552z" color="#3daee9" opacity=".5"/>
<path d="m11 5.5566v8.6738l3.3984 1.7871-0.64844-3.7852 2.75-2.6797-3.8008-0.55273z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 927 B

View File

@@ -0,0 +1,13 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -3)">
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#999999"/>
<path class="ColorScheme-Highlight" d="m11 5.556 1.7 3.444 3.8 0.552-2.75 2.6805 0.649 3.785-3.399-1.787-3.399 1.787 0.649-3.785-2.75-2.6805 3.8-0.552z" color="#3daee9" fill="#ffffff"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 846 B

13
src/emblems/16/rating.svg Normal file
View File

@@ -0,0 +1,13 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -3)">
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#3daee9"/>
<path class="ColorScheme-Highlight" d="m11 5.556 1.7 3.444 3.8 0.552-2.75 2.6805 0.649 3.785-3.399-1.787-3.399 1.787 0.649-3.785-2.75-2.6805 3.8-0.552z" color="#3daee9" fill="#ffffff"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 846 B

View File

@@ -0,0 +1,15 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -3)">
<g transform="matrix(0,-1,-1,0,22,22)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-19" y="-19" width="16" height="16" rx="8.0019" ry="8.0019" fill="#ff7800" stroke-width="3.7798"/>
<path d="m13 8v2h-3c-1.662 0-3 1.338-3 3v4.9336c0.61892 0.35663 1.2897 0.63486 2 0.81641v-5.75c0-0.554 0.446-1 1-1h3v2l4-3z" fill="#ffffff"/>
</g>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 925 B

View File

@@ -0,0 +1,13 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3 -3)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-19" y="-19" width="16" height="16" rx="8.0019" ry="8.0019" fill="#3daee9" stroke-width="3.7798"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
<path d="m13 8v2h-3c-1.662 0-3 1.338-3 3v4.9336c0.61892 0.35663 1.2897 0.63486 2 0.81641v-5.75c0-0.554 0.446-1 1-1h3v2l4-3-4-3z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 876 B

View File

@@ -0,0 +1,13 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<g transform="translate(-3.0001 -2.996)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-18.995" y="-18.999" width="15.998" height="15.998" rx="8.001" ry="8.001" fill="#ff7800" stroke-width="3.7794"/>
<path d="m11 3c-4.4321 0-7.9999 3.568-7.9999 7.9999 0 0.16818 0.0055 0.33446 0.015624 0.50002 0.25676-4.197 3.7206-7.4999 7.9844-7.4999s7.7278 3.303 7.9844 7.4999c0.01013-0.16554 0.01565-0.33182 0.01565-0.50002 0-4.4321-3.568-7.9999-7.9999-7.9999z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
<path d="m10.938 6.0039a5 5 0 0 0-3.4727 1.4629 5 5 0 0 0-1.457 3.5332h-1.0078l2 3 2-3h-0.99023a3 3 0 0 1 0.86914-2.1191 3 3 0 0 1 2.2871-0.87305l1.6582-1.6602a5 5 0 0 0-1.8867-0.34375zm4.0625 1.9961-2 3h1a3 3 0 0 1-0.87891 2.123 3 3 0 0 1-2.2812 0.86719l-1.6602 1.6621a5 5 0 0 0 5.3555-1.1152 5 5 0 0 0 1.4609-3.5371h1.0039l-2-3z" fill="#ffffff" stroke-width="3.7794"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,19 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0 -3.7794 -3.7794 0 0 0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<g transform="matrix(3.7794 0 0 3.7794 1.3524e-8 -1100.5)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-296.21" y="-5.027" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#3daee9"/>
</g>
<path d="m10 6v4h-4v2h4v4h2v-4h4v-2h-4v-4z" fill="#fff"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5 4.2638 0 7.7276 3.303 7.9844 7.5 0.010128-0.16554 0.015625-0.33182 0.015625-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,19 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-PositiveText {
color:#27ae60;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0 -3.7794 -3.7794 0 0 0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<g transform="matrix(3.7794 0 0 3.7794 1.3524e-8 -1100.5)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-296.21" y="-5.027" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#27ae60"/>
<path d="m1.919 294.28 0.595 0.595 1.389-1.587" fill="none" stroke="#fff" stroke-linecap="square" stroke-width=".529"/>
</g>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5 4.2638 0 7.7276 3.303 7.9844 7.5 0.010128-0.16554 0.015625-0.33182 0.015625-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,18 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#3bce8b"/>
<circle cx="11" cy="15" r="1" fill="#ffffff"/>
<path d="m10 13h2v-7h-2z" fill="#ffffff" fill-rule="evenodd"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,18 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#4f97ed"/>
<circle cx="11" cy="15" r="1" fill="#ffffff"/>
<path d="m10 13h2v-7h-2z" fill="#ffffff" fill-rule="evenodd"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,22 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<g transform="matrix(3.7794 0 0 3.7794 4.5041e-8 -1100.5)">
<g transform="translate(3.969,1.588)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-294.62" y="-1.058" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#ff8135"/>
<path d="m-2.117 292.24h2.117v1.323h-2.117z" fill="#fff"/>
<rect x="-1.72" y="291.31" width="1.323" height="1.852" ry=".661" fill="none" stroke="#fff" stroke-linejoin="round" stroke-width=".265"/>
</g>
</g>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,17 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-PositiveText {
color:#27ae60;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<rect transform="matrix(0,-1,-1,0,0,0)" x="-18.999" y="-18.999" width="15.998" height="15.998" rx="8.001" ry="8.001" fill="#27ae60" stroke-width="3.7794"/>
<path d="m13 6.333c-1.6938 0.0016324-3.4355 1.07-4 2.667h-2v4h2.001c0.56435 1.5967 2.3055 2.6649 3.999 2.667v-1.667h3v-1h-3v-4h3v-1h-3z" fill="#fff"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,13 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<g transform="matrix(.4 0 0 .4 1.4 1.4)">
<circle cx="24" cy="24" r="20" fill="#f55"/>
<path d="m16.5 16.5h5v15h-5zm10 0h5v15h-5z" fill="#fff"/>
</g>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 887 B

View File

@@ -0,0 +1,13 @@
<svg width="22" height="22" version="1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<g transform="matrix(.4 0 0 .4 1.4 1.4)">
<circle cx="24" cy="24" r="20" fill="#78c367"/>
<path d="M26 38h-4v-4h4zm4.14-15.5l-1.8 1.84C26.9 25.8 26 27 26 30h-4v-1c0-2.2.9-4.2 2.34-5.66l2.48-2.52A3.91 3.91 0 0 0 28 18c0-2.2-1.8-4-4-4s-4 1.8-4 4h-4c0-4.42 3.58-8 8-8s8 3.58 8 8c0 1.76-.72 3.36-1.86 4.5z" fill="#fff"/>
</g>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,14 @@
<svg width="22" height="22" version="1.1" viewBox="0 0 5.821 5.821" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<rect transform="matrix(0 -.99999 -.99999 0 0 0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<g transform="translate(3.969 -289.59)">
<rect transform="matrix(0 -1 -1 0 0 0)" x="-294.62" y="-1.058" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#545454"/>
<path d="M-2.117 292.237H0v1.323h-2.117z" fill="#fff"/>
<rect x="-1.72" y="291.31" width="1.323" height="1.852" ry=".661" fill="none" stroke="#fff" stroke-linejoin="round" stroke-width=".265"/>
</g>
<path d="m2.9105 0.79377c-1.1727 0-2.1167 0.94406-2.1167 2.1167 0 0.044499 0.001455 0.088495 0.004134 0.1323 0.067936-1.1105 0.98444-1.9844 2.1126-1.9844s2.0447 0.87394 2.1126 1.9844c0.00268-0.0438 0.00414-0.087797 0.00414-0.1323 0-1.1727-0.94406-2.1167-2.1167-2.1167z" fill="#ffffff" opacity=".1" stroke-width="1.0001"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,11 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<circle cx="11" cy="11" r="8" fill="#f55"/>
<path d="m7 12v-2h8v2z" fill="#fff"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 815 B

View File

@@ -0,0 +1,13 @@
<svg width="22" height="22" version="1.1" viewBox="0 0 5.821 5.821" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<rect transform="matrix(0 -.99999 -.99999 0 0 0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<g transform="translate(.53 -290.92)">
<rect transform="matrix(0 -1 -1 0 0 0)" x="-295.94" y="-4.498" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#673ab7"/>
<path d="M2.778 292.767a.397.397 0 0 0-.397.397c0 .03.006.058.013.086l-.426.265a.397.397 0 1 0 0 .62l.426.265a.38.38 0 0 0-.013.086.397.397 0 1 0 .15-.31l-.427-.264a.38.38 0 0 0 .013-.087.38.38 0 0 0-.013-.087l.426-.264a.397.397 0 1 0 .248-.707z" fill="#fff"/>
</g>
<path d="m2.9105 0.79377c-1.1727 0-2.1167 0.94406-2.1167 2.1167 0 0.044499 0.001455 0.088495 0.004134 0.1323 0.067936-1.1105 0.98444-1.9844 2.1126-1.9844s2.0447 0.87394 2.1126 1.9844c0.00268-0.0438 0.00414-0.087797 0.00414-0.1323 0-1.1727-0.94406-2.1167-2.1167-2.1167z" fill="#ffffff" opacity=".1" stroke-width="1.0001"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,12 @@
<svg width="22" height="22" version="1.1" viewBox="0 0 5.821 5.821" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<rect transform="matrix(0,-1,-1,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<rect transform="matrix(0,-1,-1,0,0,0)" x="-5.0272" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#4d4d4d" stroke-width="1.0001"/>
<path class="ColorScheme-Text" d="m3.2847 2.5363c-0.032063-0.032063-0.066555-0.05997-0.10305-0.084042l-0.1944 0.1944c0.039514 0.019162 0.077181 0.043557 0.11036 0.076734 0.15709 0.15709 0.15709 0.40419 0 0.56128l-0.56128 0.56128c-0.15709 0.15709-0.40419 0.15709-0.56128 0s-0.15709-0.40419 0-0.56128l0.16005-0.16005c-0.036114-0.10343-0.055842-0.21119-0.054448-0.31973l-0.29269 0.29269c-0.25751 0.25751-0.25751 0.67796 0 0.93546 0.25751 0.25751 0.67796 0.25751 0.93546 0l0.56128-0.56128c0.25751-0.25751 0.25751-0.67796 0-0.93546z" color="#5d656b" fill="#fff" stroke-width=".26459"/>
<path class="ColorScheme-Text" d="m2.5363 3.2847c0.032063 0.032063 0.066555 0.05997 0.10305 0.084042l0.1944-0.1944c-0.039514-0.019159-0.07717-0.043568-0.11035-0.076747-0.15709-0.15709-0.15709-0.40419 0-0.56128l0.56128-0.56128c0.15709-0.15709 0.40419-0.15709 0.56128 0s0.15709 0.40419 0 0.56128l-0.16005 0.16005c0.036114 0.10343 0.055842 0.21119 0.054447 0.31973l0.29269-0.29269c0.25751-0.25751 0.25751-0.67796 0-0.93546-0.25751-0.25751-0.67796-0.25751-0.93546 0l-0.56128 0.56128c-0.25751 0.25751-0.25751 0.67796 0 0.93546z" color="#5d656b" fill="#fff" stroke-width=".26459"/>
<path transform="scale(.26459)" d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0054974 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5 4.2638 0 7.7276 3.303 7.9844 7.5 0.010128-0.16554 0.015625-0.33182 0.015625-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,11 @@
<svg width="22" height="22" version="1.1" viewBox="0 0 5.821 5.821" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<rect transform="matrix(0 -.99999 -.99999 0 0 0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<rect transform="matrix(0,-1,-1,0,0,0)" x="-5.026" y="-5.027" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#62a0ea"/>
<path d="m2.9105 0.79377c-1.1727 0-2.1167 0.94406-2.1167 2.1167 0 0.044499 0.001455 0.088495 0.004134 0.1323 0.067936-1.1105 0.98444-1.9844 2.1126-1.9844s2.0447 0.87394 2.1126 1.9844c0.00268-0.0438 0.00414-0.087797 0.00414-0.1323 0-1.1727-0.94406-2.1167-2.1167-2.1167z" fill="#ffffff" opacity=".1" stroke-width="1.0001"/>
<path transform="scale(.26459)" d="m10.938 6.0039a5 5 0 0 0-3.4727 1.4629 5 5 0 0 0-1.457 3.5332h-1.0078l2 3 2-3h-0.99023a3 3 0 0 1 0.86914-2.1191 3 3 0 0 1 2.2871-0.87305l1.6582-1.6602a5 5 0 0 0-1.8867-0.34375zm4.0625 1.9961-2 3h1a3 3 0 0 1-0.87891 2.123 3 3 0 0 1-2.2812 0.86719l-1.6602 1.6621a5 5 0 0 0 5.3555-1.1152 5 5 0 0 0 1.4609-3.5371h1.0039l-2-3z" fill="#ffffff" stroke-width="3.7794"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,14 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<rect transform="matrix(0,-1,-1,0,0,0)" x="-18.992" y="-18.998" width="16" height="16" rx="7.9987" ry="7.9987" fill="#545454" stroke-width="2.7487"/>
<path d="m8.0908 8.1069 5.8162 5.8162m0.0027-5.8162-5.8217 5.8162" fill="none" stroke="#ffffff" stroke-linecap="square" stroke-width="1.8169"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,17 @@
<svg width="22" height="22" version="1.1" viewBox="0 0 5.821 5.821" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<rect transform="matrix(0 -.99999 -.99999 0 0 0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<g transform="translate(0 -291.18)">
<g transform="translate(3.969 1.588)">
<rect transform="matrix(0 -1 -1 0 0 0)" x="-294.62" y="-1.058" width="4.233" height="4.233" rx="2.117" ry="2.117" fill="#ff8135"/>
<path d="M-2.117 292.237H0v1.323h-2.117z" fill="#fff"/>
<rect x="-1.72" y="291.31" width="1.323" height="1.852" ry=".661" fill="none" stroke="#fff" stroke-linejoin="round" stroke-width=".265"/>
</g>
<rect x="1.852" y="293.56" width="1.058" height=".265" ry="0" fill="#ff8135" paint-order="markers stroke fill"/>
</g>
<path d="m2.9105 0.79377c-1.1727 0-2.1167 0.94406-2.1167 2.1167 0 0.044499 0.001455 0.088495 0.004134 0.1323 0.067936-1.1105 0.98444-1.9844 2.1126-1.9844s2.0447 0.87394 2.1126 1.9844c0.00268-0.0438 0.00414-0.087797 0.00414-0.1323 0-1.1727-0.94406-2.1167-2.1167-2.1167z" fill="#ffffff" opacity=".1" stroke-width="1.0001"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,17 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<rect transform="matrix(0,-1,-1,0,0,0)" x="-18.999" y="-18.999" width="15.998" height="15.998" rx="8.001" ry="8.001" fill="#f67400" stroke-width="3.7794"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
<path d="m15 6-2 2-1-1-1.75 1.75 3 3 1.75-1.75-1-1 2-2v-0.5c0-0.277-0.223-0.5-0.5-0.5zm-6.25 4.25-1.75 1.75 1 1-2 2v0.5c0 0.277 0.223 0.5 0.5 0.5h0.5l2-2 1 1 1.75-1.75z" fill="#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,13 @@
<svg width="22" height="22" version="1.1" viewBox="0 0 5.821 5.821" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<rect transform="matrix(0 -.99999 -.99999 0 0 0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<g transform="matrix(.72727 0 0 .72727 3.295 -210.78)">
<rect transform="matrix(0 -1 -1 0 0 0)" x="-296.74" y="-2.381" width="5.821" height="5.821" rx="2.91" ry="2.91" fill="#d32f2f"/>
<path d="m-1.587 292.77 2.116 2.116m1e-3 -2.116-2.118 2.116" fill="none" stroke="#fff" stroke-linecap="square" stroke-width=".661"/>
</g>
<path d="m2.9105 0.79377c-1.1727 0-2.1167 0.94406-2.1167 2.1167 0 0.044499 0.001455 0.088495 0.004134 0.1323 0.067936-1.1105 0.98444-1.9844 2.1126-1.9844s2.0447 0.87394 2.1126 1.9844c0.00268-0.0438 0.00414-0.087797 0.00414-0.1323 0-1.1727-0.94406-2.1167-2.1167-2.1167z" fill="#ffffff" opacity=".1" stroke-width="1.0001"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,18 @@
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#f67400"/>
<circle cx="11" cy="15" r="1" fill="#fff"/>
<path d="m10 13h2v-7h-2z" fill="#fff" fill-rule="evenodd"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,17 @@
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#3daee9"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
<g fill="#ffffff">
<path class="ColorScheme-Highlight" d="m11 5.556 1.7 3.444 3.8 0.552-2.75 2.6805 0.649 3.785-3.399-1.787-3.399 1.787 0.649-3.785-2.75-2.6805 3.8-0.552z" color="#3daee9" opacity=".5"/>
<path d="m11 5.5566v8.6738l3.3984 1.7871-0.64844-3.7852 2.75-2.6797-3.8008-0.55273z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,17 @@
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#3daee9"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
<g transform="matrix(-1,0,0,1,22,0)" fill="#ffffff">
<path class="ColorScheme-Highlight" d="m11 5.556 1.7 3.444 3.8 0.552-2.75 2.6805 0.649 3.785-3.399-1.787-3.399 1.787 0.649-3.785-2.75-2.6805 3.8-0.552z" color="#3daee9" opacity=".5"/>
<path d="m11 5.5566v8.6738l3.3984 1.7871-0.64844-3.7852 2.75-2.6797-3.8008-0.55273z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,17 @@
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#999"/>
<path class="ColorScheme-Highlight" d="m11 5.556 1.7 3.444 3.8 0.552-2.75 2.6805 0.649 3.785-3.399-1.787-3.399 1.787 0.649-3.785-2.75-2.6805 3.8-0.552z" color="#3daee9" fill="#fff"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

17
src/emblems/22/rating.svg Normal file
View File

@@ -0,0 +1,17 @@
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<circle transform="scale(1,-1)" cx="11" cy="-11" r="8" fill="#3daee9"/>
<path class="ColorScheme-Highlight" d="m11 5.556 1.7 3.444 3.8 0.552-2.75 2.6805 0.649 3.785-3.399-1.787-3.399 1.787 0.649-3.785-2.75-2.6805 3.8-0.552z" color="#3daee9" fill="#fff"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,19 @@
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<g transform="matrix(0 -1 -1 0 22 22)">
<rect transform="matrix(0,-1,-1,0,0,0)" x="-19" y="-19" width="16" height="16" rx="8.0019" ry="8.0019" fill="#ff7800" stroke-width="3.7798"/>
<path d="m13 8v2h-3c-1.662 0-3 1.338-3 3v4.9336c0.61892 0.35663 1.2897 0.63486 2 0.81641v-5.75c0-0.554 0.446-1 1-1h3v2l4-3z" fill="#ffffff"/>
</g>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,17 @@
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0,-3.7794,-3.7794,0,0,0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<rect transform="matrix(0,-1,-1,0,0,0)" x="-19" y="-19" width="16" height="16" rx="8.0019" ry="8.0019" fill="#3daee9" stroke-width="3.7798"/>
<path d="m11 3c-4.432 0-8 3.568-8 8 0 0.16818 0.0055 0.33446 0.015625 0.5 0.25676-4.197 3.7206-7.5 7.9844-7.5s7.7276 3.303 7.9844 7.5c0.01013-0.16554 0.01563-0.33182 0.01563-0.5 0-4.432-3.568-8-8-8z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
<path d="m13 8v2h-3c-1.662 0-3 1.338-3 3v4.9336c0.61892 0.35663 1.2897 0.63486 2 0.81641v-5.75c0-0.554 0.446-1 1-1h3v2l4-3-4-3z" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,17 @@
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter976" x="-.147" y="-.147" width="1.294" height="1.294" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.2592991"/>
</filter>
</defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
color:#f67400;
}
.ColorScheme-Text {
color:#232629;
}</style>
<rect transform="matrix(0 -3.7794 -3.7794 0 0 0)" x="-5.2918" y="-5.0272" width="4.2335" height="4.2335" rx="2.1172" ry="2.1172" fill="#000000" filter="url(#filter976)" opacity=".25" stroke-width="1.0001"/>
<rect transform="matrix(0,-1,-1,0,0,0)" x="-18.995" y="-18.999" width="15.998" height="15.998" rx="8.001" ry="8.001" fill="#ff7800" stroke-width="3.7794"/>
<path d="m11 3c-4.4321 0-7.9999 3.568-7.9999 7.9999 0 0.16818 0.0055 0.33446 0.015624 0.50002 0.25676-4.197 3.7206-7.4999 7.9844-7.4999 4.2638 0 7.7278 3.303 7.9844 7.4999 0.01013-0.16554 0.01565-0.33182 0.01565-0.50002 0-4.4321-3.568-7.9999-7.9999-7.9999z" fill="#ffffff" opacity=".1" stroke-width="3.7798"/>
<path d="m10.938 6.0039a5 5 0 0 0-3.4727 1.4629 5 5 0 0 0-1.457 3.5332h-1.0078l2 3 2-3h-0.99023a3 3 0 0 1 0.86914-2.1191 3 3 0 0 1 2.2871-0.87305l1.6582-1.6602a5 5 0 0 0-1.8867-0.34375zm4.0625 1.9961-2 3h1a3 3 0 0 1-0.87891 2.123 3 3 0 0 1-2.2812 0.86719l-1.6602 1.6621a5 5 0 0 0 5.3555-1.1152 5 5 0 0 0 1.4609-3.5371h1.0039l-2-3z" fill="#ffffff" stroke-width="3.7794"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg"><path color="#000" d="M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1zm3.481 3.783c.912-.026 1.38 1.081.727 1.717l-5.207 5.207L4.094 8.8c-.982-.942.471-2.396 1.414-1.414l1.493 1.493 3.793-3.793a1 1 0 0 1 .687-.303z" fill="#363636" overflow="visible" style="marker:none"/></svg>

After

Width:  |  Height:  |  Size: 326 B

View File

@@ -0,0 +1 @@
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M3 0c-.554 0-1 .446-1 1v14c0 .554.446 1 1 1h10c.554 0 1-.446 1-1V5c0-.554-4.446-5-5-5zm.5 1H9v4h4v9.5c0 .277-.223.5-.5.5h-9a.499.499 0 0 1-.5-.5v-13c0-.277.223-.5.5-.5z" fill="#363636" overflow="visible" style="marker:none" color="#bebebe"/></svg>

After

Width:  |  Height:  |  Size: 319 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m5 2c-2.196-0.00297-3.9965 1.7657-4 3.9455-5.8443e-4 1.0244 0.43313 1.9859 1.1484 2.7169 0.026458 0.059481 0.064275 0.11322 0.11133 0.15821l0.00586 0.00586 5.3086 5.0354c0.19073 0.18174 0.48975 0.18433 0.68359 0.0059l5.4766-5.0413c1e-6 -6.5e-4 1e-6 -0.0013 0-0.00195 0.75694-0.69763 1.1727-1.6669 1.2246-2.6857 0.0052-0.16958-9.67e-4 -0.26283-2e-3 -0.3926-0.1146-2.0823-1.8336-3.7496-3.959-3.7463-1.234 0-2.2652 0.62622-3 1.5001-0.75414-0.89289-1.8019-1.5005-2.996-1.5001zm0 1.0001c1.0548-9.058e-4 2.0315 0.54323 2.5742 1.4317 0.19529 0.31712 0.65627 0.31712 0.85156 0 0.52277-0.85596 1.4747-1.4317 2.5723-1.4317 6.67e-4 1.3e-6 0.0013 1.3e-6 2e-3 0 1.6625-0.00262 2.9954 1.3143 2.998 2.9474-1e-6 6.5e-4 -1e-6 0.0013 0 0.00195-6e-4 0.81051-0.33949 1.586-0.94141 2.1407l-5.1329 4.7249-4.9609-4.7053-0.011719-0.013672c-0.0013-6.557e-4 -0.0026-0.00131-0.00391-0.00195-0.0013-0.00131-0.0026-0.00261-0.00391-0.00391-0.60287-0.55523-0.94329-1.3311-0.94335-2.1427v-0.00195c0.00369-1.6325 1.3378-2.9485 3-2.9455z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill="#363636" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path d="m8 0c-4.423 0-8 3.576-8 8s3.577 8 8 8c4.424 0 8-3.576 8-8s-3.576-8-8-8zm0 1c3.866 0 7 3.134 7 7s-3.134 7-7 7-7-3.134-7-7 3.134-7 7-7zm0 2c-0.554 0-1 0.446-1 1v5c0 0.554 0.446 1 1 1s1-0.446 1-1v-5c0-0.554-0.446-1-1-1zm0 8c-1.3333 0-1.3333 2 0 2s1.3333-2 0-2z" style="fill:currentColor" class="ColorScheme-Text"/>
</svg>

After

Width:  |  Height:  |  Size: 520 B

View File

@@ -0,0 +1 @@
<svg height="16.008" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M13.369 0L5.994 1.906c-.554.149-1 .74-1 1.313v9.094a2.84 2.84 0 0 0-2.031-.22c-1.35.352-2.196 1.485-1.907 2.532.29 1.047 1.62 1.632 2.97 1.281 1.076-.28 1.818-1.071 1.937-1.906l.03-8.594 7-1.875v6.782a2.84 2.84 0 0 0-2.03-.22c-1.35.352-2.196 1.485-1.907 2.532.29 1.047 1.62 1.632 2.969 1.281 1.077-.28 1.82-1.071 1.938-1.906l.03-11.187c0-.43-.265-.752-.625-.813z" fill="#363636" overflow="visible" style="marker:none" color="#bebebe"/></svg>

After

Width:  |  Height:  |  Size: 517 B

View File

@@ -0,0 +1 @@
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg"><path color="#000" d="M11.481 4.783c.912-.026 1.38 1.081.727 1.717l-5.207 5.207L4.094 8.8c-.982-.942.471-2.396 1.414-1.414l1.493 1.493 3.793-3.793a1 1 0 0 1 .687-.303z" fill="#363636" overflow="visible" style="marker:none"/></svg>

After

Width:  |  Height:  |  Size: 293 B

View File

@@ -0,0 +1,3 @@
<svg width="16.004" height="16.004" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path class="ColorScheme-Text" d="m2 1c-1.108 0-2 0.892-2 2v9c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-9c0-1.108-0.892-2-2-2zm0 1h12c0.554 0 1 0.446 1 1v9l-5-5-3.4794 4-2.5206-2-3 3v-9c0-0.554 0.446-1 1-1zm2.5 2c-0.82843 0-1.5 0.67157-1.5 1.5s0.67157 1.5 1.5 1.5 1.5-0.67157 1.5-1.5-0.67157-1.5-1.5-1.5z" color="#363636" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 440 B

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