Fixed issues

This commit is contained in:
vinceliuice
2024-10-31 11:04:00 +08:00
parent ebca4f67d3
commit d0baf27b32
19 changed files with 412 additions and 212 deletions

View File

@@ -14,12 +14,14 @@ fi
SRC_DIR="$(cd "$(dirname "$0")" && pwd)"
source "${SRC_DIR}/lib_colors.sh"
THEME_NAME=Colloid
COLOR_VARIANTS=('-Light' '-Dark' '')
THEME_VARIANTS=('' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey')
SCHEME_VARIANTS=('' '-Nord' '-Dracula' '-Gruvbox' '-Everforest' '-Catppuccin')
COLOR_VARIANTS=('-Light' '-Dark' '')
themes=()
schemes=()
colors=()
usage() {
cat << EOF
@@ -62,9 +64,10 @@ install() {
colors_folder
if [[ "${theme}" != '' ]]; then
if [[ "${scheme}" != '' ]]; then
cp -r "${SRC_DIR}"/notint/*.svg "${THEME_DIR}"/places/scalable
sed -i "s/#60c0f0/${theme_color}/g" "${THEME_DIR}"/places/scalable/*.svg
sed -i "s/#60c0f0/${theme_color}/g" "${THEME_DIR}"/apps/scalable/*.svg
fi
cp -r "${SRC_DIR}"/links/* "${THEME_DIR}"
@@ -133,6 +136,198 @@ install() {
gtk-update-icon-cache "${THEME_DIR}"
}
colors_folder() {
case "$theme" in
'')
theme_color='#5b9bf8'
;;
-Purple)
theme_color='#BA68C8'
;;
-Pink)
theme_color='#F06292'
;;
-Red)
theme_color='#F44336'
;;
-Orange)
theme_color='#FB8C00'
;;
-Yellow)
theme_color='#FFD600'
;;
-Green)
theme_color='#66BB6A'
;;
-Teal)
theme_color='#4DB6AC'
;;
-Grey)
theme_color='#888888'
;;
esac
if [[ "$scheme" == '-Nord' ]]; then
case "$theme" in
'')
theme_color='#89a3c2'
;;
-Purple)
theme_color='#c89dbf'
;;
-Pink)
theme_color='#dc98b1'
;;
-Red)
theme_color='#d4878f'
;;
-Orange)
theme_color='#dca493'
;;
-Yellow)
theme_color='#eac985'
;;
-Green)
theme_color='#a0c082'
;;
-Teal)
theme_color='#83b9b8'
;;
-Grey)
theme_color='#757a99'
;;
esac
fi
if [[ "$scheme" == '-Dracula' ]]; then
case "$theme" in
'')
theme_color='#6272a4'
;;
-Purple)
theme_color='#bd93f9'
;;
-Pink)
theme_color='#ff79c6'
;;
-Red)
theme_color='#ff5555'
;;
-Orange)
theme_color='#ffb86c'
;;
-Yellow)
theme_color='#f1fa8c'
;;
-Green)
theme_color='#50fa7b'
;;
-Teal)
theme_color='#50fae9'
;;
-Grey)
theme_color='#757a99'
;;
esac
fi
if [[ "$scheme" == '-Gruvbox' ]]; then
case "$theme" in
'')
theme_color='#83a598'
;;
-Purple)
theme_color='#d386cd'
;;
-Pink)
theme_color='#d3869b'
;;
-Red)
theme_color='#fb4934'
;;
-Orange)
theme_color='#fe8019'
;;
-Yellow)
theme_color='#fabd2f'
;;
-Green)
theme_color='#b8bb26'
;;
-Teal)
theme_color='#8ec07c'
;;
-Grey)
theme_color='#868686'
;;
esac
fi
if [[ "$scheme" == '-Everforest' ]]; then
case "$theme" in
'')
theme_color='#7fbbb3'
;;
-Purple)
theme_color='#D699B6'
;;
-Pink)
theme_color='#d3869b'
;;
-Red)
theme_color='#E67E80'
;;
-Orange)
theme_color='#E69875'
;;
-Yellow)
theme_color='#DBBC7F'
;;
-Green)
theme_color='#A7C080'
;;
-Teal)
theme_color='#83C092'
;;
-Grey)
theme_color='#7a8478'
;;
esac
fi
if [[ "$scheme" == '-Catppuccin' ]]; then
case "$theme" in
'')
theme_color='#8caaee'
;;
-Purple)
theme_color='#ca9ee6'
;;
-Pink)
theme_color='#f4b8e4'
;;
-Red)
theme_color='#ea999c'
;;
-Orange)
theme_color='#fe8019'
;;
-Yellow)
theme_color='#ef9f76'
;;
-Green)
theme_color='#a6d189'
;;
-Teal)
theme_color='#81c8be'
;;
-Grey)
theme_color='#7c7f93'
;;
esac
fi
}
while [[ "$#" -gt 0 ]]; do
case "${1:-}" in
-d|--dest)
@@ -164,32 +359,32 @@ while [[ "$#" -gt 0 ]]; do
;;
nord)
schemes+=("${SCHEME_VARIANTS[1]}")
echo -e "\nNord ColorScheme version! ..."
echo -e "\nNord ColorScheme version! ...\n"
shift
;;
dracula)
schemes+=("${SCHEME_VARIANTS[2]}")
echo -e "\nDracula ColorScheme version! ..."
echo -e "\nDracula ColorScheme version! ...\n"
shift
;;
gruvbox)
schemes+=("${SCHEME_VARIANTS[3]}")
echo -e "\nGruvbox ColorScheme version! ..."
echo -e "\nGruvbox ColorScheme version! ...\n"
shift
;;
everforest)
schemes+=("${SCHEME_VARIANTS[4]}")
echo -e "\nEverforest ColorScheme version! ..."
echo -e "\nEverforest ColorScheme version! ...\n"
shift
;;
catppuccin)
schemes+=("${SCHEME_VARIANTS[5]}")
echo -e "\nCatppuccin ColorScheme version! ..."
echo -e "\nCatppuccin ColorScheme version! ...\n"
shift
;;
all)
schemes+=("${SCHEME_VARIANTS[@]}")
echo -e "\All ColorSchemes version! ..."
echo -e "\All ColorSchemes version! ...\n"
shift
;;
-*|--*)
@@ -313,7 +508,7 @@ install_theme() {
done
}
clean_old_theme
#clean_old_theme
if [[ "${remove}" == 'true' ]]; then
remove_theme

View File

@@ -1,191 +0,0 @@
colors_folder() {
case "$theme" in
'')
theme_color='#5b9bf8'
;;
-Purple)
theme_color='#BA68C8'
;;
-Pink)
theme_color='#F06292'
;;
-Red)
theme_color='#F44336'
;;
-Orange)
theme_color='#FB8C00'
;;
-Yellow)
theme_color='#FFD600'
;;
-Green)
theme_color='#66BB6A'
;;
-Teal)
theme_color='#4DB6AC'
;;
-Grey)
theme_color='#888888'
;;
esac
if [[ "$scheme" == '-Nord' ]]; then
case "$theme" in
'')
theme_color='#89a3c2'
;;
-Purple)
theme_color='#c89dbf'
;;
-Pink)
theme_color='#dc98b1'
;;
-Red)
theme_color='#d4878f'
;;
-Orange)
theme_color='#dca493'
;;
-Yellow)
theme_color='#eac985'
;;
-Green)
theme_color='#a0c082'
;;
-Teal)
theme_color='#83b9b8'
;;
-Grey)
theme_color='#757a99'
;;
esac
fi
if [[ "$scheme" == '-Dracula' ]]; then
case "$theme" in
'')
theme_color='#6272a4'
;;
-Purple)
theme_color='#bd93f9'
;;
-Pink)
theme_color='#ff79c6'
;;
-Red)
theme_color='#ff5555'
;;
-Orange)
theme_color='#ffb86c'
;;
-Yellow)
theme_color='#f1fa8c'
;;
-Green)
theme_color='#50fa7b'
;;
-Teal)
theme_color='#50fae9'
;;
-Grey)
theme_color='#757a99'
;;
esac
fi
if [[ "$scheme" == '-Gruvbox' ]]; then
case "$theme" in
'')
theme_color='#83a598'
;;
-Purple)
theme_color='#d386cd'
;;
-Pink)
theme_color='#d3869b'
;;
-Red)
theme_color='#fb4934'
;;
-Orange)
theme_color='#fe8019'
;;
-Yellow)
theme_color='#fabd2f'
;;
-Green)
theme_color='#b8bb26'
;;
-Teal)
theme_color='#8ec07c'
;;
-Grey)
theme_color='#868686'
;;
esac
fi
if [[ "$scheme" == '-Everforest' ]]; then
case "$theme" in
'')
theme_color='#7fbbb3'
;;
-Purple)
theme_color='#D699B6'
;;
-Pink)
theme_color='#d3869b'
;;
-Red)
theme_color='#E67E80'
;;
-Orange)
theme_color='#E69875'
;;
-Yellow)
theme_color='#DBBC7F'
;;
-Green)
theme_color='#A7C080'
;;
-Teal)
theme_color='#83C092'
;;
-Grey)
theme_color='#7a8478'
;;
esac
fi
if [[ "$scheme" == '-Catppuccin' ]]; then
case "$theme" in
'')
theme_color='#8caaee'
;;
-Purple)
theme_color='#ca9ee6'
;;
-Pink)
theme_color='#f4b8e4'
;;
-Red)
theme_color='#ea999c'
;;
-Orange)
theme_color='#fe8019'
;;
-Yellow)
theme_color='#ef9f76'
;;
-Green)
theme_color='#a6d189'
;;
-Teal)
theme_color='#81c8be'
;;
-Grey)
theme_color='#7c7f93'
;;
esac
fi
}

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.6 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@@ -1 +1,17 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64" viewBox="0 0 16.933 16.933"><defs><linearGradient id="a" x1="445.28" x2="445.28" y1="179.28" y2="200.07" gradientTransform="matrix(.38954 0 0 .38184 -165.51 -63.432)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#60c0f0"/><stop offset="1" stop-color="#83d4fb"/></linearGradient></defs><image xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADsAAAAKCAYAAAAKAya7AAAACXBIWXMAAA7DAAAOwwHHb6hkAAAA GXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAMFJREFUSInVltEOwyAIRaH1/794 rXvBhF2vDhb6MBIC1gY4gVpV6kQLY6H0iiCRAvEdTfrRPAjUkz5bh4pQZzMq4GMOlm8H0sGPKsai yX3hh9MT1kN3wLs8TFZdYjA30QvWCC9tATrgmvnN1INHIKOgK2D/jAEPwJfpZVbN/4hxJAr5e4mO MRtllbnDQizLw4R9u6yrt8yjjCNMx/ipA4rZVb5vkAhbdkAxif56dnu/dhb9zN4k1ReBJy4WJRcK EZE37lJlFEBdtGUAAAAASUVORK5CYII=" width="15.61" height="2.646" x=".661" y="12.959" image-rendering="optimizeQuality" opacity=".5" preserveAspectRatio="none"/><path fill="#2c96d3" d="M2.21 2.38h2.695c.75 0 .783.029 1.542.63.697.526.948.43 1.864.43h6.412a1.146 1.146 0 0 1 1.152 1.151v6.895a1.15 1.15 0 0 1-1.152 1.152H2.21a1.15 1.15 0 0 1-1.151-1.152V3.532A1.15 1.15 0 0 1 2.21 2.38"/><rect width="14.816" height="10.054" x="1.058" y="4.498" fill="url(#a)" rx="1.152" ry="1.129"/><path fill="#fff" d="M2.21 4.498c-.638 0-1.152.503-1.152 1.128v.265c0-.625.514-1.129 1.152-1.129h12.513c.638 0 1.152.504 1.152 1.13v-.265c0-.626-.514-1.13-1.152-1.13z" opacity=".08"/><path d="M1.058 13.159v.265c0 .625.514 1.128 1.152 1.128h12.513c.638 0 1.152-.503 1.152-1.128v-.265c0 .625-.514 1.129-1.152 1.129H2.21a1.14 1.14 0 0 1-1.152-1.129" opacity=".15"/><path d="M2.21 4.233c-.638 0-1.152.504-1.152 1.129v.264c0-.625.514-1.128 1.152-1.128h12.513c.638 0 1.152.503 1.152 1.128v-.264c0-.625-.514-1.129-1.152-1.129z" opacity=".05"/><path d="M5.592 9.092 5.59 7.028l2.315-.345v2.409zm2.7-2.47 3.085-.493v2.963H8.29zm3.086 2.893-.001 2.964-3.086-.476V9.515zM7.906 11.95l-2.314-.348V9.514h2.313v2.434z" opacity=".15"/></svg>
<svg width="64" height="64" version="1.1" viewBox="0 0 16.933 16.933" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(.38956 0 0 .38184 -165.51 -63.433)" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
<stop stop-color="#ffffff" offset="1"/>
</linearGradient>
</defs>
<image x=".66145" y="13.021" width="15.61" height="2.6458" image-rendering="optimizeQuality" opacity=".5" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADsAAAAKCAYAAAAKAya7AAAACXBIWXMAAA7DAAAOwwHHb6hkAAAA GXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAMFJREFUSInVltEOwyAIRaH1/794 rXvBhF2vDhb6MBIC1gY4gVpV6kQLY6H0iiCRAvEdTfrRPAjUkz5bh4pQZzMq4GMOlm8H0sGPKsai yX3hh9MT1kN3wLs8TFZdYjA30QvWCC9tATrgmvnN1INHIKOgK2D/jAEPwJfpZVbN/4hxJAr5e4mO MRtllbnDQizLw4R9u6yrt8yjjCNMx/ipA4rZVb5vkAhbdkAxif56dnu/dhb9zN4k1ReBJy4WJRcK EZE37lJlFEBdtGUAAAAASUVORK5CYII="/>
<path class="ColorScheme-Highlight" d="m2.209 2.3801h2.6953c0.75003 0 0.78305 0.029 1.542 0.63001 0.69703 0.52601 0.94804 0.42999 1.8641 0.42999h6.4123c0.63724-0.00334 1.1548 0.51378 1.152 1.151v6.9566c0.0011 0.63671-0.51532 1.1531-1.152 1.152h-12.513c-0.63631 5.55e-4 -1.1521-0.51572-1.151-1.152v-8.0157c-0.0011069-0.63631 0.51471-1.1526 1.151-1.152z" color="#60c0f0" fill="currentColor" stroke-width=".26458"/>
<path d="m2.2091 2.3801h2.6953c0.75005 0 0.78305 0.029 1.542 0.63001 0.69703 0.52601 0.94806 0.42999 1.8641 0.42999h6.4123c0.63724-0.00334 1.1548 0.51378 1.152 1.151v6.9566c0.0011 0.63671-0.51532 1.1531-1.152 1.152h-12.513c-0.63631 5.56e-4 -1.1521-0.51572-1.151-1.152v-8.0157c-0.0011112-0.63631 0.51471-1.1526 1.151-1.152z" fill="#000000" opacity=".2" stroke-width=".26458"/>
<rect class="ColorScheme-Highlight" x="1.0583" y="4.4981" width="14.816" height="10.054" rx="1.152" ry="1.129" color="#60c0f0" fill="currentColor" stroke-width=".26458"/>
<path d="m2.21 4.4981c-0.638 0-1.152 0.50302-1.152 1.128v0.265c0-0.62501 0.514-1.129 1.152-1.129h12.513c0.638 0 1.152 0.50399 1.152 1.129v-0.265c0-0.62501-0.514-1.128-1.152-1.128z" fill="#ffffff" opacity=".08" stroke-width=".26458"/>
<path d="m1.0579 13.159v0.264c0 0.62599 0.514 1.129 1.152 1.129h12.513c0.638 0 1.152-0.50302 1.152-1.129v-0.264c0 0.62501-0.514 1.128-1.152 1.128h-12.513a1.138 1.138 0 0 1-1.152-1.128z" opacity=".15" stroke-width=".26458"/>
<path d="m2.21 4.2332c-0.638 0-1.152 0.50399-1.152 1.129v0.264c0-0.62501 0.514-1.128 1.152-1.128h12.513c0.638 0 1.152 0.50302 1.152 1.128v-0.264c0-0.62501-0.514-1.129-1.152-1.129z" opacity=".05" stroke-width=".26458"/>
<rect x="1.0583" y="4.4978" width="14.816" height="10.054" rx="1.152" ry="1.129" fill="url(#linearGradient946)" opacity=".2" stroke-width=".26458"/>
<path d="M5.592 9.092 5.59 7.028l2.315-.345v2.409zm2.7-2.47 3.085-.493v2.963H8.29zm3.086 2.893-.001 2.964-3.086-.476V9.515zM7.906 11.95l-2.314-.348V9.514h2.313v2.434z" opacity=".15"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,8 @@
<svg width="16px" height="16px" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path d="m9 4c0-0.55078 0.44531-1 1-1 0.55078 0 1 0.44922 1 1s-0.44922 1-1 1c-0.55469 0-1-0.44922-1-1z" fill="#363636"/>
<path d="m6 4c0-0.55078 0.44531-1 1-1 0.55078 0 1 0.44922 1 1s-0.44922 1-1 1c-0.55469 0-1-0.44922-1-1z" fill="#363636"/>
<path d="m3 4c0-0.55078 0.44922-1 1-1 0.55469 0 1 0.44922 1 1s-0.44531 1-1 1c-0.55078 0-1-0.44922-1-1z" fill="#363636"/>
<path d="m12.98 9v2c0 1.6484-1.3438 2.9922-2.9922 2.9922h-7c-0.54688 0-0.99609-0.44531-0.99609-0.99219 0-0.55078 0.44922-0.99609 0.99609-1l8.9844-0.01172c1.1016 0.0039 1.9961-0.88281 2-1.9844l-1-0.0039c-0.0039 0.54688-0.45312 0.99219-1 0.98828l-8.9844 0.01563c-1.1055 0-1.9961 0.89062-1.9961 1.9961 0 1.1016 0.89062 1.9922 1.9961 1.9922h7c2.207 0 3.9922-1.7852 3.9922-3.9922v-2z" fill="#363636"/>
<path d="m14 5.8047v0.19531c0 0.33383-0.08115 0.6477-0.22461 0.92383 0.12398 0.16544 0.19726 0.37017 0.19726 0.5918 0 0.53906-0.44141 0.98438-0.98438 0.98438-0.36865 0-0.69072-0.20534-0.85938-0.50586-0.042816 0.0027118-0.085382 0.0058594-0.12891 0.0058594h-0.93555c0.21586 0.86246 0.99353 1.5 1.9238 1.5 1.0977 0 1.9844-0.88672 1.9844-1.9844 0-0.73023-0.3902-1.3653-0.97266-1.7109z" fill="#363636"/>
<path d="m2 0c-1.108 0-2 0.892-2 2v4c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-4c0-1.108-0.892-2-2-2h-10zm0 1h10c0.554 0 1 0.446 1 1v4c0 0.554-0.446 1-1 1h-10c-0.554 0-1-0.446-1-1v-4c0-0.554 0.446-1 1-1z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,10 @@
<svg width="16px" height="16px" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path d="m3 3c-1.108 0-2 0.892-2 2v7c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-7c0-1.108-0.892-2-2-2h-10zm0 1h10c0.554 0 1 0.446 1 1v7c0 0.554-0.446 1-1 1h-10c-0.554 0-1-0.446-1-1v-7c0-0.554 0.446-1 1-1z" fill="#363636"/>
<rect x="4" y="1" width="1" height="3" rx=".5" ry=".5" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
<rect x="7.5" y="1" width="1" height="3" rx=".5" ry=".5" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
<rect x="11" y="1" width="1" height="3" rx=".5" ry=".5" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
<rect x="4" y="13" width="1" height="3" rx=".5" ry=".5" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
<rect x="7.5" y="13" width="1" height="3" rx=".5" ry=".5" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
<rect x="11" y="13" width="1" height="3" rx=".5" ry=".5" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
<rect x="2" y="11" width="12" height="1" rx="0" ry="0" fill="#363636" opacity=".45" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,9 @@
<svg width="16px" height="16px" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<rect x="1" y="7" width="14" height="1" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width=".9993" style="paint-order:fill markers stroke"/>
<path d="m5 1c-1.662 0-3 1.338-3 3v4h1v-4c0-1.108 0.892-2 2-2h6c1.108 0 2 0.892 2 2v4h1v-4c0-1.662-1.338-3-3-3z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
<path d="m0 14h6l1 1h-7z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width=".66144" style="paint-order:fill markers stroke"/>
<rect x="7.5" y="9" width="1" height="4" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
<rect transform="rotate(-45)" x="-4.2426" y="14.556" width="3" height="1" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
<rect transform="matrix(-.70711 -.70711 -.70711 .70711 0 0)" x="-15.556" y="3.2426" width="3" height="1" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
<path d="m16 14h-6l-1 1h7z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width=".66144" style="paint-order:fill markers stroke"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,6 @@
<svg width="16px" height="16px" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path d="m2 6v2.5c0 1.3828 1.1172 2.5 2.5 2.5h7.9766c0.5625 0 1.0234 0.46094 1.0234 1.0156-0.007812 0.55078-0.46484 0.99219-1.0234 0.98438h-6.4766v1h6.4688c1.1055 0.015625 2.0156-0.86328 2.0312-1.9766 0-1.1211-0.90234-2.0234-2.0234-2.0234h-7.9766c-0.82422 0-1.5-0.67578-1.5-1.5v-2.5z" fill="#363636"/>
<rect x="1" y="7" width="14" height="1" fill="#363636"/>
<path d="m5 1c-1.662 0-3 1.338-3 3v4h1v-4c0-1.108 0.892-2 2-2h6c1.108 0 2 0.892 2 2v4h1v-4c0-1.662-1.338-3-3-3z" fill="#363636"/>
<path d="m2.5 13c-0.831 0-1.5 0.669-1.5 1.5s0.669 1.5 1.5 1.5h4c0.831 0 1.5-0.669 1.5-1.5s-0.669-1.5-1.5-1.5h-4zm0 1h4c0.277 0 0.5 0.223 0.5 0.5s-0.223 0.5-0.5 0.5h-4c-0.277 0-0.5-0.223-0.5-0.5s0.223-0.5 0.5-0.5z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 833 B

View File

@@ -0,0 +1,4 @@
<svg width="16px" height="16px" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path d="m8.5 2.9727c-2.4805 0-4.5 2.0195-4.5 4.5 0 2.4805 2.0195 4.5 4.5 4.5 2.4805 0 4.5-2.0195 4.5-4.5 0-2.4805-2.0195-4.5-4.5-4.5zm-0.5 1.0371v0.52539c0 0.27734 0.22266 0.5 0.5 0.5s0.5-0.22266 0.5-0.5v-0.52539c0.59551 0.084407 1.1414 0.31513 1.5996 0.6582l-0.37695 0.375c-0.19531 0.19531-0.19531 0.51172 0 0.70703 0.19531 0.19531 0.51172 0.19531 0.70703 0l0.37695-0.37305c0.34148 0.45757 0.57198 1.0026 0.65625 1.5957h-0.52539c-0.27734 0-0.5 0.22266-0.5 0.5 0 0.27734 0.22266 0.5 0.5 0.5h0.52539c-0.084083 0.59456-0.31642 1.1418-0.6582 1.5996l-0.375-0.37305c-0.09375-0.09375-0.21875-0.14844-0.35156-0.14844s-0.26172 0.054688-0.35547 0.14844c-0.19531 0.19531-0.19531 0.51172 0 0.70703l0.375 0.37305c-0.4578 0.34178-1.0031 0.57217-1.5977 0.65625v-0.52539c0-0.27734-0.22266-0.5-0.5-0.5s-0.5 0.22266-0.5 0.5v0.52539c-0.59312-0.084266-1.1381-0.31477-1.5957-0.65625l0.37305-0.37305c0.19531-0.19531 0.19531-0.51172 0-0.70703-0.09375-0.09375-0.22266-0.14844-0.35547-0.14844s-0.25781 0.054688-0.35156 0.14844l-0.375 0.37305-0.0019531-0.0019531c-0.34217-0.4578-0.57198-1.0031-0.65625-1.5977h0.52539c0.27734 0 0.5-0.22266 0.5-0.5 0-0.27734-0.22266-0.5-0.5-0.5h-0.52539c0.084456-0.59312 0.31437-1.1381 0.65625-1.5957l0.37695 0.37305c0.19531 0.19531 0.51172 0.19531 0.70703 0 0.19531-0.19531 0.19531-0.51172 0-0.70703l-0.37695-0.375c0.45827-0.34328 1.005-0.57354 1.5996-0.6582zm0.5 1.9629c-0.82031 0-1.5 0.67969-1.5 1.5 0 0.82422 0.67969 1.5 1.5 1.5 0.82422 0 1.5-0.67578 1.5-1.5 0-0.82031-0.67578-1.5-1.5-1.5zm0 1c0.28125 0 0.5 0.21875 0.5 0.5 0 0.28125-0.21875 0.5-0.5 0.5s-0.5-0.21875-0.5-0.5c0-0.28125 0.21875-0.5 0.5-0.5z" fill="#363636"/>
<path d="m0 0v1h1c0.554 0 1 0.446 1 1v11 1 2h1v-2h2v1c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1v-1h2c1.108 0 2-0.892 2-2v-9c0-1.108-0.892-2-2-2h-11.268c-0.34498-0.59808-0.98965-1-1.7324-1h-1zm3 2h11c0.554 0 1 0.446 1 1v9c0 0.554-0.446 1-1 1h-2-1v1 1h-1v-2h-1v2h-1v-2h-1v2h-1v-1-1h-3v-11z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" style="paint-order:fill markers stroke"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16px" height="16px" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path d="m9 0c-1.1055 0-2 0.89453-2 2h-3.4688c-1.1055-0.015625-2.0156 0.86328-2.0312 1.9766 0 1.1211 0.90234 2.0234 2.0234 2.0234h7.9766c0.64917 0 1.2048 0.41923 1.4121 1h-4.4121-1-4.5c-1.1094 0-2 0.89063-2 2v2 1 2c0 1.1094 0.89063 2 2 2h4.5 1 4.5c1.1094 0 2-0.89063 2-2v-5c0-0.7495-0.40782-1.3976-1.0137-1.7402-0.12069-1.2695-1.1847-2.2598-2.4863-2.2598h-7.9766c-0.5625 0-1.0234-0.46094-1.0234-1.0156 0.007812-0.55078 0.46484-0.99219 1.0234-0.98438h3.7441c0.34567 0.59757 0.99171 1 1.7324 1h2v-1h2v-2h-2v-1h-2zm0 1h1v2h-1c-0.554 0-1-0.446-1-1s0.446-1 1-1zm-6 7h4.5v3h-5.5v-2c0-0.554 0.446-1 1-1zm5.5 0h4.5c0.554 0 1 0.446 1 1v2h-5.5v-3zm-6.5 4h5.5v3h-4.5c-0.554 0-1-0.446-1-1v-2zm6.5 0h5.5v2c0 0.554-0.446 1-1 1h-4.5v-3z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 850 B

View File

@@ -0,0 +1,11 @@
<svg width="16px" height="16px" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path d="m6.0312 12c-0.27344 0-0.53516 0.10938-0.72656 0.30078-0.19531 0.19531-0.30469 0.45703-0.30469 0.72656v2.4727c0 0.27734 0.22656 0.5 0.5 0.5h5c0.27734 0 0.5-0.22266 0.5-0.5v-2.4727c0.0039-0.26953-0.10547-0.53125-0.30078-0.72656-0.19141-0.19141-0.45312-0.30078-0.72656-0.30078zm-0.03125 2h1v1h-1zm3 0h1v1h-1z" fill="#363636"/>
<path d="m7.0312 8.9727c-1.6719 0-3.0312 1.3555-3.0312 3.0273 0 0.55078 0.44922 1 1 1h6c0.55469 0 1-0.44922 1-1 0-1.6719-1.3555-3.0273-3.0273-3.0273h-1.9414zm0 1h1.9414c1.1314 0 2.0273 0.89597 2.0273 2.0273h-6c0-1.1298 0.89988-2.0273 2.0312-2.0273z" fill="#363636"/>
<g transform="rotate(-90 7.9999 8.0003)" fill="#363636">
<g fill="#363636" fill-rule="evenodd">
<path d="m13.139 1.4277c-0.54546-0.42773-1.1387 0.22461-0.68359 0.73242 1.6202 1.5104 2.5416 3.6249 2.5449 5.8398-0.0026 2.2205-0.92793 4.3401-2.5547 5.8516-0.44531 0.47165 0.18064 1.1484 0.67774 0.72852 1.8304-1.6992 2.8725-4.0825 2.877-6.5801-0.0026-2.4925-1.0386-4.8722-2.8613-6.5723z" style="paint-order:normal"/>
<path d="m10.775 2.8887c-0.58741-0.53488-1.1988 0.22518-0.68359 0.73242 1.2147 1.1326 1.9056 2.7181 1.9082 4.3789-0.0019 1.6654-0.69594 3.2551-1.916 4.3887-0.46835 0.44623 0.17346 1.1467 0.67969 0.72852 1.423-1.3216 2.233-3.1751 2.2363-5.1172-0.0019-1.9383-0.80739-3.789-2.2246-5.1113z" style="paint-order:normal"/>
<path d="m8.4102 4.3496c-0.52095-0.49369-1.1551 0.22003-0.68359 0.73047 0.81045 0.75501 1.2715 1.8123 1.2734 2.9199-0.00128 1.1103-0.46396 2.1701-1.2773 2.9258-0.47259 0.42993 0.13957 1.1522 0.67969 0.73047 1.0168-0.94425 1.5955-2.2686 1.5977-3.6562-0.00172-1.3844-0.57738-2.7062-1.5898-3.6504z" style="paint-order:normal"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB