Fixed #105
42
install.sh
@@ -17,7 +17,7 @@ SRC_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||||
source "${SRC_DIR}/lib_colors.sh"
|
||||
|
||||
THEME_NAME=Colloid
|
||||
COLOR_VARIANTS=('' '-Light' '-Dark')
|
||||
COLOR_VARIANTS=('-Light' '-Dark' '')
|
||||
THEME_VARIANTS=('' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey')
|
||||
SCHEME_VARIANTS=('' '-Nord' '-Dracula' '-Gruvbox' '-Everforest' '-Catppuccin')
|
||||
|
||||
@@ -31,6 +31,7 @@ cat << EOF
|
||||
-s, --scheme VARIANTS Specify folder colorscheme variant(s) [default|nord|dracula|gruvbox|everforest|catppuccin|all]
|
||||
-t, --theme VARIANTS Specify folder color theme variant(s) [default|purple|pink|red|orange|yellow|green|teal|grey|all] (Default: blue)
|
||||
-notint, --notint Disable Follow ColorSheme for folders on KDE Plasma
|
||||
-r, --remove, -u, --uninstall Remove/Uninstall $THEME_NAME icon themes
|
||||
-h, --help Show help
|
||||
EOF
|
||||
}
|
||||
@@ -72,7 +73,7 @@ install() {
|
||||
if [[ "${color}" == '-Dark' ]]; then
|
||||
mkdir -p "${THEME_DIR}"/{apps,categories,devices,emblems,mimetypes,places,status}
|
||||
cp -r "${SRC_DIR}"/src/actions "${THEME_DIR}"
|
||||
cp -r "${SRC_DIR}"/src/apps/symbolic "${THEME_DIR}"/apps
|
||||
cp -r "${SRC_DIR}"/src/apps/{22,symbolic} "${THEME_DIR}"/apps
|
||||
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
|
||||
@@ -81,15 +82,16 @@ install() {
|
||||
cp -r "${SRC_DIR}"/src/status/{16,22,24,symbolic} "${THEME_DIR}"/status
|
||||
|
||||
# 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}/32/*
|
||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,apps,categories,devices,emblems,mimetypes,places,status}/symbolic/*
|
||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,devices,places,status}/{16,22,24}/*.svg
|
||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,devices}/32/*.svg
|
||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/apps/22/*.svg
|
||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,apps,categories,devices,emblems,mimetypes,places,status}/symbolic/*.svg
|
||||
|
||||
cp -r "${SRC_DIR}"/links/actions/{16,22,24,32,symbolic} "${THEME_DIR}"/actions
|
||||
cp -r "${SRC_DIR}"/links/devices/{16,22,24,32,symbolic} "${THEME_DIR}"/devices
|
||||
cp -r "${SRC_DIR}"/links/places/{16,22,24,symbolic} "${THEME_DIR}"/places
|
||||
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/{22,symbolic} "${THEME_DIR}"/apps
|
||||
cp -r "${SRC_DIR}"/links/categories/symbolic "${THEME_DIR}"/categories
|
||||
cp -r "${SRC_DIR}"/links/mimetypes/symbolic "${THEME_DIR}"/mimetypes
|
||||
|
||||
@@ -142,6 +144,11 @@ while [[ "$#" -gt 0 ]]; do
|
||||
name="${2}"
|
||||
shift 2
|
||||
;;
|
||||
-r|--remove|-u|--uninstall)
|
||||
remove='true'
|
||||
echo -e "\nUninstall icon themes...\n"
|
||||
shift
|
||||
;;
|
||||
-notint|--notint)
|
||||
notint='true'
|
||||
echo -e "\nInstall notint version! that folders will not follow system colorschemes..."
|
||||
@@ -285,6 +292,17 @@ clean_old_theme() {
|
||||
done
|
||||
}
|
||||
|
||||
remove_theme() {
|
||||
for theme in "${THEME_VARIANTS[@]}"; do
|
||||
for scheme in "${SCHEME_VARIANTS[@]}"; do
|
||||
for color in "${COLOR_VARIANTS[@]}"; do
|
||||
local THEME_DIR="${DEST_DIR}/${THEME_NAME}${theme}${scheme}${color}"
|
||||
[[ -d "$THEME_DIR" ]] && echo -e "Removing $THEME_DIR ..." && rm -rf "$THEME_DIR"
|
||||
done
|
||||
done
|
||||
done
|
||||
}
|
||||
|
||||
install_theme() {
|
||||
for theme in "${themes[@]}"; do
|
||||
for scheme in "${schemes[@]}"; do
|
||||
@@ -295,4 +313,14 @@ install_theme() {
|
||||
done
|
||||
}
|
||||
|
||||
clean_old_theme && install_theme
|
||||
clean_old_theme
|
||||
|
||||
if [[ "${remove}" == 'true' ]]; then
|
||||
remove_theme
|
||||
else
|
||||
install_theme
|
||||
fi
|
||||
|
||||
echo -e "\nFinished!\n"
|
||||
|
||||
|
||||
|
1
links/apps/22/accessories-text-editor.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
kwrite.svg
|
1
links/apps/22/com.anydesk.Anydesk.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
anydesk.svg
|
1
links/apps/22/korg-todo-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
../../actions/22/view-calendar-tasks.svg
|
1
links/apps/22/org.kde.elisa.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
elisa.svg
|
1
links/apps/22/org.kde.ktimetracker.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
ktimetracker.svg
|
1
links/apps/22/org.kde.kwrite.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
kwrite.svg
|
1
links/apps/22/org.kde.umbrello.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
umbrello.svg
|
1
links/apps/22/preferences-other-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
../../actions/22/application-menu.svg
|
1
links/apps/22/preferences-plugin-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
../../actions/22/kt-plugins.svg
|
1
links/apps/22/system-file-manager-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
../../actions/22/document-open-folder.svg
|
1
links/apps/22/utilities-terminal-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
../../actions/22/dialog-scripts.svg
|
@@ -1,14 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 11 3 A 8 8.0000086 0 0 0 3 11 A 8 8.0000086 0 0 0 11 19 L 15 19 L 15 16 L 11 16 A 5 5 0 0 1 6 11 A 5 5 0 0 1 11 6 L 15 6 L 15 3 L 11 3 z M 16 3 L 16 6 L 19 6 L 19 3 L 16 3 z M 16 16 L 16 19 L 19 19 L 19 16 L 16 16 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m11 3a8 8 0 0 0-8 8 8 8 0 0 0 8 8h4v-3h-4a5 5 0 0 1-5-5 5 5 0 0 1 5-5h4v-3h-4zm5 0v3h3v-3h-3zm-5 1h3v1h-3c-3.324 0-6 2.676-6 6 0 3.324 2.676 6 6 6h3v1h-3c-3.878 0-7-3.122-7-7 0-3.878 3.122-7 7-7zm6 0h1v1h-1v-1zm-1 12v3h3v-3h-3zm1 1h1v1h-1v-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 560 B After Width: | Height: | Size: 510 B |
@@ -1,14 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs><g transform="translate(1,1)">
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 11 3 A 8 8.0000086 0 0 0 3 11 A 8 8.0000086 0 0 0 11 19 L 15 19 L 15 16 L 11 16 A 5 5 0 0 1 6 11 A 5 5 0 0 1 11 6 L 15 6 L 15 3 L 11 3 z M 16 3 L 16 6 L 19 6 L 19 3 L 16 3 z M 16 16 L 16 19 L 19 19 L 19 16 L 16 16 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</g></svg>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m12 4a8 8 0 0 0-8 8 8 8 0 0 0 8 8h4v-3h-4a5 5 0 0 1-5-5 5 5 0 0 1 5-5h4v-3zm5 0v3h3v-3zm-5 1h3v1h-3c-3.324 0-6 2.676-6 6 0 3.324 2.676 6 6 6h3v1h-3c-3.878 0-7-3.122-7-7 0-3.878 3.122-7 7-7zm6 0h1v1h-1zm-1 12v3h3v-3zm1 1h1v1h-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 594 B After Width: | Height: | Size: 495 B |
14
src/apps/22/TeamViewer-symbolic.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<svg height="22" width="22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
class="ColorScheme-Text"
|
||||
style="fill:currentColor"
|
||||
d="m11 3c-4.4123515 0-8 3.5876487-8 8 0 4.412351 3.5876485 8 8 8 4.412351 0 8-3.587649 8-8 0-4.4123511-3.587649-7.9999997-8-8zm0 1c3.871912.0000003 7 3.1280885 7 7 0 3.871911-3.128088 7-7 7s-7-3.128088-7-7c0-3.8719117 3.128088-7 7-7zm-2.5 4-3 3 3 3v-2h5v2l3-3-3-3v2h-5z"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 545 B |
12
src/apps/22/akonadi-symbolic.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22" height="22">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
<g id="22-22-akonadi" transform="translate(0,-10)">
|
||||
<path id="path7" class="ColorScheme-Text" d="M 11 13 C 6.5817084 13 2.9999808 13.895432 3 15 L 3 18.994141 L 3 19 L 3 22.994141 L 3 23 L 3 27 C 2.9999808 28.104568 6.5817084 29 11 29 C 15.418292 29 19.000019 28.104568 19 27 L 19 23 L 19 19 L 19 15 C 19.000019 13.895432 15.418292 13 11 13 z M 11 14 C 14.865993 14 18 14.447715 18 15 C 18 15.552285 14.865993 16 11 16 C 7.1340068 16 4 15.552285 4 15 C 4 14.447715 7.1340068 14 11 14 z M 18 15.962891 L 18 18.033203 L 18 19 C 18 19.552285 14.865993 20 11 20 C 7.1340068 20 4 19.552285 4 19 L 4 18.037109 L 4 15.966797 C 5.4074293 16.603987 8.0884558 16.999708 11 17 C 13.91485 16.9989 16.596667 16.601589 18 15.962891 z M 18 19.962891 L 18 22.033203 L 18 23 C 18 23.552285 14.865993 24 11 24 C 7.1340068 24 4 23.552285 4 23 L 4 22.037109 L 4 19.966797 C 6.0449242 20.765443 8.2553846 20.932052 10.433594 20.994141 C 10.622063 20.997741 10.810982 20.9997 11 21 C 11.266763 21.000065 11.533372 20.996834 11.798828 20.990234 C 13.831395 20.881706 16.098876 20.799866 17.992188 19.966797 L 18 19.962891 z M 18 23.962891 L 18 27 C 18 27.552285 14.865993 28 11 28 C 7.1340068 28 4 27.552285 4 27 L 4 23.966797 C 4.1292021 24.025157 4.2700031 24.081873 4.421875 24.136719 C 6.3560885 24.779777 8.4074965 24.936388 10.433594 24.994141 C 10.622063 24.997741 10.810982 24.9997 11 25 C 11.266763 25.000065 11.533372 24.996834 11.798828 24.990234 C 13.831392 24.881703 16.098888 24.799913 17.992188 23.966797 L 18 23.962891 z " style="fill:currentColor;fill-opacity:1;stroke:none"/>
|
||||
<path id="path9" d="M 0 10 L 0 32 L 22 32 L 22 10 L 0 10 z " style="opacity:1;fill:none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
14
src/apps/22/akregator-symbolic.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 5 A 14 14 0 0 1 17 19 L 19 19 A 16 16 0 0 0 3 3 z M 3 8 L 3 10 A 9 9 0 0 1 12 19 L 14 19 A 11 11 0 0 0 3 8 z M 5.5 14 A 2.5 2.5 0 0 0 3 16.5 A 2.5 2.5 0 0 0 5.5 19 A 2.5 2.5 0 0 0 8 16.5 A 2.5 2.5 0 0 0 5.5 14 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 575 B |
12
src/apps/22/amarok-symbolic.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22" height="22">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
<g id="22-22-amarok" transform="translate(0,-10)">
|
||||
<path id="path7" class="ColorScheme-Text" d="m 11,13 c -4.418278,0 -8,3.581722 -8,8 0,4.418278 3.581722,8 8,8 4.418278,0 8,-3.581722 8,-8 0,-1.278859 -0.300401,-2.488432 -0.833984,-3.560547 -0.0063,-0.01127 -0.02391,-0.02817 -0.0293,-0.03906 4.7e-4,-2.3e-4 0.0049,-0.002 0.0059,-0.002 0.18504,-0.21856 0.28125,-0.468277 0.28125,-0.710937 0,-0.17523 -0.0682,-0.355708 -0.128906,-0.492188 2.9e-4,2.6e-4 0.0059,0.0039 0.0059,0.0039 0,0 -0.0012,-0.123828 -0.07617,-0.298828 -0.075,-0.175 -0.173828,-0.300782 -0.173828,-0.300782 0,0 -0.2375,0.0375 -0.375,0.0625 -0.1297,0.0236 -0.473192,0.213728 -0.513672,0.236329 C 15.449382,14.221004 13.750717,12.958114 11,13 Z m 0.199219,0.400391 c 2.155353,0.0033 4.202168,0.946089 5.605469,2.582031 -0.771741,0.19072 -1.98692,0.633934 -2.41211,0.740234 -0.49498,0.12374 -0.725831,0.235377 -1.519531,0.160156 -0.90469,-0.0857 -1.310858,-0.09284 -1.548828,-0.08594 -0.35634,-0.0315 -0.53711,-0.109375 -0.53711,-0.109375 l 0.03125,0.351562 c -0.23691,0.180629 -0.713629,0.442695 -1.693359,0.708985 -0.6364,0.0707 -1.166185,-0.124026 -1.484375,0.05273 -0.3182,0.17678 -1.3271936,0.618447 -1.8398438,0.742188 C 5.2881213,18.666708 4.9087594,18.89929 4.5996094,19 c -0.48839,0.1591 0.9675593,2.494141 1.5996094,2.800781 0,0 -0.2175707,0.225906 -0.4003907,0.416016 -0.43969,0.30041 -0.7871095,0.320312 -0.7871093,0.320312 l 0.023437,0.240235 C 4.8254613,22.888749 4.6292983,22.965385 4.4472656,23.029297 4.1538435,22.21819 4.0025365,21.362546 4,20.5 4.0039433,19.125219 4.3856864,17.77797 5.1035156,16.605469 6.484172,14.59908 8.7636867,13.400526 11.199219,13.400391 Z m 6.65039,4.166015 c 0.491759,1.0074 0.748213,2.113362 0.75,3.234375 -0.0015,2.484939 -1.250164,4.803217 -3.324218,6.171875 -0.643998,0.37594 -1.34046,0.653735 -2.066407,0.824219 0.03056,-0.234525 0.06104,-0.474588 0.08399,-0.712891 0.17366,-0.25517 0.40625,-0.259765 0.40625,-0.259765 0,0 -0.299225,-0.849607 -0.269531,-1.873047 0.0372,-0.24274 0.09976,-0.471923 0.179687,-0.689453 l 0.302734,0 c 0,0 -0.0378,-0.417407 0.132813,-0.841797 0.56207,-0.85425 1.32894,-1.424461 1.65625,-1.675781 0.30878,-0.2371 1.732673,-0.601175 2.033203,-0.671875 0.30052,-0.0707 0.583883,-0.548029 0.601563,-0.689454 0.0177,-0.14142 -0.08984,-0.40625 -0.08984,-0.40625 l -0.425782,-0.0957 c 0.105842,0.075 0.04519,0.150251 -0.132812,0.181641 -0.057,0.0101 -0.136049,0.01482 -0.224609,0.01563 0,0 -0.09271,-0.363551 -0.19336,-0.394531 -0.0861,-0.0265 -0.312355,0.257884 -0.308593,0.355468 -0.0963,-0.0163 -0.187929,-0.03765 -0.261719,-0.06445 C 16.424201,19.8746 16.125,19.8125 16.125,19.8125 c 0,0 0.299609,-0.675391 0.724609,-1.337891 0.27092,-0.42232 0.70796,-0.730253 1,-0.908203 z m -5.484375,0.15625 c 0.48595,-0.004 0.847657,0.140625 0.847657,0.140625 0,0 0.04719,0.455305 -1.31836,1.271485 -0.41865,0.25021 -1.519531,0.416015 -1.519531,0.416015 0,0 -0.0236,-0.575308 0.394531,-1.074219 0.49929,-0.5958 1.109763,-0.749446 1.595703,-0.753906 z M 6.09375,18.990234 c 0.0451,-0.001 0.080439,0.0028 0.1054688,0.0098 0.1999998,0.0625 0.6374806,0.857776 0.4003906,1.199219 L 7,20.599609 c 0.8,-0.799996 1.9937687,-0.242768 2.1992188,0.300782 0.2847291,0.75329 0.2255118,0.663707 -0.9550782,0.835937 -0.5003,0.073 -1.5209181,-0.108339 -1.9238281,-0.417969 C 5.9174025,21.008729 4.88125,19.36875 4.96875,19.28125 c 0.0766,-0.0766 0.80919,-0.282506 1.125,-0.291016 z m 11.507812,0.59961 c -0.0675,0.0241 -0.128906,0.308593 -0.128906,0.308593 0,0 0.0522,0.02798 0.322266,-0.0078 0.0727,-0.0181 -0.125839,-0.324859 -0.19336,-0.300781 z" style="fill:currentColor;fill-opacity:1;stroke:none"/>
|
||||
<path id="path9" d="M 0 10 L 0 32 L 22 32 L 22 10 L 0 10 z " style="opacity:1;fill:none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.2 KiB |
4
src/apps/22/anydesk.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="22" height="22" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="2" y="2" width="18" height="18" ry="3" fill="#d22e26"/>
|
||||
<path d="m9 7-4 4 4 4 4-4zm4 0-1 1 3 3-3 3 1 1 4-4z" fill="#faeae9"/>
|
||||
</svg>
|
After Width: | Height: | Size: 242 B |
13
src/apps/22/cantata-symbolic.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22" height="22">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
<g id="22-22-cantata" transform="translate(0,-10)">
|
||||
<path id="path7" class="ColorScheme-Text" d="m 11,12.999863 a 7.9998002,8 0 0 0 -8,8 7.9998002,8 0 0 0 8,8 7.9998002,8 0 0 0 8,-8 7.9998002,8 0 0 0 -8,-8 z m 0,1 a 7,7 0 0 1 7,7 7,7 0 0 1 -7,7 7,7 0 0 1 -7,-7 7,7 0 0 1 7,-7 z" style="fill:currentColor;fill-opacity:0.6;stroke:none"/>
|
||||
<path id="path9" class="ColorScheme-Text" d="m 10,12.999863 0,11.044922 c -0.83718,-0.3612 -1.8093231,-0.263585 -2.8457031,0.166016 -1.73476,0.7184 -2.7294463,2.293178 -2.2226563,3.517578 0.50678,1.2248 2.3253869,1.636768 4.0605469,0.917968 1.3687605,-0.5684 2.2070315,-2.045546 2.2070315,-2.935546 l 0,-8.710938 c 0,0 3.201172,0.39961 3.201172,3.599609 0,2.4 -0.800832,3.201172 -2.800782,5.201172 1.99995,-1.2 3.59961,-2.801172 3.59961,-5.201172 0,-3.199999 -2.469183,-4.639084 -3.101563,-5.271484 -0.39999,-0.4 -0.898437,-1.927734 -0.898437,-1.927734 L 10,12.999863 Z" style="fill:currentColor;fill-opacity:1;stroke:none"/>
|
||||
<path id="path11" d="M 0 10 L 0 32 L 22 32 L 22 10 L 0 10 z " style="opacity:1;fill:none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
7
src/apps/22/dialog-error.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-NegativeText {
|
||||
color:#da4453;
|
||||
}</style>
|
||||
<path class="ColorScheme-NegativeText" d="m5 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-12c0-1.108-0.892-2-2-2zm0 1h12c0.554 0 1 0.446 1 1v12c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-NegativeText" d="M 6.414,5 5,6.414 9.586,11 5,15.586 6.414,17 11,12.414 15.586,17 17,15.586 12.414,11 17,6.414 15.586,5 11,9.586 Z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 648 B |
7
src/apps/22/dialog-information.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
|
||||
color:#3daee9;
|
||||
}</style>
|
||||
<path class="ColorScheme-Highlight" d="m5 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-12c0-1.108-0.892-2-2-2h-12zm0 1h12c0.554 0 1 0.446 1 1v12c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Highlight" d="m10 6v2h2v-2zm0 4v6h2v-6z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 555 B |
6
src/apps/22/dialog-question.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
<path d="m5 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-12c0-1.108-0.892-2-2-2h-12zm0 1h12c0.554 0 1 0.446 1 1v12c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1zm6 1a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2h-1v3h2v-1.1328a4 4 0 0 0 3-3.8672 4 4 0 0 0-4-4zm-1 10v2h2v-2h-2z" fill="#9b59b6"/>
|
||||
</svg>
|
After Width: | Height: | Size: 528 B |
6
src/apps/22/dialog-warning.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
|
||||
color:#f67400;
|
||||
}</style>
|
||||
<path class="ColorScheme-NeutralText" d="m11.014 2c-0.6567-0.0048028-1.265 0.36751-1.5586 0.95508l-7.2734 14.545c-0.55535 1.1113 0.30451 2.5006 1.5469 2.5h14.545c1.2424 5.79e-4 2.1003-1.3887 1.5449-2.5l-7.2734-14.545h0.001953c-0.28926-0.5788-0.88435-0.94946-1.5312-0.95508h-0.001953zm-0.007813 1a0.72729 0.72727 0 0 1 0.64648 0.40234l7.2715 14.545a0.72729 0.72727 0 0 1-0.65039 1.0527h-14.545a0.72729 0.72727 0 0 1-0.65234-1.0527l7.2734-14.545a0.72729 0.72727 0 0 1 0.65625-0.40234zm-1.0059 5v5h2v-5h-2zm0 7v2h2v-2h-2z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 747 B |
9
src/apps/22/elisa-symbolic.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M3 7C3 6.93096 3.0035 6.86275 3.01033 6.79551C3.11275 5.787 3.96447 5 5 5H17C18.1046 5 19 5.89543 19 7V15C19 16.1046 18.1046 17 17 17H5C3.89543 17 3 16.1046 3 15V7ZM4.00516 6.89776C4.05637 6.3935 4.48223 6 5 6H17C17.5523 6 18 6.44772 18 7V13C18 13.5523 17.5523 14 17 14H5C4.44772 14 4 13.5523 4 13V7C4 6.96548 4.00175 6.93137 4.00516 6.89776ZM18 14.7324V15C18 15.5523 17.5523 16 17 16H5C4.44772 16 4 15.5523 4 15V14.7324C4.29417 14.9026 4.63571 15 5 15H17C17.3643 15 17.7058 14.9026 18 14.7324Z" class="ColorScheme-Text"/>
|
||||
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M8 8C6.89543 8 6 8.89543 6 10C6 11.1046 6.89543 12 8 12H14C15.1046 12 16 11.1046 16 10C16 8.89543 15.1046 8 14 8H8ZM7 10C7 9.44771 7.44772 9 8 9C8.55229 9 9 9.44771 9 10C9 10.5523 8.55229 11 8 11C7.44772 11 7 10.5523 7 10ZM13 10C13 9.44771 13.4477 9 14 9C14.5523 9 15 9.44771 15 10C15 10.5523 14.5523 11 14 11C13.4477 11 13 10.5523 13 10Z" class="ColorScheme-Text"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
8
src/apps/22/elisa.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="22" height="22" version="1.1" viewBox="0 0 5.8208 5.8208" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -291.18)">
|
||||
<path transform="matrix(.26458 0 0 .26458 0 291.18)" d="m4 5c-0.74689 0-1 0.2531-1 1v10c0 0.7469 0.25311 1 1 1h14c0.69165 0 1-0.2531 1-1v-10c0-0.7469-0.25311-1-1-1zm4 5c0.55228 0 1 0.44772 1 1s-0.44772 1-1 1c-0.63992 0-1-0.47109-1-1 0-0.55228 0.44772-1 1-1zm6 0c0.55228 0 1 0.44772 1 1s-0.44772 1-1 1-1-0.43208-1-0.98437 0.44772-1.0156 1-1.0156z" fill="#2f2f2f" style="paint-order:markers fill stroke"/>
|
||||
<path transform="matrix(.26458 0 0 .26458 0 291.18)" d="m4 7v6c0 0.75088 0.24621 1 1 1h12c0.75379 0 1-0.25302 1-1v-6c0-0.74682-0.24567-1-1-1h-12c-0.7506 0-0.99781 0.2467-1 1zm4 3c0.55228 0 1 0.44772 1 1s-0.44772 1-1 1-1-0.44772-1-1 0.44772-1 1-1zm6 0c0.55228 0 1 0.44772 1 1s-0.44772 1-1 1-1-0.44772-1-1 0.44772-1 1-1z" fill="#6bcbaf" style="paint-order:markers fill stroke"/>
|
||||
<path d="m1.0583 295.68 0.52917-0.79375h2.6458l0.52917 0.79375z" fill="#434343"/>
|
||||
<path transform="matrix(.26458 0 0 .26458 0 291.18)" d="m8 9c-1.5184-2.464e-4 -2 0.89167-2 1.998v0.001953c0 1.1064 0.58994 2 2 2h6c1.4861 0 2-0.89167 2-1.998v-0.001953c0-1.1064-0.53596-1.9988-2-1.999zm0 1c0.55228 0 1 0.44772 1 1s-0.44772 1-1 1-1-0.44772-1-1 0.44772-1 1-1zm6 0c0.55228 0 1 0.44772 1 1s-0.44772 1-1 1-1-0.44772-1-1 0.436-1 1-1z" fill="#1b1b1b" style="paint-order:markers fill stroke"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
14
src/apps/22/homerun.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 10 L 10 10 L 10 3 L 3 3 z M 12 3 L 12 10 L 19 10 L 19 3 L 12 3 z M 4 4 L 9 4 L 9 9 L 4 9 L 4 4 z M 13 4 L 18 4 L 18 9 L 13 9 L 13 4 z M 3 12 L 3 19 L 10 19 L 10 12 L 3 12 z M 12 12 L 12 19 L 13 19 L 18 19 L 19 19 L 19 18 L 19 13 L 19 12 L 18 12 L 13 12 L 12 12 z M 4 13 L 9 13 L 9 18 L 4 18 L 4 13 z M 13 13 L 18 13 L 18 18 L 13 18 L 13 13 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 710 B |
10
src/apps/22/hotspot-symbolic.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg height="22" viewBox="0 0 5.821 5.821" width="22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs id="defs1">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text" d="M2.75 3.404a.907.907 0 0 0-.094.007c-.468.06-.81.469-.824.945l.003.004c.026.042.056.085.082.134l.047-.048a.475.475 0 0 1 .176-.107.117.122 0 0 1 .098.22c.02-.012-.003.007-.012.048a.42.42 0 0 0-.004.13c.074.275.377.488.762.42.285-.068.562-.236.655-.595.06-.236.04-.461-.043-.653a.937.937 0 0 0-.846-.505zM3.246.239l-.017.19-.05.074-.021.14.03.075a.732.732 0 0 0 .024.06l.016.04.035-.124a2.69 2.69 0 0 0 .016-.057l.046-.161-.02-.144zm-.052.854a1.1 1.1 0 0 0-.083.16l-.073.142-.106.334a.301.301 0 0 0-.013.04l.166.271.085.089.031.032-.03-.191-.002-.017-.007-.682zM1.68 2.879l.01.371-.079.157-.009.277.076.139a.933.933 0 0 0 .017.033 1.03 1.03 0 0 1 .168-.378l.025-.158-.073-.275zM3.033.659c-.059.04-.114.083-.165.127l-.199.205-.213.353-.129.388-.048.425a2.43 2.43 0 0 0 .062.625v.002c.045.189.053.278.137.428.956-.167 1.59.571 1.376 1.368-.113.421-.46.624-.793.7-.469.081-.864-.172-.96-.527-.018-.117.01-.275.078-.315-.039.014-.086.03-.142.082-.095.09-.098.122-.222.156.06-.17-.273-.31-.213-.677l-.013.061c-.147.812.684 1.726 1.607 1.479a1.497 1.497 0 0 0 1.121-1.133c.071-.3.05-.608-.015-.867a1.71 1.71 0 0 0-.322-.638 2.196 2.196 0 0 0-.161-.181l-.002-.002-.004-.004a4.11 4.11 0 0 0-.376-.325l-.365-.316-.02-.021-.114-.15a.882.882 0 0 1-.026-.045l-.087-.25-.03-.342.042-.29a.879.879 0 0 1 .005-.019z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
21
src/apps/22/kalarm-symbolic.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22" height="22">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
.ColorScheme-Background {
|
||||
color:#eff0f1;
|
||||
}
|
||||
.ColorScheme-Accent {
|
||||
color:#3daee9;
|
||||
}
|
||||
.ColorScheme-ButtonText {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
<g transform="translate(-326,-534.3622) translate(0,2e-05)" id="kalarm">
|
||||
<rect y="534.36218" x="326" height="22" width="22" id="rect4178" style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/>
|
||||
<path class="ColorScheme-Text" style="fill:currentColor;fill-opacity:1;stroke:none" d="m 337,537.3622 a 1.5,1.5 0 0 0 -1.5,1.5 1.5,1.5 0 0 0 0.16797,0.68555 5,5 0 0 0 -3.66797,4.81445 3.5,6 0 0 1 -3,5.93164 l 0,1.02149 0,0.0469 11.08789,0 a 1.5,1.5 0 0 0 -0.0879,0.5 1.5,1.5 0 0 0 1.5,1.5 1.5,1.5 0 0 0 1.5,-1.5 1.5,1.5 0 0 0 -0.0879,-0.5 l 2.08789,0 0,-0.0469 0,-1.02148 a 3.5,6 0 0 1 -3,-5.93165 5,5 0 0 0 -3.66602,-4.81836 1.5,1.5 0 0 0 0.16602,-0.68164 1.5,1.5 0 0 0 -1.5,-1.5 z m 0,3 a 4,4 0 0 1 4,4 4.5,7 0 0 0 2.19531,6 l -12.39062,0 a 4.5,7 0 0 0 2.19531,-6 4,4 0 0 1 4,-4 z" id="path4183"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
6
src/apps/22/kate-symbolic.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="22" height="22" fill="none" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
<path class="ColorScheme-Text" d="m4.0425 5.5728c0.48696-0.00862 1.0082 0.01854 1.5081 0.10483 1.0011 0.17281 2.1182 0.62289 2.4862 1.7268l0.10632 0.31894-0.25526 0.2188c-0.52395 0.4491-1.1791 1.2454-1.6459 2.1409-0.08986 0.1724-0.1709 0.3449-0.24201 0.5161 0.252-0.1679 0.52456-0.3025 0.80133-0.4084 0.98241-0.3761 2.1016-0.43455 2.843-0.3782h2.0431c0.4171 0 0.9129-0.17684 1.4681-0.52513 0.5494-0.3446 1.1163-0.83138 1.6648-1.3882 0.704-0.71476 1.3578-1.5244 1.8835-2.249l-6.7766 1.8482-0.10505-0.52527c-0.30595-1.5297 0.13687-2.5825 0.90755-3.2307 0.1577-0.13271 0.3259-0.24563 0.4991-0.34111-0.04-7e-3 -0.08-0.01373-0.1198-0.0202-0.6091-0.09877-1.1668-0.13105-1.4841-0.13105-1.5342 0-2.935 0.53334-4.0737 1.2176-0.58609 0.35222-1.0951 0.73994-1.5087 1.1051zm5.2256 5.2226c-0.62083-0.0131-1.4226 0.0663-2.1093 0.3292-0.7729 0.2959-1.3177 0.7829-1.4178 1.575 0.14825 0.4948 0.52044 0.954 1.3196 1.2737 0.44354 0.1774 0.87224 0.3651 1.285 0.5608 0.47324-0.0145 0.74858-0.1631 0.92053-0.3453 0.19674-0.2084 0.3228-0.5295 0.36699-0.9608 0.07816-0.7629-0.11763-1.7007-0.36503-2.4326zm0.34655 4.3916c1.3702 0.7631 2.519 1.6013 3.3913 2.4067l-1.4425-4.8084 1.035 0.5175c0.9018 0.4509 2.2821 1.0559 3.4923 1.4112 0.5513 0.1618 1.0397 0.2634 1.4198 0.285l-5.9808-4.1865h-1.2077c0.2242 0.7603 0.3908 1.6886 0.3058 2.5175-0.0568 0.5546-0.2319 1.1186-0.63448 1.5452-0.11306 0.1198-0.23944 0.2239-0.37875 0.3118zm3.282-4.6384 6.3059 4.4142-0.1929 0.3858c-0.2782 0.5563-0.9057 0.6605-1.3945 0.6545-0.5308-0.0066-1.1668-0.1419-1.8061-0.3296-0.877-0.2575-1.824-0.633-2.6331-0.9934l1.4822 4.9409c0.1719 0.3396 0.2792 0.681 0.2792 1.004l-0.9789 0.1437-0.2306-0.7688c-0.0405-0.0748-0.0879-0.1547-0.1428-0.2398-0.2556-0.3958-0.6442-0.8535-1.1607-1.3414-1.032-0.9746-2.5388-2.0354-4.4065-2.933-0.42503-0.2042-0.86838-0.3999-1.3286-0.584-1.0972-0.4388-1.7203-1.1604-1.9403-2.0394-0.26801-1.0705 0.09174-2.2545 0.60627-3.2416 0.44378-0.85138 1.0407-1.6298 1.5956-2.1744-0.27016-0.39152-0.81156-0.65233-1.5703-0.78329-0.89139-0.15388-1.8979-0.09075-2.5484 0.01767l-1.2889 0.21482 0.8163-1.0204c0.49528-0.6191 1.434-1.5179 2.6766-2.2646 1.2447-0.748 2.823-1.3605 4.5888-1.3605 0.37019 0 0.98136 0.03647 1.6441 0.14395 0.6579 0.10668 1.402 0.28881 2.017 0.59634l-0.2236 0.94721c-0.4974 0-1.1939 0.15369-1.689 0.57014-0.384 0.32299-0.6997 0.84713-0.6429 1.7351l8.2457-2.2488-0.6773 1.0836c-0.5872 0.93961-1.606 2.3455-2.7662 3.5234-0.5801 0.58897-1.2078 1.1334-1.8458 1.5336-0.256 0.1606-0.5206 0.3023-0.7902 0.4141z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
13
src/apps/22/kde-symbolic.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="m 12.338532,1033.3623 -2.8326777,0.2648 0,10.9399 2.8015387,-0.3823 0,-4.676 3.735415,5.176 2.926063,-0.8824 -3.828788,-4.97 3.859917,-4.7054 -2.988315,-0.647 -3.704286,4.7054 0.03122,-4.823 z m -6.3812958,2.6761 c -0.031669,0 -0.069523,0.017 -0.093407,0.03 l -1.0894896,1.0587 c -0.0464,0.046 -0.06524,0.1229 -0.031228,0.1765 l 1.2762647,1.9999 c -0.22912,0.3639 -0.3979586,0.7624 -0.5291917,1.176 l -2.3657544,0.4708 c -0.06596,0.017 -0.1244304,0.054 -0.1244304,0.1181 l 0,1.4705 c 0,0.062 0.060955,0.1314 0.1244304,0.1465 l 2.3034978,0.5294 c 0.1226483,0.4795 0.3089159,0.9352 0.5603035,1.3526 l -1.3385048,1.9119 c -0.037132,0.054 -0.017821,0.1314 0.031228,0.1765 l 1.0895061,1.0291 c 0.0464,0.042 0.1301352,0.064 0.1867586,0.03 l 2.0856111,-1.2056 c 0.41008,0.2235 0.8399555,0.41 1.3073987,0.5292 l 0.4980409,2.2057 c 0.01429,0.064 0.05727,0.1179 0.124442,0.1179 l 1.5564029,0 c 0.0656,0 0.139939,-0.057 0.155625,-0.1179 l 0.560303,-2.2057 c 0.481832,-0.1229 0.949588,-0.3248 1.369655,-0.5586 l 2.054466,1.294 c 0.05654,0.034 0.138693,0.017 0.18677,-0.03 l 1.089485,-1.0294 c 0.04668,-0.046 0.06543,-0.1229 0.03122,-0.1763 l -0.747078,-1.1761 -0.249027,0.088 c -0.03554,0.017 -0.07255,0 -0.09341,-0.03 0,0 -0.470824,-0.6738 -1.089489,-1.5294 -0.739591,1.3676 -2.246808,2.2941 -3.98442,2.2941 -2.4687221,0 -4.4824767,-1.873 -4.4824767,-4.2055 0,-1.7157 1.0908083,-3.1915 2.6459092,-3.8525 l 0,-1.0882 c -0.2830458,0.094 -0.5494623,0.1896 -0.8093519,0.3237 -1.931e-4,0 -0.030455,0 -0.031228,0 l -2.0855889,-1.2942 c -0.02836,-0.017 -0.061672,-0.032 -0.093419,-0.029 z"
|
||||
transform="translate(0,-1030.3622)"
|
||||
class="ColorScheme-Text"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
11
src/apps/22/kdeconnect-symbolic.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; } .ColorScheme-Highlight { color:#5294e2; }</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" fill="currentColor">
|
||||
<path class="ColorScheme-Text" x="4" d="m6.9609 2c-1.0865 0-1.9609 0.87448-1.9609 1.9609v14.078c0 1.0865 0.87448 1.9609 1.9609 1.9609h8.0391c1.0865 0 1.9609-0.87448 1.9609-1.9609v-14.078c0-1.0865-0.87448-1.9609-1.9609-1.9609zm0.039062 1h7.961c0.554 0 1 0.446 1 1v14c0 0.554-0.446 1-1 1h-7.961c-0.554 0-1-0.446-1-1v-14c0-0.554 0.446-1 1-1z"/>
|
||||
<rect class="ColorScheme-Text" x="8" y="2" width="6" height="2" rx="1" ry="1"/>
|
||||
</g>
|
||||
<path class="ColorScheme-Text" d="m10.562 7.5-0.24267 0.96897c-0.22061 0.0588-0.43261 0.14612-0.63062 0.25977l-0.85449-0.5127-0.61865 0.61865 0.5127 0.85449c-0.11497 0.19838-0.20345 0.41096-0.26318 0.63233l-0.96556 0.24097v0.875l0.96897 0.24267c0.0588 0.22061 0.14612 0.43261 0.25977 0.63062l-0.5127 0.85449 0.61865 0.61865 0.85449-0.5127c0.19838 0.11497 0.41096 0.20345 0.63233 0.26318l0.24097 0.96556h0.875l0.24267-0.96897c0.22061-0.0588 0.43261-0.14612 0.63062-0.25977l0.85449 0.5127 0.61865-0.61865-0.5127-0.85449c0.11497-0.19838 0.20345-0.41096 0.26318-0.63233l0.96556-0.24097v-0.875l-0.96897-0.24267c-0.0588-0.22061-0.14612-0.43261-0.25977-0.63062l0.5127-0.85449-0.61865-0.61865-0.85449 0.5127c-0.19838-0.11497-0.41096-0.20345-0.63233-0.26318l-0.24097-0.96556zm0.4375 1.75c0.05819 1.7e-5 0.11639 0.0026 0.17432 0.0087 0.05793 0.0053 0.11553 0.01426 0.1726 0.02564 0.05766 0.0119 0.11472 0.02678 0.1709 0.04445 0.05565 0.01724 0.11041 0.03719 0.16406 0.05985 0.05364 0.0224 0.10609 0.04751 0.15722 0.07516 0.0511 0.02826 0.1007 0.05906 0.14869 0.09229 0.04847 0.03299 0.09523 0.06834 0.14013 0.10595 0.04471 0.03771 0.0875 0.07761 0.12818 0.11963 0.04025 0.04139 0.07849 0.0847 0.1145 0.12988 0.03657 0.04611 0.07079 0.09401 0.10253 0.14355 0.03159 0.04917 0.06064 0.09998 0.08715 0.1521 0.02599 0.0518 0.04935 0.10482 0.07009 0.15894 0.02161 0.05425 0.04042 0.1096 0.05644 0.16577 0.0154 0.05626 0.02791 0.11335 0.03763 0.1709 0.0097 0.05775 0.01654 0.1159 0.02047 0.17431 0.0035 0.04095 0.0053 0.08199 0.0053 0.12302-1.8e-5 0.05819-0.0026 0.11639-0.0087 0.17432-0.0053 0.05793-0.01426 0.11553-0.02564 0.1726-0.0119 0.05766-0.02678 0.11472-0.04445 0.1709-0.01724 0.05565-0.03719 0.11041-0.05985 0.16406-0.0224 0.05364-0.04751 0.10609-0.07516 0.15722-0.02826 0.0511-0.05906 0.1007-0.09229 0.14869-0.03299 0.04847-0.06834 0.09523-0.10596 0.14013-0.03771 0.04471-0.07761 0.0875-0.11963 0.12818-0.04139 0.04025-0.0847 0.07849-0.12988 0.1145-0.04611 0.03657-0.09401 0.07079-0.14356 0.10253-0.04917 0.03159-0.09997 0.06064-0.15209 0.08715-0.0518 0.02599-0.10482 0.04935-0.15894 0.07009-0.05425 0.02153-0.10961 0.04034-0.16578 0.05635-0.05626 0.0154-0.11334 0.02791-0.1709 0.03763-0.05775 0.0097-0.1159 0.01654-0.17432 0.02048-0.02441 0.0035-0.04891 0.0061-0.0735 0.0087h-0.11963c-0.03482-0.0018-0.06956-0.0044-0.10425-0.0087-0.05793-0.0053-0.11554-0.01426-0.17261-0.02564-0.05766-0.0119-0.11471-0.02678-0.1709-0.04445-0.05565-0.01724-0.11041-0.03719-0.16406-0.05985-0.05364-0.0224-0.1061-0.04751-0.15723-0.07516-0.0511-0.02826-0.10069-0.05906-0.14868-0.09228-0.04847-0.03299-0.09523-0.06834-0.14014-0.10596-0.02634-0.02319-0.05198-0.04708-0.07691-0.07175l-0.07691-0.07691c-0.03089-0.03246-0.06055-0.06606-0.08887-0.10083-0.03658-0.04611-0.07079-0.09401-0.10254-0.14356-0.03159-0.04917-0.06064-0.09997-0.08715-0.15209-0.02599-0.0518-0.04935-0.10482-0.07009-0.15894-0.02161-0.05425-0.04043-0.10961-0.05644-0.16578-0.0154-0.05626-0.02791-0.11334-0.03763-0.1709-0.0097-0.05775-0.01654-0.1159-0.02047-0.17432-0.0035-0.04095-0.0053-0.08199-0.0053-0.12304 1.8e-5 -0.05819 0.0026-0.11639 0.0088-0.17432 0.0053-0.05793 0.01426-0.11554 0.02564-0.17261 0.0119-0.05766 0.02678-0.11471 0.04445-0.1709 0.01724-0.05565 0.03719-0.11041 0.05985-0.16406 0.0224-0.05364 0.04751-0.1061 0.07516-0.15723 0.02826-0.0511 0.05906-0.10069 0.09229-0.14868 0.03299-0.04847 0.06834-0.09523 0.10596-0.14014 0.03771-0.04471 0.07761-0.0875 0.11963-0.12817 0.04139-0.04025 0.0847-0.07849 0.12988-0.1145 0.04611-0.03658 0.09401-0.07079 0.14356-0.10254 0.04917-0.03159 0.09997-0.06064 0.15209-0.08715 0.0518-0.02599 0.10482-0.04935 0.15894-0.07009 0.05425-0.02153 0.10961-0.04043 0.16578-0.05644 0.05626-0.0154 0.11334-0.02791 0.1709-0.03763 0.05775-0.0097 0.1159-0.01654 0.17432-0.02047 0.04086-0.0044 0.0819-7e-3 0.12304-0.0088z" fill="currentColor"/>
|
||||
<rect class="ColorScheme-Text" x="8" y="17.5" width="6" height=".5" rx=".25" ry=".25" fill="currentColor" opacity=".5"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
9
src/apps/22/kget-symbolic.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="22" height="22" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
</defs>
|
||||
<rect class="ColorScheme-Text" x="4" y="18" width="14" height="1" rx=".5" ry=".5" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m10 3c-1.108 0-2 0.892-2 2v6.791l-2.3027-2.3027c-0.097934-0.097934-0.22766-0.14648-0.35547-0.14648-0.12781-1e-7 -0.25558 0.04855-0.35352 0.14648-0.19587 0.19587-0.19392 0.51116 0.0019532 0.70703l5.6562 5.6582c0.19587 0.19587 0.50921 0.19587 0.70508 0l5.6582-5.6582c0.19587-0.19587 0.19587-0.51116 0-0.70703-0.19587-0.19587-0.50921-0.19587-0.70508 0l-2.3047 2.3047v-6.793c0-1.108-0.892-2-2-2h-2zm0 1h2c0.554 0 1 0.446 1 1v7.793l-2 2-2-2v-7.793c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 859 B |
12
src/apps/22/kgpg-symbolic.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22" height="22">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
<g id="kgpg">
|
||||
<path id="path1" d="M 11,3 C 8.784,3 7,4.784 7,7 l 0,3 -2,0 0,2 0,7 1,0 10,0 1,0 0,-9 -1,0 -1,0 0,-3 C 15,4.784 13.216,3 11,3 Z m 0,1 c 1.662,0 3,1.561 3,3.5 L 14,10 8,10 8,7.5 C 8,5.561 9.338,4 11,4 Z m -5,7 10,0 0,7 -10,0 z" style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text"/>
|
||||
<rect y="0" x="0" height="22" width="22" id="rect1" style="fill:none;stroke:none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 974 B |
8
src/apps/22/kleopatra-symbolic.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
<g id="kleopatra" transform="translate(0 -1030.4)">
|
||||
<path class="ColorScheme-Text" transform="translate(0 1030.4)" d="m9 3c-3.2222 0-6.748 2.0664-6.748 2.0664a0.5004 0.5004 0 0 0 0.49609 0.86914s3.4742-1.9355 6.252-1.9355c1.3611 0 3.2168 0.59961 5.0918 1.2246s3.7693 1.2754 5.4082 1.2754a0.50005 0.50005 0 1 0 0-1c-1.3611 0-3.2168-0.59766-5.0918-1.2227s-3.7693-1.2773-5.4082-1.2773zm0.5 4a2.8055 2.8055 0 0 0-0.26367 0.015625c-4.1917 0.16665-7.1367 4.1855-7.1367 4.1855a0.50005 0.50005 0 0 0 0.15234 0.73438s1.3083 0.74454 3.248 1.3398v5.2246a0.50005 0.50005 0 1 0 1 0v-4.957c0.68995 0.16894 1.4246 0.30479 2.2051 0.38086 0.11584 0.13712 0.64273 0.75604 1.4414 1.5547 0.89184 0.8919 2.0265 1.9166 3.1309 2.4688 2.0474 1.0237 3.5868 1.4049 4.8633 1.0332 0.58732-0.171 1.0426-0.39628 1.3711-0.73438s0.48828-0.79279 0.48828-1.2461c0-0.5404-0.27156-1.0079-0.63086-1.3672s-0.8287-0.63281-1.3691-0.63281c-0.52112 0-0.99495 0.2425-1.3613 0.5957-0.36638 0.3533-0.63867 0.8423-0.63867 1.4043a0.50005 0.50005 0 1 0 1 0c0-0.227 0.12518-0.48615 0.33203-0.68555 0.20685-0.1995 0.48198-0.31445 0.66797-0.31445 0.16667 0 0.44819 0.12584 0.66211 0.33984 0.21392 0.2139 0.33789 0.49356 0.33789 0.66016 0 0.2539-0.05282 0.39408-0.20508 0.55078-0.15226 0.1567-0.44576 0.3281-0.93555 0.4707-0.87771 0.2556-2.1842 0.0099-4.1367-0.96875-0.89565-0.4479-2.011-1.423-2.8691-2.2812-0.298-0.29801-0.51128-0.53324-0.73438-0.77539 4.1373-0.04889 6.7246-2.5833 9.5391-3.5215a0.50005 0.50005 0 0 0-0.076172-0.9668c-2.96-0.4933-4.3911-1.0935-5.6465-1.5957-1.1921-0.47682-2.2853-0.86-4.1563-0.89844a2.8055 2.8055 0 0 0-0.2793-0.013672zm2.3281 1.2422c0.60282 0.14722 1.1263 0.35363 1.7363 0.59766 1.0008 0.4003 2.427 0.88482 4.4434 1.3281-2.5289 1.1714-4.7865 2.832-8.0078 2.832-3.2913 0-5.8543-1.257-6.6328-1.6602 0.42681-0.50901 1.7418-1.9878 3.6289-2.7949a2.8055 2.8055 0 0 0-0.30078 1.2598 2.8055 2.8055 0 0 0 2.8047 2.8066 2.8055 2.8055 0 0 0 2.8047-2.8066 2.8055 2.8055 0 0 0-0.47656-1.5625z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
8
src/apps/22/kmail-symbolic.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
</defs>
|
||||
<path d="m5 4c-1.662 0-3 1.338-3 3v8c0 1.662 1.338 3 3 3h12c1.662 0 3-1.338 3-3v-8c0-1.662-1.338-3-3-3h-12zm0 1h12c1.0692 0 1.9288 0.83294 1.9883 1.8867l-6.1289 4.6602c-1.0302 0.78348-2.6886 0.78347-3.7188 0l-6.1289-4.6602c0.059506-1.0538 0.9191-1.8867 1.9883-1.8867zm-2 3.1094 3.8008 2.8906-3.8008 2.8887v-5.7793zm16 0.0019531v5.7773l-3.7969-2.8887 3.7969-2.8887zm-11.391 3.5039 0.7207 0.54883c1.4653 1.1144 3.8764 1.1144 5.3418 0l0.71875-0.54687 4.5977 3.4961c-0.059506 1.0538-0.9191 1.8867-1.9883 1.8867h-12c-1.0692 0-1.9288-0.83294-1.9883-1.8867l4.5977-3.498z" class="ColorScheme-Text" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 822 B |
18
src/apps/22/konversation-symbolic.svg
Normal file
@@ -0,0 +1,18 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
.ColorScheme-Background {
|
||||
color:#eff0f1;
|
||||
}
|
||||
.ColorScheme-Accent {
|
||||
color:#3daee9;
|
||||
}
|
||||
.ColorScheme-ButtonText {
|
||||
color:#363636;
|
||||
}</style>
|
||||
<g id="konversation" transform="translate(-326 -534.36)">
|
||||
<path class="ColorScheme-Text" d="m344 538.36-12 3.418v6.1641l1 0.28516v2.4336l6 1.6992v-2.4238l5 1.4238v-11.957zm-1 1.3281v10.344l-10-2.8477v-4.6484zm-12 2.375-1 0.28515v5.0234l1 0.28516v-5.2969zm3 6.4492 4 1.1387v1.4258l-4-1.1328z" fill="currentColor"/>
|
||||
<rect x="326" y="534.36" width="22" height="22" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 766 B |
21
src/apps/22/kopete-symbolic.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22" height="22">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
.ColorScheme-Background {
|
||||
color:#eff0f1;
|
||||
}
|
||||
.ColorScheme-Accent {
|
||||
color:#3daee9;
|
||||
}
|
||||
.ColorScheme-ButtonText {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
<g id="kopete">
|
||||
<path id="rect4144" d="m 3,3 0,12 3,0 0,4 4,-4 9,0 0,-12 z m 1,1 14,0 0,10 -14,0 z m 9.234375,0.5292969 -0.238281,0.4765625 C 14.254947,5.9480768 14.997235,7.4275888 15,9 c -0.0028,1.572411 -0.745053,3.051924 -2.003906,3.994141 l 0.238281,0.472656 C 14.927234,12.62117 15.997658,10.892314 16,9 15.999137,7.106279 14.928491,5.3755534 13.234375,4.5292969 Z M 6,5 6,7 8,7 8,5 Z m 3,3 0,2 4,0 0,-2 z m -3,3 0,2 2,0 0,-2 z" style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc" class="ColorScheme-Text"/>
|
||||
<rect y="0" x="0" height="22" width="22" id="rect4186" style="opacity:1;fill:none;fill-opacity:1;stroke:none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
21
src/apps/22/korgac-symbolic.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22" height="22">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
.ColorScheme-Background {
|
||||
color:#eff0f1;
|
||||
}
|
||||
.ColorScheme-Accent {
|
||||
color:#3daee9;
|
||||
}
|
||||
.ColorScheme-ButtonText {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
<g id="korgac">
|
||||
<path id="rect4131" d="m 11,3 c -4.4319982,0 -8,3.5680018 -8,8 0,4.431998 3.5680018,8 8,8 4.431998,0 8,-3.568002 8,-8 0,-4.4319982 -3.568002,-8 -8,-8 z m 0,1 c 3.877999,0 7,3.1220013 7,7 0,3.877999 -3.122001,7 -7,7 C 7.1220013,18 4,14.877999 4,11 4,7.1220013 7.1220013,4 11,4 Z m -1,1 0,7 1,0 5,0 0,-1 -5,0 0,-6 -1,0 z" style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" inkscape:connector-curvature="0" class="ColorScheme-Text"/>
|
||||
<rect y="0" x="0" height="22" width="22" id="rect4162" style="opacity:1;fill:none;fill-opacity:1;stroke:none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
9
src/apps/22/kruler-symbolic.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
<g id="kruler" transform="translate(-326 -534.36)">
|
||||
<rect x="326" y="534.36" width="22" height="22" fill="none"/>
|
||||
<path class="ColorScheme-Text" d="m328 538.36v2 12h1 17v-1h-17v-11h17v-2h-18zm2 3v3h1v-3h-1zm2 0v3h1v-3h-1zm2 0v6h1v-6h-1zm2 0v3h1v-3h-1zm2 0v3h1v-3h-1zm2 0v6h1v-6h-1zm2 0v3h1v-3h-1zm2 0v3h1v-3h-1z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 540 B |
21
src/apps/22/kteatime-symbolic.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22" height="22">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
.ColorScheme-Background {
|
||||
color:#eff0f1;
|
||||
}
|
||||
.ColorScheme-Accent {
|
||||
color:#3daee9;
|
||||
}
|
||||
.ColorScheme-ButtonText {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
<g id="kteatime" transform="translate(-1.22125e-15,-1.22125e-15)">
|
||||
<rect y="1.2212453e-015" x="1.2212453e-015" height="22" width="22" id="rect3825" style="fill:#566060;fill-opacity:0;stroke:none"/>
|
||||
<path inkscape:connector-curvature="0" style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" d="m 10,2 0,2 1,0 0,-2 -1,0 z M 7,3 7,4 8,4 8,3 7,3 Z m 6,0 0,1 1,0 0,-1 -1,0 z m -8,2 0,12 12,0 0,-3 1,0 c 1.108,0 2,-0.892 2,-2 L 20,8 C 20,6.892 19.108,6 18,6 L 17,6 17,5 5,5 Z M 6,6 9,6 9,7 8,7 C 7.446,7 7,7.446 7,8 l 0,5 c 0,0.554 0.446,1 1,1 l 3,0 c 0.554,0 1,-0.446 1,-1 L 12,8 C 12,7.446 11.554,7 11,7 L 10,7 10,6 16,6 16,16 6,16 6,6 Z m 11,1 1,0 c 0.554,0 1,0.446 1,1 l 0,4 c 0,0.554 -0.446,1 -1,1 l -1,0 0,-6 z m -9,2 3,0 0,4 -3,0 0,-4 z m -5,9 0,1 16,0 0,-1 -16,0 z" id="rect4168" class="ColorScheme-Text"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
src/apps/22/ktimetracker.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg height="22" viewBox="0 0 22 22" width="22" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><radialGradient id="a" cx="11" cy="12" gradientUnits="userSpaceOnUse" r="6"><stop offset="0" stop-color="#3dd425" stop-opacity=".954751"/><stop offset="1" stop-color="#59f07c"/></radialGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="8.999999" x2="16.052055" y1="11" y2="18.052055"><stop offset="0"/><stop offset="1" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientTransform="matrix(2.4295641 2.4295641 -2.4295641 2.4295641 1.364305 -972.83339)" gradientUnits="userSpaceOnUse" x1="204.86578" x2="204.86578" y1="197.19539" y2="198.84178"><stop offset="0" stop-color="#9b9ea2"/><stop offset="1" stop-color="#1a1b1e"/></linearGradient><g stroke-width="3"><path d="m11 6h4l2-2 2.5 2.5-1.5 1.63v3.87h-7z" fill="url(#c)"/><path d="m7 2v2h4 4v-2zm4 2a8 8 0 0 0 -8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0 -8-8z" fill="#686b6f"/><circle cx="11" cy="12" fill="#eff8ff" r="6"/></g><path d="m11 11-1.4140625 2.414062 5.4140625 5.585938h4v-6l-2-2z" fill="url(#b)" opacity=".2"/><g stroke-width="3"><path d="m11 6a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0 -6-6zm0 1a5 5 0 0 1 5 5 5 5 0 0 1 -5 5 5 5 0 0 1 -5-5 5 5 0 0 1 5-5z" opacity=".15"/><path d="m11 6v6h6a6 6 0 0 0 -6-6z" fill="url(#a)"/><path d="m11 11h6v2h-6z" fill="#00223e"/><path d="m1.2928932 16.263456c0 1.104569-.89543048 2-1.99999997 2-1.10456953 0-1.99969803-.89543-1.99969803-2s.8951285-2 1.99969803-2c1.10456949 0 1.99999997.895431 1.99999997 2z" fill="#686b6f" transform="matrix(.70710678 -.70710678 .70710678 .70710678 0 0)"/><circle cx="11" cy="12" fill="#9b9ea2" r="1"/></g></svg>
|
After Width: | Height: | Size: 1.7 KiB |
7
src/apps/22/ktorrent-symbolic.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="22" height="22" version="1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m3 16v1c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-1h-1v1c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m10 3c-1.108 0-2 0.892-2 2v6.791l-2.3027-2.3027c-0.097934-0.097934-0.22766-0.14648-0.35547-0.14648-0.12781-1e-7 -0.25558 0.04855-0.35352 0.14648-0.19587 0.19587-0.19392 0.51116 0.0019532 0.70703l5.6562 5.6582c0.19587 0.19587 0.50921 0.19587 0.70508 0l5.6582-5.6582c0.19587-0.19587 0.19587-0.51116 0-0.70703-0.19587-0.19587-0.50921-0.19587-0.70508 0l-2.3047 2.3047v-6.793c0-1.108-0.892-2-2-2zm0 1h2c0.554 0 1 0.446 1 1v7.793l-2 2-2-2v-7.793c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 881 B |
11
src/apps/22/kup-symbolic.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
<g id="kup" transform="translate(0 -1030.4)">
|
||||
<g id="vlc">
|
||||
<path class="ColorScheme-Text" d="m0 1030.4h22v22h-22z" fill="none"/>
|
||||
</g>
|
||||
<path id="innershape" class="ColorScheme-Text" d="m6 1032.4c-1.108 0-2 0.892-2 2v4.0566 1.0293 2.8282 1.0293 5.0566c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-5.0566-1.0293-2.8282-1.0293-4.0566c0-1.108-0.892-2-2-2h-10zm0 1h10c0.554 0 1 0.446 1 1v4.0566a2.5 2.5 0 0 0-2 2.4434 2.5 2.5 0 0 0 2 2.4434v3.0566h-12v-3.0566a2.5 2.5 0 0 0 2-2.4434 2.5 2.5 0 0 0-2-2.4492v-4.0508c0-0.554 0.446-1 1-1zm5 3a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4zm0 1a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3zm0 0.9961-1 0.0039v3h3v-1l-1.9922-0.0098-0.007812-1.9941zm-6 1.0898a1.5 1.5 0 0 1 1 1.4141 1.5 1.5 0 0 1-1 1.4141v-2.8282zm12 0v2.8282a1.5 1.5 0 0 1-1-1.4141 1.5 1.5 0 0 1 1-1.4141zm-12 7.9141h6v2h-5c-0.554 0-1-0.446-1-1v-1zm7 0h1v2h-1v-2zm2 0h1v2h-1v-2zm2 0h1v1c0 0.554-0.446 1-1 1v-2z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
35
src/apps/22/kwrite.svg
Normal file
@@ -0,0 +1,35 @@
|
||||
<svg width="22" height="22" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient id="c-3" x1="406.5" x2="419.97" y1="527.01" y2="539.83" gradientTransform="matrix(.45 0 0 .45 -172.86 805.65)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#292c2f" offset="0"/>
|
||||
<stop stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g transform="translate(0 -1030.4)">
|
||||
<path d="m9.3905 1045.9 4.3137 4.3137h6.3v-2.7l-6.1137-6.1137z" fill="url(#c-3)" fill-rule="evenodd" opacity=".4"/>
|
||||
<rect x="4" y="1032.4" width="14" height="18" rx="1" ry="1" fill="#c5c5c5" fill-rule="evenodd" stroke-width=".99494"/>
|
||||
<path d="m5 1033.4v16h12v-16z" fill="#f9f9f9" fill-rule="evenodd"/>
|
||||
<rect x="7" y="1037.6" width="4.5714" height=".57143" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="6" y="1033.4" width="1" height="15.5" color="#000000" color-rendering="auto" fill="#eaeaea" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
||||
<rect x="5" y="1033.4" width="1" height="15.563" color="#000000" color-rendering="auto" fill="#ffffff" image-rendering="auto" opacity=".373" shape-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
||||
<rect x="12.143" y="1037.6" width="2.8571" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="7" y="1038.8" width="3.4286" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="11" y="1038.8" width="4" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="7" y="1039.9" width="2.3029" height=".57143" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="9.8571" y="1039.9" width="2.2857" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="7" y="1035.4" width="2.8571" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="7" y="1036.5" width="4" height=".57143" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="11.571" y="1036.5" width="1.7143" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="10.429" y="1035.4" width="2.2857" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<path d="m17 1037.4-4-4v4z" fill="#eeeeee" fill-rule="evenodd"/>
|
||||
<path d="m13 1033.4 4 4v-4z" fill="#ffffff" fill-rule="evenodd"/>
|
||||
<rect x="7" y="1041.8" width="3.4286" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="11" y="1041.8" width="4" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="7" y="1042.9" width="2.3029" height=".57143" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="9.8571" y="1042.9" width="2.2857" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="7" y="1044.8" width="3.4286" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="11" y="1044.8" width="4" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="7" y="1045.9" width="2.3029" height=".57143" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
<rect x="9.8571" y="1045.9" width="2.2857" height=".57144" fill="#bcbcbc" fill-rule="evenodd"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.0 KiB |
29
src/apps/22/plasma-browser-integration-symbolic.svg
Normal file
After Width: | Height: | Size: 17 KiB |
14
src/apps/22/plasma-symbolic.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 7 3 C 6.446 3 6 3.446 6 4 C 6 4.554 6.446 5 7 5 C 7.554 5 8 4.554 8 4 C 8 3.446 7.554 3 7 3 z M 14 3 L 12 5 L 15 8 L 12 11 L 14 13 L 17 10 L 19 8 L 14 3 z M 4.5 9 C 3.669 9 3 9.669 3 10.5 C 3 11.331 3.669 12 4.5 12 C 5.331 12 6 11.331 6 10.5 C 6 9.669 5.331 9 4.5 9 z M 9 15 C 7.892 15 7 15.892 7 17 C 7 18.108 7.892 19 9 19 C 10.108 19 11 18.108 11 17 C 11 15.892 10.108 15 9 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 736 B |
9
src/apps/22/plasmavault-symbolic.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m4 3c-1.108 0-2 0.892-2 2v11c0 1.108 0.892 2 2 2h8v-1h-8c-0.554 0-1-0.446-1-1v-8h16v2h1v-4c0-1.108-0.892-2-2-2h-9.6289c-0.57985-0.0229-0.6047 0.076884-1.0391-0.35742-0.43381-0.43381-0.613-0.64213-1.332-0.64258zm0 1h2c0.31116-1.7e-6 0.52033 1.414e-4 0.99805 0.4707 0.47877 0.47161 0.6388 0.5293 1 0.5293h10.002c0.554 0 1 0.446 1 1v1h-16v-2c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m16.5 10c-1.385 0-2.5 1.115-2.5 2.5v0.5c-0.554 0-1 0.446-1 1v3c0 0.554 0.446 1 1 1h5c0.554 0 1-0.446 1-1v-3c0-0.554-0.446-1-1-1v-0.5c0-1.385-1.115-2.5-2.5-2.5zm0 1c0.831 0 1.5 0.669 1.5 1.5v0.5h-3v-0.5c0-0.831 0.669-1.5 1.5-1.5zm-2.5 3h5v3h-5v-3z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 946 B |
22
src/apps/22/system-file-manager.svg
Normal file
@@ -0,0 +1,22 @@
|
||||
<svg width="22" height="22" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Accent {
|
||||
color:#3593e6;
|
||||
}</style>
|
||||
<linearGradient id="a" x1="445.28" x2="445.28" y1="179.28" y2="200.07" gradientTransform="matrix(.27479 0 0 .26936 -114.26 -42.097)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#60c0f0" offset="0"/>
|
||||
<stop stop-color="#83d4fb" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g transform="translate(1,1)">
|
||||
<g transform="translate(0 -1030.4)">
|
||||
<g transform="matrix(1.9133 0 0 1.9133 -6.1992 1024)">
|
||||
<path d="m4.053 4.328h1.901c0.53 0 0.552 0.02 1.088 0.444 0.491 0.371 0.668 0.303 1.315 0.303h4.523a0.81 0.81 0 0 1 0.813 0.813v4.863a0.81 0.81 0 0 1-0.813 0.813h-8.827a0.81 0.81 0 0 1-0.812-0.813v-5.61a0.81 0.81 0 0 1 0.812-0.813" fill="#2c96d3"/>
|
||||
<rect x="3.241" y="5.822" width="10.451" height="7.092" rx=".812" ry=".796" fill="url(#a)"/>
|
||||
<path d="m4.053 5.822a0.803 0.803 0 0 0-0.812 0.796v0.187c0-0.441 0.362-0.796 0.812-0.796h8.827c0.45 0 0.812 0.355 0.812 0.796v-0.187a0.803 0.803 0 0 0-0.812-0.796z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.24 11.931v0.187c0 0.44 0.363 0.796 0.813 0.796h8.827c0.45 0 0.812-0.355 0.812-0.796v-0.187a0.803 0.803 0 0 1-0.812 0.796h-8.827a0.803 0.803 0 0 1-0.812-0.796z" opacity=".15"/>
|
||||
<path d="m4.053 5.635a0.803 0.803 0 0 0-0.812 0.796v0.187c0-0.441 0.362-0.796 0.812-0.796h8.827c0.45 0 0.812 0.355 0.812 0.796v-0.187a0.803 0.803 0 0 0-0.812-0.796z" opacity=".05"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
7
src/apps/22/umbrello.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0,6)">
|
||||
<rect x="2" y="-3.9973" width="17.997" height="17.997" rx=".9973" ry=".99733" color="#000000" color-rendering="auto" fill="#d35f5f" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="filter-blend-mode:normal;filter-gaussianBlur-deviation:0;isolation:auto;mix-blend-mode:normal"/>
|
||||
<path d="m3-3h16v16h-16z" color="#000000" fill="#f5d66c"/>
|
||||
<path d="m10.474-1.7358-0.0044 0.45948c-1.2713 0.095487-2.4849 0.39344-3.5813 1.0119-1.8665 0.99692-3.1328 3.8898-3.2028 5.9033 0.0038477 0.18375-0.039171 0.38991 0.035466 0.55949 0.17742 0.22881 0.60185 0.2973 0.78976 0.042404 0.48305-0.55861 1.2324-0.94898 2.0175-0.90963 0.73412-0.036984 1.4122 0.3602 1.8406 0.8935 0.1548 0.20164 0.48313 0.25576 0.68567 0.087321 0.24296-0.22771 0.45848-0.49198 0.75751-0.66631 0.21348-0.13316 0.45029-0.22744 0.70022-0.27297 0.04347 1.7534-0.0015 2.526 0.0068 4.2796 0.01518 0.28987-0.05905 0.57709-0.2633 0.79941-0.36119 0.45839-1.0722 0.62748-1.6186 0.36282-0.43169-0.19349-0.71578-0.6173-0.7393-1.0605-0.02157-0.21951-0.17653-0.44442-0.43195-0.45947-0.28639-0.036146-0.53966 0.21721-0.50015 0.48066-0.017422 0.96057 0.7997 1.829 1.7953 2.0108 1.07 0.2241 2.2434-0.40373 2.5815-1.3725 0.19172-0.52166 0.08887-1.0825 0.12155-1.6234 0.0086-1.4679-0.02186-1.9549 0.02305-3.4225 0.58787 0.11351 1.063 0.50383 1.4277 0.92656 0.20671 0.18551 0.56975 0.14396 0.72386-0.082225 0.34504-0.42327 0.83871-0.76071 1.4068-0.85111 0.73362-0.1405 1.4828 0.12994 2.037 0.57306 0.21669 0.13644 0.3781 0.36119 0.62292 0.45608 0.31506 0.093206 0.69702-0.17713 0.61656-0.49676 0.009883-1.87-0.99465-4.6813-2.6035-5.782-1.115-0.77401-2.474-1.2127-3.8539-1.3462-0.12807-0.021904-0.25854-0.013859-0.37192-0.044928l-9e-3 -0.45579c0.0053-0.69597-0.98856-0.68615-1.0094 0zm4.9053 2.9703c0.62451 0.47655 1.4657 2.1186 1.6718 3.238-0.61565-0.36244-1.1229-0.36119-1.8603-0.29298-0.73364 0.04841-1.4264 0.64195-1.9525 1.1151-0.63314-0.57297-1.5121-1.1812-2.4035-1.1188-0.77853 0.018815-1.5159 0.35634-2.0752 0.84857-0.84924-0.78435-2.1817-1.0703-3.3174-0.70276-0.24754 0.075118-0.50668 0.10938-0.52997-0.10223 0.31068-1.4702 2.0539-3.2316 2.7223-3.6138 0.6984-0.35984 2.1839-0.91891 3.4166-0.87384 1.6112-0.084667 3.6218 0.85338 4.328 1.5026z" color="#000000" fill="#d35f5f"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
8
src/apps/22/utilities-terminal.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="22" height="22" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -1030.4)">
|
||||
<rect x="2" y="1032.4" width="17.997" height="17.997" rx=".9973" ry=".99733" fill="#465152"/>
|
||||
<g fill="#ffffff">
|
||||
<path d="m9.3852 1036.9-0.6362 0.6362 3.8631 3.8631-3.8631 3.8632 0.6362 0.6362 4.4993-4.4994-0.6362-0.6362z" color="#000000" fill="#ffffff" style="-inkscape-stroke:none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 449 B |
19
src/apps/22/virt-manager-symbolic.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 0 6 L 3.5 14.75 L 4 16 L 5 16 L 5.5 14.75 L 9 6 L 8 6 L 7 6 L 4.5 12.25 L 2 6 L 1 6 L 0 6 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 9 6 L 5 16 L 6 16 L 8 16 L 10.5 9.75 L 13 16 L 14 16 L 15 16 L 17.5 9.75 L 20 16 L 21 16 L 22 16 L 18 6 L 17 6 L 16 6 L 13.5 12.25 L 11 6 L 10 6 L 9 6 z M 9.5 7.25 L 10 8.5 L 7.4003906 15 L 6.4003906 15 L 9.5 7.25 z M 16.5 7.25 L 17 8.5 L 14.5 14.75 L 14 13.5 L 16.5 7.25 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 851 B |
12
src/apps/22/vlc-symbolic.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
<g id="vlc" transform="translate(0 -1030.4)">
|
||||
<rect class="ColorScheme-Text" y="1030.4" width="22" height="22" fill="none"/>
|
||||
<rect class="ColorScheme-Text" x="3" y="1047.4" width="16" height="2" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m9.1191 1033.4-4.1016 14.867 0.96484 0.2656 3.8984-14.133h2.2383l3.8984 14.133 0.96484-0.2656-4.1016-14.867z" color-rendering="auto" fill="currentColor" fill-rule="evenodd" image-rendering="auto" shape-rendering="auto"/>
|
||||
<path class="ColorScheme-Text" d="m9 1036.4h4l1 3h-6z" fill="currentColor" fill-rule="evenodd"/>
|
||||
<path class="ColorScheme-Text" d="m7.5 1042.4h7l1 3h-9z" fill="currentColor" fill-rule="evenodd"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 879 B |
9
src/apps/22/yakuake-symbolic.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22" height="22">
|
||||
<style type="text/css" id="current-color-scheme">.ColorScheme-Background {color:#181818; } .ColorScheme-Accent { color:#1a73e8; } .ColorScheme-Text { color:#363636; } .ColorScheme-NegativeText { color:#ff4747; }</style>
|
||||
<g id="22-22-yakuake" transform="translate(32,10) translate(-32,-10)">
|
||||
<rect id="rect2" width="22" height="22" opacity=".001"/>
|
||||
<path id="rect43-3" class="ColorScheme-Text" d="M 2.501151,5.5495627 V 5.583045 H 19.49911 V 5.5495627 Z M 19.49911,5.583045 V 17.415973 H 2.501151 V 5.583045 H 1.832897 V 18.08312 H 20.167293 V 5.583045 Z M 11.598348,8.4737052 9.0983335,10.97372 9.9828388,11.858226 12.482854,9.3582105 Z" fill-opacity="0.3" style="fill:currentColor"/>
|
||||
<path id="rect63-6" class="ColorScheme-Text" d="M 1.416716,3.9168386 H 20.58326 c 0.230837,0 0.416666,0.1858368 0.416666,0.4166668 v 0.8333621 c 0,0.2308371 -0.185837,0.4166668 -0.416666,0.4166668 H 1.416716 c -0.2308371,0 -0.4166668,-0.1858368 -0.4166668,-0.4166668 V 4.3335054 c 0,-0.2308371 0.1858368,-0.4166668 0.4166668,-0.4166668 z m 6.0664649,4.5574559 -0.8842196,0.8842196 2.0596553,2.0578699 -2.0596553,2.057869 0.8842196,0.88422 2.9421601,-2.942161 z m 3.5174501,6.2766805 v 1.250008 h 4.582741 v -1.250008 z" style="fill:currentColor"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
@@ -25,8 +25,8 @@ FollowsColorScheme=true
|
||||
KDE-Extensions=.svg
|
||||
|
||||
# Directory list
|
||||
Directories=actions/16,actions/22,actions/24,actions/32,actions/symbolic,apps/scalable,apps/symbolic,categories/32,categories/symbolic,emblems/16,emblems/22,emblems/symbolic,places/symbolic,places/scalable,places/16,places/22,places/24,mimetypes/scalable,mimetypes/symbolic,devices/scalable,devices/symbolic,devices/16,devices/22,devices/24,devices/32,status/16,status/22,status/24,status/32,status/symbolic
|
||||
ScaledDirectories=actions@2x/16,actions@2x/22,actions@2x/24,actions@2x/32,actions@2x/symbolic,apps@2x/scalable,apps@2x/symbolic,categories@2x/32,categories@2x/symbolic,emblems@2x/16,emblems@2x/22,emblems@2x/symbolic,places@2x/symbolic,places@2x/scalable,places@2x/16,places@2x/22,places@2x/24,mimetypes@2x/scalable,mimetypes@2x/symbolic,devices@2x/scalable,devices@2x/symbolic,devices@2x/16,devices@2x/22,devices@2x/24,devices@2x/32,status@2x/16,status@2x/22,status@2x/24,status@2x/32,status@2x/symbolic
|
||||
Directories=actions/16,actions/22,actions/24,actions/32,actions/symbolic,apps/22,apps/scalable,apps/symbolic,categories/32,categories/symbolic,emblems/16,emblems/22,emblems/symbolic,places/symbolic,places/scalable,places/16,places/22,places/24,mimetypes/scalable,mimetypes/symbolic,devices/scalable,devices/symbolic,devices/16,devices/22,devices/24,devices/32,status/16,status/22,status/24,status/32,status/symbolic
|
||||
ScaledDirectories=actions@2x/16,actions@2x/22,actions@2x/24,actions@2x/32,actions@2x/symbolic,apps@2x/22,apps@2x/scalable,apps@2x/symbolic,categories@2x/32,categories@2x/symbolic,emblems@2x/16,emblems@2x/22,emblems@2x/symbolic,places@2x/symbolic,places@2x/scalable,places@2x/16,places@2x/22,places@2x/24,mimetypes@2x/scalable,mimetypes@2x/symbolic,devices@2x/scalable,devices@2x/symbolic,devices@2x/16,devices@2x/22,devices@2x/24,devices@2x/32,status@2x/16,status@2x/22,status@2x/24,status@2x/32,status@2x/symbolic
|
||||
|
||||
[actions/16]
|
||||
Size=16
|
||||
@@ -57,6 +57,11 @@ MinSize=16
|
||||
MaxSize=512
|
||||
Type=Scalable
|
||||
|
||||
[apps/22]
|
||||
Size=22
|
||||
Context=Applications
|
||||
Type=Fixed
|
||||
|
||||
[apps/scalable]
|
||||
Size=64
|
||||
Context=Applications
|
||||
@@ -248,6 +253,12 @@ MinSize=16
|
||||
MaxSize=512
|
||||
Type=Scalable
|
||||
|
||||
[apps@2x/22]
|
||||
Size=22
|
||||
Scale=2
|
||||
Context=Applications
|
||||
Type=Fixed
|
||||
|
||||
[apps@2x/scalable]
|
||||
Size=64
|
||||
Scale=2
|
||||
|
10
src/places/22/system-users.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="22" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" style="fill:currentColor" d="m7.5 3a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5zm0 1a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5zm7 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5zm0 1a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5zm-8.5 2c-1.662 0-3 1.338-3 3v2c0 0.554 0.446 1 1 1h5c0-0.34559 0.043352-0.68056 0.125-1h-5.125v-2c0-1.108 0.892-2 2-2h3c0.95754 0 1.7526 0.66642 1.9512 1.5625 0.28806-0.17143 0.60028-0.30907 0.92969-0.4043-0.36208-1.2498-1.5112-2.1582-2.8809-2.1582h-3zm7 3c-1.662 0-3 1.338-3 3v2c0 0.554 0.446 1 1 1h7c0.554 0 1-0.446 1-1v-2c0-1.662-1.338-3-3-3zm0 1h3c1.108 0 2 0.892 2 2v2h-7v-2c0-1.108 0.892-2 2-2z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@@ -1,9 +1,6 @@
|
||||
<svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Highlight {
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
|
||||
color:#3daee9;
|
||||
}
|
||||
</style>
|
||||
<rect class="ColorScheme-Highlight" x="2" y="2" width="12" height="12" rx="2" fill="currentColor"/>
|
||||
<path d="m7 4v2h2v-2zm0 3v5h2v-5z" fill="#fff"/>
|
||||
}</style>
|
||||
<path class="ColorScheme-Highlight" d="m3 1c-1.108 0-2 0.892-2 2v10c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-10c0-1.108-0.892-2-2-2h-10zm0 1h10c0.554 0 1 0.446 1 1v10c0 0.554-0.446 1-1 1h-10c-0.554 0-1-0.446-1-1v-10c0-0.554 0.446-1 1-1zm4 2v2h2v-2h-2zm0 3v5h2v-5h-2z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 376 B After Width: | Height: | Size: 496 B |
@@ -1,9 +1,7 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-NegativeText {
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-NegativeText {
|
||||
color:#da4453;
|
||||
}
|
||||
</style>
|
||||
<rect class="ColorScheme-NegativeText" x="3" y="3" width="16" height="16" rx="2" fill="currentColor"/>
|
||||
<path d="M 6.414,5 5,6.414 9.586,11 5,15.586 6.414,17 11,12.414 15.586,17 17,15.586 12.414,11 17,6.414 15.586,5 11,9.586 Z" fill="#fff"/>
|
||||
}</style>
|
||||
<path class="ColorScheme-NegativeText" d="m5 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-12c0-1.108-0.892-2-2-2zm0 1h12c0.554 0 1 0.446 1 1v12c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-NegativeText" d="M 6.414,5 5,6.414 9.586,11 5,15.586 6.414,17 11,12.414 15.586,17 17,15.586 12.414,11 17,6.414 15.586,5 11,9.586 Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 471 B After Width: | Height: | Size: 648 B |
@@ -1,9 +1,7 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Highlight {
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Highlight {
|
||||
color:#3daee9;
|
||||
}
|
||||
</style>
|
||||
<rect class="ColorScheme-Highlight" x="3" y="3" width="16" height="16" rx="2" fill="currentColor"/>
|
||||
<path d="m10 6v2h2v-2zm0 4v6h2v-6z" fill="#fff"/>
|
||||
}</style>
|
||||
<path class="ColorScheme-Highlight" d="m5 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-12c0-1.108-0.892-2-2-2h-12zm0 1h12c0.554 0 1 0.446 1 1v12c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Highlight" d="m10 6v2h2v-2zm0 4v6h2v-6z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 377 B After Width: | Height: | Size: 555 B |
@@ -1,10 +1,9 @@
|
||||
<svg id="svg9" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-PositiveText {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-PositiveText {
|
||||
color:#27ae60;
|
||||
}
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
<rect id="rect3" class="ColorScheme-PositiveText" x="3" y="3" width="16" height="16" rx="1.4545455" fill="currentColor"/>
|
||||
<path id="path5" d="M 18.99323,4.3805651 9,14 5.7332785,10.623339 4.3852425,12.059327 9,16.828 l 10,-10 z" fill="#fff"/>
|
||||
<path class="ColorScheme-PositiveText" d="m5 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-10.172-1.8281c0-0.032964-0.002345-0.065092-0.003906-0.097656l-0.001953-0.52148-0.072266 0.070312c-0.23772-0.83901-1.0047-1.4512-1.9219-1.4512h-12zm0 1h12c0.554 0 1 0.446 1 1v0.33789l-9 8.6621-3.2676-3.377-1.3477 1.4355 4.6152 4.7695 9-9v9.1719c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 534 B After Width: | Height: | Size: 723 B |
@@ -1,9 +1,6 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-NeutralText {
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
|
||||
color:#f67400;
|
||||
}
|
||||
</style>
|
||||
<path class="ColorScheme-NeutralText" d="m11.006318 3.0000261a0.72728737 0.72727154 0 0 0-0.65674 0.4021811l-7.2728738 14.545431a0.72728737 0.72727154 0 0 0 0.6509222 1.052362h14.545748a0.72728737 0.72727154 0 0 0 0.650922-1.052362l-7.272874-14.545431a0.72728737 0.72727154 0 0 0-0.645104-0.4021811z" fill="currentColor"/>
|
||||
<path d="m10 7v5h2v-5zm0 7v2h2v-2z" fill="#fff"/>
|
||||
}</style>
|
||||
<path class="ColorScheme-NeutralText" d="m11.014 2c-0.6567-0.0048028-1.265 0.36751-1.5586 0.95508l-7.2734 14.545c-0.55535 1.1113 0.30451 2.5006 1.5469 2.5h14.545c1.2424 5.79e-4 2.1003-1.3887 1.5449-2.5l-7.2734-14.545h0.001953c-0.28926-0.5788-0.88435-0.94946-1.5312-0.95508h-0.001953zm-0.007813 1a0.72729 0.72727 0 0 1 0.64648 0.40234l7.2715 14.545a0.72729 0.72727 0 0 1-0.65039 1.0527h-14.545a0.72729 0.72727 0 0 1-0.65234-1.0527l7.2734-14.545a0.72729 0.72727 0 0 1 0.65625-0.40234zm-1.0059 5v5h2v-5h-2zm0 7v2h2v-2h-2z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 602 B After Width: | Height: | Size: 747 B |
@@ -1,7 +1,6 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css">.ColorScheme-Text {
|
||||
<style type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
<rect x="3" y="3" width="16" height="16" rx="2" fill="#7f8c8d"/>
|
||||
<path d="m11 5a3 3 0 0 0-3 3v3h-2v6h10v-6h-2v-3a3 3 0 0 0-3-3zm0 1a2 2 0 0 1 2 2v3h-4v-3a2 2 0 0 1 2-2z" fill="#fff"/>
|
||||
<path class="ColorScheme-Text" d="m5 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-12c0-1.108-0.892-2-2-2h-12zm0 1h12c0.554 0 1 0.446 1 1v12c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1zm6 1a3 3 0 0 0-3 3v3h-2v6h10v-6h-2v-3a3 3 0 0 0-3-3zm0 1a2 2 0 0 1 2 2v3h-4v-3a2 2 0 0 1 2-2z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 366 B After Width: | Height: | Size: 523 B |
@@ -1,7 +1,6 @@
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css">.ColorScheme-Text {
|
||||
<style type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
<rect x="3" y="3" width="16" height="16" rx="2" fill="#9b59b6"/>
|
||||
<path d="m11 5a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2h-1v3h2v-1.133a4 4 0 0 0 3-3.867 4 4 0 0 0-4-4zm-1 10v2h2v-2z" fill="#fff"/>
|
||||
<path d="m5 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-12c0-1.108-0.892-2-2-2h-12zm0 1h12c0.554 0 1 0.446 1 1v12c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1zm6 1a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2h-1v3h2v-1.1328a4 4 0 0 0 3-3.8672 4 4 0 0 0-4-4zm-1 10v2h2v-2h-2z" fill="#9b59b6"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 396 B After Width: | Height: | Size: 528 B |
201
test/colors.sh
@@ -1,201 +0,0 @@
|
||||
colors_folder() {
|
||||
case "$theme" in
|
||||
'')
|
||||
theme_color='#60c0f0'
|
||||
;;
|
||||
-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
|
||||
|
||||
cp folder.svg folder${theme}${scheme}
|
||||
sed -i "s/#60c0f0/${theme_color}/g" folder${theme}${scheme}
|
||||
}
|
||||
|
||||
# '' '-Nord' '-Dracula' '-Gruvbox' '-Everforest' '-Catppuccin'
|
||||
|
||||
for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey'; do
|
||||
scheme='-Catppuccin'
|
||||
colors_folder
|
||||
done
|
@@ -1,22 +0,0 @@
|
||||
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#333333;
|
||||
}
|
||||
.ColorScheme-Highlight {
|
||||
color:#8caaee;
|
||||
}</style>
|
||||
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(1.4724 0 0 1.4432 -625.58 -239.75)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
|
||||
<stop stop-color="#ffffff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<image x="2.5" y="49.215" width="59" height="10" 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="m8.3493 8.996h10.187c2.8348 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5832 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3647 1.9419 4.3542 4.3504v26.293c0.004189 2.4065-1.9477 4.3583-4.3542 4.3541h-47.295c-2.405 0.002095-4.3546-1.9492-4.3504-4.3541v-30.296c-0.0041836-2.405 1.9454-4.3562 4.3504-4.3541z" fill="#8caaee"/>
|
||||
<path d="m8.3494 8.996h10.187c2.8349 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5833 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3648 1.9419 4.3542 4.3504v26.293c0.0042 2.4065-1.9477 4.3583-4.3542 4.3541h-47.296c-2.405 0.0021-4.3546-1.9492-4.3505-4.3541v-30.296c-0.0042-2.405 1.9454-4.3562 4.3505-4.3541z" fill="#000000" opacity=".2"/>
|
||||
<rect class="ColorScheme-Highlight" x="3.9998" y="17.001" width="56" height="38" rx="4.3542" ry="4.2672" fill="#8caaee"/>
|
||||
<path d="m8.3528 17.001c-2.4114 0-4.3541 1.9012-4.3541 4.2634v1.0016c0-2.3623 1.9427-4.2672 4.3541-4.2672h47.294c2.4114 0 4.3541 1.9049 4.3541 4.2672v-1.0016c0-2.3623-1.9427-4.2634-4.3541-4.2634z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.9986 49.737v0.99782c0 2.366 1.9427 4.2672 4.3541 4.2672h47.294c2.4114 0 4.3541-1.9012 4.3541-4.2672v-0.99782c0 2.3623-1.9427 4.2634-4.3541 4.2634h-47.294a4.3012 4.3012 0 0 1-4.3541-4.2634z" opacity=".15"/>
|
||||
<path d="m8.3528 16c-2.4114 0-4.3541 1.9049-4.3541 4.2672v0.99782c0-2.3623 1.9427-4.2634 4.3541-4.2634h47.294c2.4114 0 4.3541 1.9012 4.3541 4.2634v-0.99782c0-2.3623-1.9427-4.2672-4.3541-4.2672z" opacity=".05"/>
|
||||
<rect x="4" y="17" width="56" height="38" rx="4.3542" ry="4.2672" fill="url(#linearGradient946)" opacity=".2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,22 +0,0 @@
|
||||
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#333333;
|
||||
}
|
||||
.ColorScheme-Highlight {
|
||||
color:#a6d189;
|
||||
}</style>
|
||||
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(1.4724 0 0 1.4432 -625.58 -239.75)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
|
||||
<stop stop-color="#ffffff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<image x="2.5" y="49.215" width="59" height="10" 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="m8.3493 8.996h10.187c2.8348 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5832 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3647 1.9419 4.3542 4.3504v26.293c0.004189 2.4065-1.9477 4.3583-4.3542 4.3541h-47.295c-2.405 0.002095-4.3546-1.9492-4.3504-4.3541v-30.296c-0.0041836-2.405 1.9454-4.3562 4.3504-4.3541z" fill="#a6d189"/>
|
||||
<path d="m8.3494 8.996h10.187c2.8349 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5833 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3648 1.9419 4.3542 4.3504v26.293c0.0042 2.4065-1.9477 4.3583-4.3542 4.3541h-47.296c-2.405 0.0021-4.3546-1.9492-4.3505-4.3541v-30.296c-0.0042-2.405 1.9454-4.3562 4.3505-4.3541z" fill="#000000" opacity=".2"/>
|
||||
<rect class="ColorScheme-Highlight" x="3.9998" y="17.001" width="56" height="38" rx="4.3542" ry="4.2672" fill="#a6d189"/>
|
||||
<path d="m8.3528 17.001c-2.4114 0-4.3541 1.9012-4.3541 4.2634v1.0016c0-2.3623 1.9427-4.2672 4.3541-4.2672h47.294c2.4114 0 4.3541 1.9049 4.3541 4.2672v-1.0016c0-2.3623-1.9427-4.2634-4.3541-4.2634z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.9986 49.737v0.99782c0 2.366 1.9427 4.2672 4.3541 4.2672h47.294c2.4114 0 4.3541-1.9012 4.3541-4.2672v-0.99782c0 2.3623-1.9427 4.2634-4.3541 4.2634h-47.294a4.3012 4.3012 0 0 1-4.3541-4.2634z" opacity=".15"/>
|
||||
<path d="m8.3528 16c-2.4114 0-4.3541 1.9049-4.3541 4.2672v0.99782c0-2.3623 1.9427-4.2634 4.3541-4.2634h47.294c2.4114 0 4.3541 1.9012 4.3541 4.2634v-0.99782c0-2.3623-1.9427-4.2672-4.3541-4.2672z" opacity=".05"/>
|
||||
<rect x="4" y="17" width="56" height="38" rx="4.3542" ry="4.2672" fill="url(#linearGradient946)" opacity=".2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,22 +0,0 @@
|
||||
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#333333;
|
||||
}
|
||||
.ColorScheme-Highlight {
|
||||
color:#7c7f93;
|
||||
}</style>
|
||||
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(1.4724 0 0 1.4432 -625.58 -239.75)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
|
||||
<stop stop-color="#ffffff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<image x="2.5" y="49.215" width="59" height="10" 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="m8.3493 8.996h10.187c2.8348 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5832 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3647 1.9419 4.3542 4.3504v26.293c0.004189 2.4065-1.9477 4.3583-4.3542 4.3541h-47.295c-2.405 0.002095-4.3546-1.9492-4.3504-4.3541v-30.296c-0.0041836-2.405 1.9454-4.3562 4.3504-4.3541z" fill="#7c7f93"/>
|
||||
<path d="m8.3494 8.996h10.187c2.8349 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5833 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3648 1.9419 4.3542 4.3504v26.293c0.0042 2.4065-1.9477 4.3583-4.3542 4.3541h-47.296c-2.405 0.0021-4.3546-1.9492-4.3505-4.3541v-30.296c-0.0042-2.405 1.9454-4.3562 4.3505-4.3541z" fill="#000000" opacity=".2"/>
|
||||
<rect class="ColorScheme-Highlight" x="3.9998" y="17.001" width="56" height="38" rx="4.3542" ry="4.2672" fill="#7c7f93"/>
|
||||
<path d="m8.3528 17.001c-2.4114 0-4.3541 1.9012-4.3541 4.2634v1.0016c0-2.3623 1.9427-4.2672 4.3541-4.2672h47.294c2.4114 0 4.3541 1.9049 4.3541 4.2672v-1.0016c0-2.3623-1.9427-4.2634-4.3541-4.2634z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.9986 49.737v0.99782c0 2.366 1.9427 4.2672 4.3541 4.2672h47.294c2.4114 0 4.3541-1.9012 4.3541-4.2672v-0.99782c0 2.3623-1.9427 4.2634-4.3541 4.2634h-47.294a4.3012 4.3012 0 0 1-4.3541-4.2634z" opacity=".15"/>
|
||||
<path d="m8.3528 16c-2.4114 0-4.3541 1.9049-4.3541 4.2672v0.99782c0-2.3623 1.9427-4.2634 4.3541-4.2634h47.294c2.4114 0 4.3541 1.9012 4.3541 4.2634v-0.99782c0-2.3623-1.9427-4.2672-4.3541-4.2672z" opacity=".05"/>
|
||||
<rect x="4" y="17" width="56" height="38" rx="4.3542" ry="4.2672" fill="url(#linearGradient946)" opacity=".2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,22 +0,0 @@
|
||||
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#333333;
|
||||
}
|
||||
.ColorScheme-Highlight {
|
||||
color:#fe8019;
|
||||
}</style>
|
||||
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(1.4724 0 0 1.4432 -625.58 -239.75)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
|
||||
<stop stop-color="#ffffff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<image x="2.5" y="49.215" width="59" height="10" 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="m8.3493 8.996h10.187c2.8348 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5832 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3647 1.9419 4.3542 4.3504v26.293c0.004189 2.4065-1.9477 4.3583-4.3542 4.3541h-47.295c-2.405 0.002095-4.3546-1.9492-4.3504-4.3541v-30.296c-0.0041836-2.405 1.9454-4.3562 4.3504-4.3541z" fill="#fe8019"/>
|
||||
<path d="m8.3494 8.996h10.187c2.8349 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5833 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3648 1.9419 4.3542 4.3504v26.293c0.0042 2.4065-1.9477 4.3583-4.3542 4.3541h-47.296c-2.405 0.0021-4.3546-1.9492-4.3505-4.3541v-30.296c-0.0042-2.405 1.9454-4.3562 4.3505-4.3541z" fill="#000000" opacity=".2"/>
|
||||
<rect class="ColorScheme-Highlight" x="3.9998" y="17.001" width="56" height="38" rx="4.3542" ry="4.2672" fill="#fe8019"/>
|
||||
<path d="m8.3528 17.001c-2.4114 0-4.3541 1.9012-4.3541 4.2634v1.0016c0-2.3623 1.9427-4.2672 4.3541-4.2672h47.294c2.4114 0 4.3541 1.9049 4.3541 4.2672v-1.0016c0-2.3623-1.9427-4.2634-4.3541-4.2634z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.9986 49.737v0.99782c0 2.366 1.9427 4.2672 4.3541 4.2672h47.294c2.4114 0 4.3541-1.9012 4.3541-4.2672v-0.99782c0 2.3623-1.9427 4.2634-4.3541 4.2634h-47.294a4.3012 4.3012 0 0 1-4.3541-4.2634z" opacity=".15"/>
|
||||
<path d="m8.3528 16c-2.4114 0-4.3541 1.9049-4.3541 4.2672v0.99782c0-2.3623 1.9427-4.2634 4.3541-4.2634h47.294c2.4114 0 4.3541 1.9012 4.3541 4.2634v-0.99782c0-2.3623-1.9427-4.2672-4.3541-4.2672z" opacity=".05"/>
|
||||
<rect x="4" y="17" width="56" height="38" rx="4.3542" ry="4.2672" fill="url(#linearGradient946)" opacity=".2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,22 +0,0 @@
|
||||
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#333333;
|
||||
}
|
||||
.ColorScheme-Highlight {
|
||||
color:#f4b8e4;
|
||||
}</style>
|
||||
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(1.4724 0 0 1.4432 -625.58 -239.75)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
|
||||
<stop stop-color="#ffffff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<image x="2.5" y="49.215" width="59" height="10" 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="m8.3493 8.996h10.187c2.8348 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5832 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3647 1.9419 4.3542 4.3504v26.293c0.004189 2.4065-1.9477 4.3583-4.3542 4.3541h-47.295c-2.405 0.002095-4.3546-1.9492-4.3504-4.3541v-30.296c-0.0041836-2.405 1.9454-4.3562 4.3504-4.3541z" fill="#f4b8e4"/>
|
||||
<path d="m8.3494 8.996h10.187c2.8349 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5833 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3648 1.9419 4.3542 4.3504v26.293c0.0042 2.4065-1.9477 4.3583-4.3542 4.3541h-47.296c-2.405 0.0021-4.3546-1.9492-4.3505-4.3541v-30.296c-0.0042-2.405 1.9454-4.3562 4.3505-4.3541z" fill="#000000" opacity=".2"/>
|
||||
<rect class="ColorScheme-Highlight" x="3.9998" y="17.001" width="56" height="38" rx="4.3542" ry="4.2672" fill="#f4b8e4"/>
|
||||
<path d="m8.3528 17.001c-2.4114 0-4.3541 1.9012-4.3541 4.2634v1.0016c0-2.3623 1.9427-4.2672 4.3541-4.2672h47.294c2.4114 0 4.3541 1.9049 4.3541 4.2672v-1.0016c0-2.3623-1.9427-4.2634-4.3541-4.2634z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.9986 49.737v0.99782c0 2.366 1.9427 4.2672 4.3541 4.2672h47.294c2.4114 0 4.3541-1.9012 4.3541-4.2672v-0.99782c0 2.3623-1.9427 4.2634-4.3541 4.2634h-47.294a4.3012 4.3012 0 0 1-4.3541-4.2634z" opacity=".15"/>
|
||||
<path d="m8.3528 16c-2.4114 0-4.3541 1.9049-4.3541 4.2672v0.99782c0-2.3623 1.9427-4.2634 4.3541-4.2634h47.294c2.4114 0 4.3541 1.9012 4.3541 4.2634v-0.99782c0-2.3623-1.9427-4.2672-4.3541-4.2672z" opacity=".05"/>
|
||||
<rect x="4" y="17" width="56" height="38" rx="4.3542" ry="4.2672" fill="url(#linearGradient946)" opacity=".2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,22 +0,0 @@
|
||||
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#333333;
|
||||
}
|
||||
.ColorScheme-Highlight {
|
||||
color:#ca9ee6;
|
||||
}</style>
|
||||
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(1.4724 0 0 1.4432 -625.58 -239.75)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
|
||||
<stop stop-color="#ffffff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<image x="2.5" y="49.215" width="59" height="10" 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="m8.3493 8.996h10.187c2.8348 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5832 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3647 1.9419 4.3542 4.3504v26.293c0.004189 2.4065-1.9477 4.3583-4.3542 4.3541h-47.295c-2.405 0.002095-4.3546-1.9492-4.3504-4.3541v-30.296c-0.0041836-2.405 1.9454-4.3562 4.3504-4.3541z" fill="#ca9ee6"/>
|
||||
<path d="m8.3494 8.996h10.187c2.8349 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5833 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3648 1.9419 4.3542 4.3504v26.293c0.0042 2.4065-1.9477 4.3583-4.3542 4.3541h-47.296c-2.405 0.0021-4.3546-1.9492-4.3505-4.3541v-30.296c-0.0042-2.405 1.9454-4.3562 4.3505-4.3541z" fill="#000000" opacity=".2"/>
|
||||
<rect class="ColorScheme-Highlight" x="3.9998" y="17.001" width="56" height="38" rx="4.3542" ry="4.2672" fill="#ca9ee6"/>
|
||||
<path d="m8.3528 17.001c-2.4114 0-4.3541 1.9012-4.3541 4.2634v1.0016c0-2.3623 1.9427-4.2672 4.3541-4.2672h47.294c2.4114 0 4.3541 1.9049 4.3541 4.2672v-1.0016c0-2.3623-1.9427-4.2634-4.3541-4.2634z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.9986 49.737v0.99782c0 2.366 1.9427 4.2672 4.3541 4.2672h47.294c2.4114 0 4.3541-1.9012 4.3541-4.2672v-0.99782c0 2.3623-1.9427 4.2634-4.3541 4.2634h-47.294a4.3012 4.3012 0 0 1-4.3541-4.2634z" opacity=".15"/>
|
||||
<path d="m8.3528 16c-2.4114 0-4.3541 1.9049-4.3541 4.2672v0.99782c0-2.3623 1.9427-4.2634 4.3541-4.2634h47.294c2.4114 0 4.3541 1.9012 4.3541 4.2634v-0.99782c0-2.3623-1.9427-4.2672-4.3541-4.2672z" opacity=".05"/>
|
||||
<rect x="4" y="17" width="56" height="38" rx="4.3542" ry="4.2672" fill="url(#linearGradient946)" opacity=".2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,22 +0,0 @@
|
||||
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#333333;
|
||||
}
|
||||
.ColorScheme-Highlight {
|
||||
color:#ea999c;
|
||||
}</style>
|
||||
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(1.4724 0 0 1.4432 -625.58 -239.75)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
|
||||
<stop stop-color="#ffffff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<image x="2.5" y="49.215" width="59" height="10" 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="m8.3493 8.996h10.187c2.8348 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5832 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3647 1.9419 4.3542 4.3504v26.293c0.004189 2.4065-1.9477 4.3583-4.3542 4.3541h-47.295c-2.405 0.002095-4.3546-1.9492-4.3504-4.3541v-30.296c-0.0041836-2.405 1.9454-4.3562 4.3504-4.3541z" fill="#ea999c"/>
|
||||
<path d="m8.3494 8.996h10.187c2.8349 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5833 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3648 1.9419 4.3542 4.3504v26.293c0.0042 2.4065-1.9477 4.3583-4.3542 4.3541h-47.296c-2.405 0.0021-4.3546-1.9492-4.3505-4.3541v-30.296c-0.0042-2.405 1.9454-4.3562 4.3505-4.3541z" fill="#000000" opacity=".2"/>
|
||||
<rect class="ColorScheme-Highlight" x="3.9998" y="17.001" width="56" height="38" rx="4.3542" ry="4.2672" fill="#ea999c"/>
|
||||
<path d="m8.3528 17.001c-2.4114 0-4.3541 1.9012-4.3541 4.2634v1.0016c0-2.3623 1.9427-4.2672 4.3541-4.2672h47.294c2.4114 0 4.3541 1.9049 4.3541 4.2672v-1.0016c0-2.3623-1.9427-4.2634-4.3541-4.2634z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.9986 49.737v0.99782c0 2.366 1.9427 4.2672 4.3541 4.2672h47.294c2.4114 0 4.3541-1.9012 4.3541-4.2672v-0.99782c0 2.3623-1.9427 4.2634-4.3541 4.2634h-47.294a4.3012 4.3012 0 0 1-4.3541-4.2634z" opacity=".15"/>
|
||||
<path d="m8.3528 16c-2.4114 0-4.3541 1.9049-4.3541 4.2672v0.99782c0-2.3623 1.9427-4.2634 4.3541-4.2634h47.294c2.4114 0 4.3541 1.9012 4.3541 4.2634v-0.99782c0-2.3623-1.9427-4.2672-4.3541-4.2672z" opacity=".05"/>
|
||||
<rect x="4" y="17" width="56" height="38" rx="4.3542" ry="4.2672" fill="url(#linearGradient946)" opacity=".2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,22 +0,0 @@
|
||||
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#333333;
|
||||
}
|
||||
.ColorScheme-Highlight {
|
||||
color:#81c8be;
|
||||
}</style>
|
||||
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(1.4724 0 0 1.4432 -625.58 -239.75)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
|
||||
<stop stop-color="#ffffff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<image x="2.5" y="49.215" width="59" height="10" 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="m8.3493 8.996h10.187c2.8348 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5832 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3647 1.9419 4.3542 4.3504v26.293c0.004189 2.4065-1.9477 4.3583-4.3542 4.3541h-47.295c-2.405 0.002095-4.3546-1.9492-4.3504-4.3541v-30.296c-0.0041836-2.405 1.9454-4.3562 4.3504-4.3541z" fill="#81c8be"/>
|
||||
<path d="m8.3494 8.996h10.187c2.8349 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5833 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3648 1.9419 4.3542 4.3504v26.293c0.0042 2.4065-1.9477 4.3583-4.3542 4.3541h-47.296c-2.405 0.0021-4.3546-1.9492-4.3505-4.3541v-30.296c-0.0042-2.405 1.9454-4.3562 4.3505-4.3541z" fill="#000000" opacity=".2"/>
|
||||
<rect class="ColorScheme-Highlight" x="3.9998" y="17.001" width="56" height="38" rx="4.3542" ry="4.2672" fill="#81c8be"/>
|
||||
<path d="m8.3528 17.001c-2.4114 0-4.3541 1.9012-4.3541 4.2634v1.0016c0-2.3623 1.9427-4.2672 4.3541-4.2672h47.294c2.4114 0 4.3541 1.9049 4.3541 4.2672v-1.0016c0-2.3623-1.9427-4.2634-4.3541-4.2634z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.9986 49.737v0.99782c0 2.366 1.9427 4.2672 4.3541 4.2672h47.294c2.4114 0 4.3541-1.9012 4.3541-4.2672v-0.99782c0 2.3623-1.9427 4.2634-4.3541 4.2634h-47.294a4.3012 4.3012 0 0 1-4.3541-4.2634z" opacity=".15"/>
|
||||
<path d="m8.3528 16c-2.4114 0-4.3541 1.9049-4.3541 4.2672v0.99782c0-2.3623 1.9427-4.2634 4.3541-4.2634h47.294c2.4114 0 4.3541 1.9012 4.3541 4.2634v-0.99782c0-2.3623-1.9427-4.2672-4.3541-4.2672z" opacity=".05"/>
|
||||
<rect x="4" y="17" width="56" height="38" rx="4.3542" ry="4.2672" fill="url(#linearGradient946)" opacity=".2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,22 +0,0 @@
|
||||
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#333333;
|
||||
}
|
||||
.ColorScheme-Highlight {
|
||||
color:#ef9f76;
|
||||
}</style>
|
||||
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(1.4724 0 0 1.4432 -625.58 -239.75)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
|
||||
<stop stop-color="#ffffff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<image x="2.5" y="49.215" width="59" height="10" 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="m8.3493 8.996h10.187c2.8348 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5832 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3647 1.9419 4.3542 4.3504v26.293c0.004189 2.4065-1.9477 4.3583-4.3542 4.3541h-47.295c-2.405 0.002095-4.3546-1.9492-4.3504-4.3541v-30.296c-0.0041836-2.405 1.9454-4.3562 4.3504-4.3541z" fill="#ef9f76"/>
|
||||
<path d="m8.3494 8.996h10.187c2.8349 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5833 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3648 1.9419 4.3542 4.3504v26.293c0.0042 2.4065-1.9477 4.3583-4.3542 4.3541h-47.296c-2.405 0.0021-4.3546-1.9492-4.3505-4.3541v-30.296c-0.0042-2.405 1.9454-4.3562 4.3505-4.3541z" fill="#000000" opacity=".2"/>
|
||||
<rect class="ColorScheme-Highlight" x="3.9998" y="17.001" width="56" height="38" rx="4.3542" ry="4.2672" fill="#ef9f76"/>
|
||||
<path d="m8.3528 17.001c-2.4114 0-4.3541 1.9012-4.3541 4.2634v1.0016c0-2.3623 1.9427-4.2672 4.3541-4.2672h47.294c2.4114 0 4.3541 1.9049 4.3541 4.2672v-1.0016c0-2.3623-1.9427-4.2634-4.3541-4.2634z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.9986 49.737v0.99782c0 2.366 1.9427 4.2672 4.3541 4.2672h47.294c2.4114 0 4.3541-1.9012 4.3541-4.2672v-0.99782c0 2.3623-1.9427 4.2634-4.3541 4.2634h-47.294a4.3012 4.3012 0 0 1-4.3541-4.2634z" opacity=".15"/>
|
||||
<path d="m8.3528 16c-2.4114 0-4.3541 1.9049-4.3541 4.2672v0.99782c0-2.3623 1.9427-4.2634 4.3541-4.2634h47.294c2.4114 0 4.3541 1.9012 4.3541 4.2634v-0.99782c0-2.3623-1.9427-4.2672-4.3541-4.2672z" opacity=".05"/>
|
||||
<rect x="4" y="17" width="56" height="38" rx="4.3542" ry="4.2672" fill="url(#linearGradient946)" opacity=".2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,22 +0,0 @@
|
||||
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#333333;
|
||||
}
|
||||
.ColorScheme-Highlight {
|
||||
color:#60c0f0;
|
||||
}</style>
|
||||
<linearGradient id="linearGradient946" x1="445.28" x2="445.28" y1="181.8" y2="200.07" gradientTransform="matrix(1.4724 0 0 1.4432 -625.58 -239.75)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ffffff" stop-opacity="0" offset="0"/>
|
||||
<stop stop-color="#ffffff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<image x="2.5" y="49.215" width="59" height="10" 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="m8.3493 8.996h10.187c2.8348 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5832 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3647 1.9419 4.3542 4.3504v26.293c0.004189 2.4065-1.9477 4.3583-4.3542 4.3541h-47.295c-2.405 0.002095-4.3546-1.9492-4.3504-4.3541v-30.296c-0.0041836-2.405 1.9454-4.3562 4.3504-4.3541z" fill="#60c0f0"/>
|
||||
<path d="m8.3494 8.996h10.187c2.8349 0 2.9596 0.10961 5.8283 2.3812 2.6345 1.9881 3.5833 1.6252 7.0454 1.6252h24.236c2.4085-0.01263 4.3648 1.9419 4.3542 4.3504v26.293c0.0042 2.4065-1.9477 4.3583-4.3542 4.3541h-47.296c-2.405 0.0021-4.3546-1.9492-4.3505-4.3541v-30.296c-0.0042-2.405 1.9454-4.3562 4.3505-4.3541z" fill="#000000" opacity=".2"/>
|
||||
<rect class="ColorScheme-Highlight" x="3.9998" y="17.001" width="56" height="38" rx="4.3542" ry="4.2672" fill="#60c0f0"/>
|
||||
<path d="m8.3528 17.001c-2.4114 0-4.3541 1.9012-4.3541 4.2634v1.0016c0-2.3623 1.9427-4.2672 4.3541-4.2672h47.294c2.4114 0 4.3541 1.9049 4.3541 4.2672v-1.0016c0-2.3623-1.9427-4.2634-4.3541-4.2634z" fill="#ffffff" opacity=".08"/>
|
||||
<path d="m3.9986 49.737v0.99782c0 2.366 1.9427 4.2672 4.3541 4.2672h47.294c2.4114 0 4.3541-1.9012 4.3541-4.2672v-0.99782c0 2.3623-1.9427 4.2634-4.3541 4.2634h-47.294a4.3012 4.3012 0 0 1-4.3541-4.2634z" opacity=".15"/>
|
||||
<path d="m8.3528 16c-2.4114 0-4.3541 1.9049-4.3541 4.2672v0.99782c0-2.3623 1.9427-4.2634 4.3541-4.2634h47.294c2.4114 0 4.3541 1.9012 4.3541 4.2634v-0.99782c0-2.3623-1.9427-4.2672-4.3541-4.2672z" opacity=".05"/>
|
||||
<rect x="4" y="17" width="56" height="38" rx="4.3542" ry="4.2672" fill="url(#linearGradient946)" opacity=".2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |