This commit is contained in:
vinceliuice 2021-01-15 21:26:31 +08:00
parent 134e56a109
commit 20b2df9b66
995 changed files with 707686 additions and 2605 deletions

View file

@ -46,7 +46,7 @@ Usage: `./install.sh` **[OPTIONS...]**
|-c, --color | Specify theme color variant(s) **[light/dark]** (Default: All variants)|
|-o, --opacity | Specify theme opacity variant(s) **[standard/solid]** (Default: All variants)|
|-a, --alt | Specify titlebutton variant(s) **[standard/alt]** (Default: All variants)|
|-t, --theme | Change the theme color **[default/blue/purple/pink/red/orange/yellow/green/grey]** (Default: MacOS blue)|
|-t, --theme | Specify primary theme color variant(s) **[default/blue/purple/pink/red/orange/yellow/green/grey]** (Default: MacOS blue)|
|-p, --panel | Change the panel opacty **[default/25/35/45/55/65/75/85]** (Default: 16)|
|-s, --size | Change the nautilus sidebar width size **[default/220/240/260/280]** (Default: 200px)|
|-i, --icon | Activities icon variant(s) **[standard/normal/gnome/ubuntu/arch/manjaro/fedora/debian/void]** (Default: standard variant)|
@ -55,9 +55,9 @@ Usage: `./install.sh` **[OPTIONS...]**
|-dialog, --dialog | Run terminal dialog, this will Run terminal dialog to install themes!|
|-h, --help | Show this help|
### <p align="center" > 1. Change theme accent color </p>
If you want to change theme accent! (Default color is default MacOS color)
then you can run:
### <p align="center" > 1. Change primary theme color </p>
If you want to change primary theme color! (Default color is default MacOS blue)
then you can run: 'for example'
```bash
./install.sh -t green # Install green accent color version
```
@ -65,7 +65,7 @@ then you can run:
### <p align="center" > 2. Install GDM theme </p>
If you want to install GDM theme!
then you can run:
then you can run: 'for example'
```bash
sudo ./install.sh -g # install default dark version
@ -78,7 +78,7 @@ sudo ./install.sh -g -r # remove installed GDM theme
### <p align="center" > 3. Change nautilus sidebar width size </p>
If you want to change nautilus sidebar width size! (Default size is 200px)
(Nautilus cannot change the structure of the sidebar, so I added a picture as a background to achieve the effect of bigsur)
then you can run:
then you can run: 'for example'
```bash
./install.sh -s 260 # Install 260px width version
```
@ -86,7 +86,7 @@ then you can run:
### <p align="center" > 4. Change gnome-shell activities icon </p>
If you want to change gnome-shell activities icon! (Default icon is Apple)
then you can run: (For example: Install Manjaro icon)
then you can run: 'for example: Install Manjaro icon'
```bash
./install.sh -i manjaro
```

View file

@ -20,8 +20,8 @@ THEME_NAME=WhiteSur
COLOR_VARIANTS=('-light' '-dark')
OPACITY_VARIANTS=('' '-solid')
ALT_VARIANTS=('' '-alt')
THEME_VARIANTS=('' '-blue' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-grey')
ICON_VARIANTS=('' '-normal' '-gnome' '-ubuntu' '-arch' '-manjaro' '-fedora' '-debian' '-void')
THEME_COLOR_VARIANTS=('default' 'blue' 'purple' 'pink' 'red' 'orange' 'yellow' 'green' 'grey')
SIDEBAR_SIZE_VARIANTS=('default' '220' '240' '260' '280')
PANEL_OPACITY_VARIANTS=('default' '25' '35' '45' '55' '65' '75' '85')
@ -75,7 +75,7 @@ usage() {
printf " %-25s%s\n" "-o, --opacity VARIANTS" "Specify theme opacity variant(s) [standard|solid] (Default: All variants)"
printf " %-25s%s\n" "-c, --color VARIANTS" "Specify theme color variant(s) [light|dark] (Default: All variants)"
printf " %-25s%s\n" "-a, --alt VARIANTS" "Specify theme titlebutton variant(s) [standard|alt] (Default: All variants)"
printf " %-25s%s\n" "-t, --theme VARIANTS" "Change the theme color [blue|purple|pink|red|orange|yellow|green|grey] (Default: MacOS blue)"
printf " %-25s%s\n" "-t, --theme VARIANTS" "Specify primary theme color [blue|purple|pink|red|orange|yellow|green|grey] (Default: MacOS blue)"
printf " %-25s%s\n" "-p, --panel VARIANTS" "Change the panel transparency [25|35|45|55|65|75|85] (Default: 85%)"
printf " %-25s%s\n" "-s, --size VARIANTS" "Change the nautilus sidebar width size [220|240|260|280] (Default: 200)"
printf " %-25s%s\n" "-i, --icon VARIANTS" "Change gnome-shell activities icon [standard|normal|gnome|ubuntu|arch|manjaro|fedora|debian|void] (Default: standard)"
@ -88,41 +88,45 @@ install() {
local color=${3}
local opacity=${4}
local alt=${5}
local icon=${6}
local panel_opacity=${7}
local sidebar_size=${8}
local theme_color=${9}
local theme=${6}
local icon=${7}
local panel_opacity=${8}
local sidebar_size=${9}
[[ ${color} == '-light' ]] && local ELSE_LIGHT=${color}
[[ ${color} == '-dark' ]] && local ELSE_DARK=${color}
local THEME_DIR=${1}/${2}${3}${4}${5}
local THEME_DIR=${1}/${2}${3}${4}${5}${6}
[[ -d ${THEME_DIR} ]] && rm -rf ${THEME_DIR}
prompt -i "Installing '${THEME_DIR}'..."
mkdir -p ${THEME_DIR}
cp -r ${REPO_DIR}/COPYING ${THEME_DIR}
echo "[Desktop Entry]" >> ${THEME_DIR}/index.theme
echo "Type=X-GNOME-Metatheme" >> ${THEME_DIR}/index.theme
echo "Name=${name}${color}${opacity}" >> ${THEME_DIR}/index.theme
echo "Comment=A Stylish Gtk+ theme based on Elegant Design" >> ${THEME_DIR}/index.theme
echo "Name=${2}${3}${4}${5}${6}" >> ${THEME_DIR}/index.theme
echo "Comment=A MacOS BigSur like Gtk+ theme based on Elegant Design" >> ${THEME_DIR}/index.theme
echo "Encoding=UTF-8" >> ${THEME_DIR}/index.theme
echo "" >> ${THEME_DIR}/index.theme
echo "[X-GNOME-Metatheme]" >> ${THEME_DIR}/index.theme
echo "GtkTheme=${name}${color}${opacity}" >> ${THEME_DIR}/index.theme
echo "MetacityTheme=${name}${color}${opacity}" >> ${THEME_DIR}/index.theme
echo "IconTheme=McMojave-circle" >> ${THEME_DIR}/index.theme
echo "CursorTheme=McMojave-circle" >> ${THEME_DIR}/index.theme
echo "GtkTheme=${2}${3}${4}${5}${6}" >> ${THEME_DIR}/index.theme
echo "MetacityTheme=${2}${3}${4}${5}${6}" >> ${THEME_DIR}/index.theme
echo "IconTheme=${2}${3}" >> ${THEME_DIR}/index.theme
echo "CursorTheme=${2}${3}" >> ${THEME_DIR}/index.theme
echo "ButtonLayout=close,minimize,maximize:menu" >> ${THEME_DIR}/index.theme
mkdir -p ${THEME_DIR}/gnome-shell
cp -r ${SRC_DIR}/assets/gnome-shell/icons ${THEME_DIR}/gnome-shell
cp -r ${SRC_DIR}/main/gnome-shell/pad-osd.css ${THEME_DIR}/gnome-shell
cp -r ${SRC_DIR}/main/gnome-shell/gnome-shell${color}${opacity}${alt}.css ${THEME_DIR}/gnome-shell/gnome-shell.css
cp -r ${SRC_DIR}/main/gnome-shell/gnome-shell${color}${opacity}${alt}${theme}.css ${THEME_DIR}/gnome-shell/gnome-shell.css
cp -r ${SRC_DIR}/assets/gnome-shell/common-assets ${THEME_DIR}/gnome-shell/assets
if [[ ${theme} != '-default' ]]; then
cp -r ${SRC_DIR}/assets/gnome-shell/common-assets${theme}/*.svg ${THEME_DIR}/gnome-shell/assets
fi
cp -r ${SRC_DIR}/assets/gnome-shell/assets${color}/*.svg ${THEME_DIR}/gnome-shell/assets
cp -r ${SRC_DIR}/assets/gnome-shell/activities/activities${icon}.svg ${THEME_DIR}/gnome-shell/assets/activities.svg
@ -137,22 +141,31 @@ install() {
fi
mkdir -p ${THEME_DIR}/gtk-2.0
cp -r ${SRC_DIR}/main/gtk-2.0/gtkrc${color} ${THEME_DIR}/gtk-2.0/gtkrc
cp -r ${SRC_DIR}/main/gtk-2.0/gtkrc${color}${theme} ${THEME_DIR}/gtk-2.0/gtkrc
cp -r ${SRC_DIR}/main/gtk-2.0/menubar-toolbar${color}.rc ${THEME_DIR}/gtk-2.0/menubar-toolbar.rc
cp -r ${SRC_DIR}/main/gtk-2.0/common/*.rc ${THEME_DIR}/gtk-2.0
cp -r ${SRC_DIR}/assets/gtk-2.0/assets${color} ${THEME_DIR}/gtk-2.0/assets
if [[ ${theme} != '-default' ]]; then
cp -r ${SRC_DIR}/assets/gtk-2.0/assets${color}${theme}/*.png ${THEME_DIR}/gtk-2.0/assets
fi
mkdir -p ${THEME_DIR}/gtk-3.0
cp -r ${SRC_DIR}/assets/gtk-3.0/common-assets/assets ${THEME_DIR}/gtk-3.0
if [[ ${theme} != '-default' ]]; then
cp -r ${SRC_DIR}/assets/gtk-3.0/common-assets/assets${theme}/*.png ${THEME_DIR}/gtk-3.0/assets
fi
cp -r ${SRC_DIR}/assets/gtk-3.0/common-assets/sidebar-assets/*.png ${THEME_DIR}/gtk-3.0/assets
cp -r ${SRC_DIR}/assets/gtk-3.0/windows-assets/titlebutton${alt} ${THEME_DIR}/gtk-3.0/windows-assets
cp -r ${SRC_DIR}/assets/gtk-3.0/thumbnail${color}.png ${THEME_DIR}/gtk-3.0/thumbnail.png
cp -r ${SRC_DIR}/main/gtk-3.0/gtk-dark${opacity}.css ${THEME_DIR}/gtk-3.0/gtk-dark.css
cp -r ${SRC_DIR}/assets/gtk-3.0/thumbnails/thumbnail${color}${theme}.png ${THEME_DIR}/gtk-3.0/thumbnail.png
cp -r ${SRC_DIR}/main/gtk-3.0/gtk-dark${opacity}${theme}.css ${THEME_DIR}/gtk-3.0/gtk-dark.css
if [[ ${color} == '-light' ]]; then
cp -r ${SRC_DIR}/main/gtk-3.0/gtk-light${opacity}.css ${THEME_DIR}/gtk-3.0/gtk.css
cp -r ${SRC_DIR}/main/gtk-3.0/gtk-light${opacity}${theme}.css ${THEME_DIR}/gtk-3.0/gtk.css
else
cp -r ${SRC_DIR}/main/gtk-3.0/gtk-dark${opacity}.css ${THEME_DIR}/gtk-3.0/gtk.css
cp -r ${SRC_DIR}/main/gtk-3.0/gtk-dark${opacity}${theme}.css ${THEME_DIR}/gtk-3.0/gtk.css
fi
glib-compile-resources --sourcedir=${THEME_DIR}/gtk-3.0 --target=${THEME_DIR}/gtk-3.0/gtk.gresource ${SRC_DIR}/main/gtk-3.0/gtk.gresource.xml
@ -172,10 +185,15 @@ install() {
cp -r ${SRC_DIR}/main/xfwm4/themerc${color} ${THEME_DIR}/xfwm4/themerc
mkdir -p ${THEME_DIR}/cinnamon
cp -r ${SRC_DIR}/main/cinnamon/cinnamon${color}${opacity}.css ${THEME_DIR}/cinnamon/cinnamon.css
cp -r ${SRC_DIR}/main/cinnamon/cinnamon${color}${opacity}${theme}.css ${THEME_DIR}/cinnamon/cinnamon.css
cp -r ${SRC_DIR}/assets/cinnamon/common-assets ${THEME_DIR}/cinnamon/assets
if [[ ${theme} != '-default' ]]; then
cp -r ${SRC_DIR}/assets/cinnamon/common-assets${theme}/*.svg ${THEME_DIR}/cinnamon/assets
fi
cp -r ${SRC_DIR}/assets/cinnamon/assets${color}/*.svg ${THEME_DIR}/cinnamon/assets
cp -r ${SRC_DIR}/assets/cinnamon/thumbnail${color}.png ${THEME_DIR}/cinnamon/thumbnail.png
cp -r ${SRC_DIR}/assets/cinnamon/thumbnails/thumbnail${color}${theme}.png ${THEME_DIR}/cinnamon/thumbnail.png
mkdir -p ${THEME_DIR}/plank
cp -r ${SRC_DIR}/other/plank/theme${color}/*.theme ${THEME_DIR}/plank
@ -185,11 +203,11 @@ install_theme() {
for color in "${colors[@]-${COLOR_VARIANTS[@]}}"; do
for opacity in "${opacities[@]-${OPACITY_VARIANTS[@]}}"; do
for alt in "${alts[@]-${ALT_VARIANTS[@]}}"; do
for icon in "${icons[@]-${ICON_VARIANTS[0]}}"; do
for panel_opacity in "${panel_opacities[@]-${PANEL_OPACITY_VARIANTS[0]}}"; do
for sidebar_size in "${sidebar_sizes[@]-${SIDEBAR_SIZE_VARIANTS[0]}}"; do
for theme_color in "${theme_colors[@]-${THEME_COLOR_VARIANTS[0]}}"; do
install "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}" "${alt}" "${icon}" "${panel_opacity}" "${sidebar_size}" "${theme_color}"
for theme in "${themes[@]-${THEME_VARIANTS[0]}}"; do
for icon in "${icons[@]-${ICON_VARIANTS[0]}}"; do
for panel_opacity in "${panel_opacities[@]-${PANEL_OPACITY_VARIANTS[0]}}"; do
for sidebar_size in "${sidebar_sizes[@]-${SIDEBAR_SIZE_VARIANTS[0]}}"; do
install "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" "${panel_opacity}" "${sidebar_size}"
done
done
done
@ -199,16 +217,14 @@ install_theme() {
done
if [[ -x /usr/bin/notify-send ]]; then
notify-send "Finished" "Enjoy your ${THEME_NAME} "${theme_color}" theme!" -i face-smile
notify-send "Finished" "Enjoy your ${THEME_NAME} "${theme}" theme!" -i face-smile
fi
}
install_customize_theme() {
for panel_opacity in "${panel_opacities[@]-${PANEL_OPACITY_VARIANTS[0]}}"; do
for sidebar_size in "${sidebar_sizes[@]-${SIDEBAR_SIZE_VARIANTS[0]}}"; do
for theme_color in "${theme_colors[@]-${THEME_COLOR_VARIANTS[0]}}"; do
customize_theme "${panel_opacity}" "${sidebar_size}" "${theme_color}"
done
customize_theme "${panel_opacity}" "${sidebar_size}" "${theme_color}"
done
done
}
@ -217,7 +233,9 @@ remove_theme() {
for color in "${colors[@]-${COLOR_VARIANTS[@]}}"; do
for opacity in "${opacities[@]-${OPACITY_VARIANTS[@]}}"; do
for alt in "${alts[@]-${ALT_VARIANTS[@]}}"; do
[[ -d "${DEST_DIR}/${THEME_NAME}${color}${opacity}${alt}" ]] && rm -rf "${DEST_DIR}/${THEME_NAME}${color}${opacity}${alt}"
for theme in "${themes[@]-${THEME_VARIANTS[0]}}"; do
[[ -d "${DEST_DIR}/${THEME_NAME}${color}${opacity}${alt}${theme}" ]] && rm -rf "${DEST_DIR}/${THEME_NAME}${color}${opacity}${alt}${theme}"
done
done
done
done
@ -233,11 +251,6 @@ customize_theme() {
if [[ "${size:-}" == 'true' && "${sidebar_size:-}" != 'default' ]]; then
change_size
fi
# Change accent color
if [[ "${theme:-}" == 'true' && "${theme_color:-}" != 'default' ]]; then
change_theme_color
fi
}
# Backup and install files related to GDM theme
@ -249,9 +262,6 @@ ETC_NEW_THEME_FILE="/etc/alternatives/gdm3-theme.gresource"
UBUNTU_THEME_FILE="/usr/share/gnome-shell/theme/ubuntu.css"
UBUNTU_NEW_THEME_FILE="/usr/share/gnome-shell/theme/gnome-shell.css"
UBUNTU_YARU_THEME_FILE="/usr/share/gnome-shell/theme/Yaru/gnome-shell-theme.gresource"
UBUNTU_JSON_FILE="/usr/share/gnome-shell/modes/ubuntu.json"
YURA_JSON_FILE="/usr/share/gnome-shell/modes/yaru.json"
UBUNTU_MODES_FOLDER="/usr/share/gnome-shell/modes"
install_gdm() {
local GDM_THEME_DIR="${1}/${2}${3}"
@ -319,9 +329,6 @@ install_gdm() {
"$SRC_DIR"/main/gnome-shell/gnome-shell-yaru-theme.gresource.xml
rm -rf "$YARU_GDM_THEME_DIR"
# [[ -d "$UBUNTU_MODES_FOLDER" ]] && cp -an "$UBUNTU_MODES_FOLDER" "$UBUNTU_MODES_FOLDER"-bak
# [[ -f "$UBUNTU_JSON_FILE" ]] && sed -i "s|Yaru/gnome-shell.css|gnome-shell.css|" "$UBUNTU_JSON_FILE"
# [[ -f "$YURA_JSON_FILE" ]] && sed -i "s|Yaru/gnome-shell.css|gnome-shell.css|" "$YURA_JSON_FILE"
fi
}
@ -382,30 +389,6 @@ install_dialog() {
customize_theme_dialogs() {
if [[ -x /usr/bin/dialog ]]; then
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
--radiolist "Choose your theme color (default is Mac Blue):" 20 50 10 \
0 "default" on \
1 "Blue" off \
2 "Purple" off \
3 "Pink" off \
4 "Red" off \
5 "Orange" off \
6 "Yellow" off \
7 "Green" off \
8 "Grey" off --output-fd 1 )
case "$tui" in
0) theme_color="default" ;;
1) theme_color="blue" ;;
2) theme_color="purple" ;;
3) theme_color="pink" ;;
4) theme_color="red" ;;
5) theme_color="orange" ;;
6) theme_color="yellow" ;;
7) theme_color="green" ;;
8) theme_color="grey" ;;
*) operation_canceled ;;
esac
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
--radiolist "Choose your panel background opacity
(default is 0.16, value more smaller panel more transparency!):" 20 50 10 \
@ -448,7 +431,7 @@ customize_theme_dialogs() {
}
run_customize_theme_dialogs() {
install_dialog && customize_theme_dialogs && change_theme_color && change_transparency && change_size && parse_sass
install_dialog && customize_theme_dialogs && change_transparency && change_size && parse_sass
}
parse_sass() {
@ -471,160 +454,17 @@ change_transparency() {
fi
}
change_theme_color() {
if [[ -x /usr/bin/notify-send ]]; then
notify-send "Notice" "It will take a few minutes to regenerate the assets files, please be patient!" -i face-wink
fi
cd ${SRC_DIR}/sass
sed -i.bak "/\$selected_bg_color/s/theme_color_default/theme_color_${theme_color}/" _colors.scss
if [[ ${theme_color} == 'blue' ]]; then
local accent="#2E7CF7"
elif [[ ${theme_color} == 'purple' ]]; then
local accent="#9A57A3"
elif [[ ${theme_color} == 'pink' ]]; then
local accent="#E55E9C"
elif [[ ${theme_color} == 'red' ]]; then
local accent="#ED5F5D"
elif [[ ${theme_color} == 'orange' ]]; then
local accent="#E9873A"
elif [[ ${theme_color} == 'yellow' ]]; then
local accent="#F3BA4B"
elif [[ ${theme_color} == 'green' ]]; then
local accent="#79B757"
elif [[ ${theme_color} == 'grey' ]]; then
local accent="#8C8C8C"
elif [[ ${theme_color} == 'default' ]]; then
local accent="#0860F2"
else
prompt -i "\n Run ./install.sh -h for help or install dialog"
prompt -i "\n Run ./install.sh again!"
exit 0
fi
if [[ "${theme_color:-}" != 'default' ]]; then
cd ${SRC_DIR}/assets/gtk-3.0
mv -f thumbnail-dark.png thumbnail-dark.png.bak
mv -f thumbnail-light.png thumbnail-light.png.bak
sed -i.bak "s/#0860f2/${accent}/g" thumbnail.svg
./render-thumbnails.sh
cd ${SRC_DIR}/assets/gtk-3.0/common-assets
cp -an assets assets-bak
sed -i.bak "s/#0860f2/${accent}/g" assets.svg
./render-assets.sh
cd ${SRC_DIR}/assets/gnome-shell/common-assets
sed -i.bak "s/#0860f2/${accent}/g" {checkbox.svg,more-results.svg,toggle-on.svg}
cd ${SRC_DIR}/main/gtk-2.0
sed -i.bak "s/#0860f2/${accent}/g" {gtkrc-dark,gtkrc-light}
cd ${SRC_DIR}/assets/gtk-2.0
cp -an assets-dark assets-dark-bak
cp -an assets-light assets-light-bak
sed -i.bak "s/#0860f2/${accent}/g" {assets-dark.svg,assets-light.svg}
./render-assets.sh
cd ${SRC_DIR}/assets/cinnamon
mv -f thumbnail-dark.png thumbnail-dark.png.bak
mv -f thumbnail-light.png thumbnail-light.png.bak
sed -i.bak "s/#0860f2/${accent}/g" thumbnail.svg
./render-thumbnails.sh
cd ${SRC_DIR}/assets/cinnamon/common-assets
sed -i.bak "s/#0860f2/${accent}/g" {checkbox.svg,radiobutton.svg,menu-hover.svg,add-workspace-active.svg,corner-ripple.svg,toggle-on.svg}
prompt -w "Change theme color ..."
fi
}
restore_assets_files() {
echo " restore gtk-3.0 thumbnail files"
mv -f "$SRC_DIR/assets/gtk-3.0/thumbnail.svg.bak" "$SRC_DIR/assets/gtk-3.0/thumbnail.svg"
mv -f "$SRC_DIR/assets/gtk-3.0/thumbnail-dark.png.bak" "$SRC_DIR/assets/gtk-3.0/thumbnail-dark.png"
mv -f "$SRC_DIR/assets/gtk-3.0/thumbnail-light.png.bak" "$SRC_DIR/assets/gtk-3.0/thumbnail-light.png"
echo " restore gtk-3.0 assets files"
mv -f "$SRC_DIR/assets/gtk-3.0/common-assets/assets.svg.bak" "$SRC_DIR/assets/gtk-3.0/common-assets/assets.svg"
if [[ -d "$SRC_DIR/assets/gtk-3.0/common-assets/assets-bak" ]]; then
rm -rf "$SRC_DIR/assets/gtk-3.0/common-assets/assets"
mv -f "$SRC_DIR/assets/gtk-3.0/common-assets/assets-bak" "$SRC_DIR/assets/gtk-3.0/common-assets/assets"
fi
echo "...restore gnome-shell assets files"
cd "$SRC_DIR/assets/gnome-shell/common-assets"
mv -f checkbox.svg.bak checkbox.svg
mv -f more-results.svg.bak more-results.svg
mv -f toggle-on.svg.bak toggle-on.svg
echo "...restore gtk-2.0 gtkrc files"
cd "$SRC_DIR/main/gtk-2.0"
mv -f gtkrc-dark.bak gtkrc-dark
mv -f gtkrc-light.bak gtkrc-light
echo "...restore gtk-2.0 assets files"
cd "${SRC_DIR}/assets/gtk-2.0"
mv -f assets-dark.svg.bak assets-dark.svg
mv -f assets-light.svg.bak assets-light.svg
if [[ -d assets-dark-bak ]]; then
rm -rf assets-dark/
mv -f assets-dark-bak assets-dark
fi
if [[ -d assets-light-bak ]]; then
rm -rf assets-light/
mv -f assets-light-bak assets-light
fi
echo "...restore cinnamon thumbnail files"
cd "$SRC_DIR/assets/cinnamon"
mv -f thumbnail.svg.bak thumbnail.svg
mv -f thumbnail-dark.png.bak thumbnail-dark.png
mv -f thumbnail-light.png.bak thumbnail-light.png
echo "...restore cinnamon assets files"
cd "$SRC_DIR/assets/cinnamon/common-assets"
mv -f checkbox.svg.bak checkbox.svg
mv -f radiobutton.svg.bak radiobutton.svg
mv -f add-workspace-active.svg.bak add-workspace-active.svg
mv -f menu-hover.svg.bak menu-hover.svg
mv -f toggle-on.svg.bak toggle-on.svg
mv -f corner-ripple.svg.bak corner-ripple.svg
prompt -w "Restore assets files finished!..."
}
restore_files() {
local restore_file='false'
if [[ -f ${SRC_DIR}/sass/gtk/_applications.scss.bak ]]; then
local restore_file='true'
cd ${SRC_DIR}/sass/gtk
rm -rf _applications.scss
mv -f _applications.scss.bak _applications.scss
prompt -w "Restore _applications.scss file ..."
fi
if [[ -f ${SRC_DIR}/sass/_colors.scss.bak ]]; then
local restore_file='true'
cd ${SRC_DIR}/sass
rm -rf _colors.scss
mv -f _colors.scss.bak _colors.scss
prompt -w "Restore _colors.scss file ..."
fi
if [[ -f ${SRC_DIR}/sass/_variables.scss.bak ]]; then
local restore_file='true'
cd ${SRC_DIR}/sass
rm -rf _variables.scss
mv -f _variables.scss.bak _variables.scss
@ -634,10 +474,6 @@ restore_files() {
if [[ "${restore_file:-}" == 'true' ]]; then
parse_sass
fi
if [[ -f "${SRC_DIR}"/assets/gtk-3.0/thumbnail.svg.bak ]]; then
restore_assets_files
fi
}
while [[ $# -gt 0 ]]; do
@ -787,51 +623,52 @@ while [[ $# -gt 0 ]]; do
done
;;
-t|--theme)
theme='true'
shift
for theme_color in "${@}"; do
case "${theme_color}" in
for theme in "${@}"; do
case "${theme}" in
default)
theme_colors+=("${THEME_COLOR_VARIANTS[0]}")
themes+=("${THEME_VARIANTS[0]}")
shift
;;
blue)
theme_colors+=("${THEME_COLOR_VARIANTS[1]}")
themes+=("${THEME_VARIANTS[1]}")
shift
;;
purple)
theme_colors+=("${THEME_COLOR_VARIANTS[2]}")
themes+=("${THEME_VARIANTS[2]}")
shift
;;
pink)
theme_colors+=("${THEME_COLOR_VARIANTS[3]}")
themes+=("${THEME_VARIANTS[3]}")
shift
;;
red)
theme_colors+=("${THEME_COLOR_VARIANTS[4]}")
themes+=("${THEME_VARIANTS[4]}")
shift
;;
orange)
theme_colors+=("${THEME_COLOR_VARIANTS[5]}")
themes+=("${THEME_VARIANTS[5]}")
shift
;;
yellow)
theme_colors+=("${THEME_COLOR_VARIANTS[6]}")
themes+=("${THEME_VARIANTS[6]}")
shift
;;
green)
theme_colors+=("${THEME_COLOR_VARIANTS[7]}")
themes+=("${THEME_VARIANTS[7]}")
shift
;;
grey)
theme_colors+=("${THEME_COLOR_VARIANTS[8]}")
themes+=("${THEME_VARIANTS[8]}")
shift
;;
-*|--*)
break
;;
*)
customize_theme_dialogs
prompt -e "ERROR: Unrecognized theme variant '$1'."
prompt -i "Try '$0 --help' for more information."
exit 1
;;
esac
done
@ -953,16 +790,16 @@ if [[ "${remove:-}" != 'true' && "${gdm:-}" != 'true' ]]; then
run_customize_theme_dialogs
fi
if [[ "${theme:-}" != 'true' && "${size:-}" != 'true' && "${panel:-}" != 'true' ]]; then
if [[ "${size:-}" != 'true' && "${panel:-}" != 'true' ]]; then
install_theme
else
install_customize_theme && parse_sass && install_theme "${panel_opacity}" "${sidebar_size}" "${theme_color}"
install_customize_theme && parse_sass && install_theme "${panel_opacity}" "${sidebar_size}"
fi
fi
# Install GDM theme
if [[ "${gdm:-}" == 'true' && "${remove:-}" != 'true' && "$UID" -eq "$ROOT_UID" ]]; then
install_theme && install_gdm "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}" "${theme_color}"
install_theme && install_gdm "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}" "${theme}"
fi
# Remove themes

View file

@ -37,25 +37,38 @@ if [ ! -z "${TRANS_VARIANTS:-}" ]; then
IFS=', ' read -r -a _TRANS_VARIANTS <<< "${TRANS_VARIANTS:-}"
fi
_THEME_VARIANTS=('' '-blue' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-grey')
if [ ! -z "${THEME_VARIANTS:-}" ]; then
IFS=', ' read -r -a _THEME_VARIANTS <<< "${THEME_VARIANTS:-}"
fi
for color in "${_COLOR_VARIANTS[@]}"; do
for trans in "${_TRANS_VARIANTS[@]}"; do
sassc $SASSC_OPT src/main/gtk-3.0/gtk${color}${trans}.{scss,css}
echo "==> Generating the gtk${color}${trans}.css..."
sassc $SASSC_OPT src/main/cinnamon/cinnamon${color}${trans}.{scss,css}
echo "==> Generating the cinnamon${color}${trans}.css..."
for theme in "${_THEME_VARIANTS[@]}"; do
sassc $SASSC_OPT src/main/gtk-3.0/gtk${color}${trans}${theme}.{scss,css}
echo "==> Generating the gtk${color}${trans}${theme}.css..."
sassc $SASSC_OPT src/main/cinnamon/cinnamon${color}${trans}${theme}.{scss,css}
echo "==> Generating the cinnamon${color}${trans}${theme}.css..."
done
done
done
for color in "${_COLOR_VARIANTS[@]}"; do
for trans in "${_TRANS_VARIANTS[@]}"; do
for alt in "${_ALT_VARIANTS[@]}"; do
sassc $SASSC_OPT src/main/gnome-shell/gnome-shell${color}${trans}${alt}.{scss,css}
echo "==> Generating the gnome-shell${color}${trans}${alt}.css..."
for theme in "${_THEME_VARIANTS[@]}"; do
sassc $SASSC_OPT src/main/gnome-shell/gnome-shell${color}${trans}${alt}${theme}.{scss,css}
echo "==> Generating the gnome-shell${color}${trans}${alt}${theme}.css..."
done
done
done
done
sassc $SASSC_OPT src/main/gnome-shell/gdm3${color}.{scss,css}
echo "==> Generating the gdm3${color}.css..."
for color in "${_COLOR_VARIANTS[@]}"; do
for theme in "${_THEME_VARIANTS[@]}"; do
sassc $SASSC_OPT src/main/gnome-shell/gdm3${color}${theme}.{scss,css}
echo "==> Generating the gdm3${color}${theme}.css..."
done
done
sassc $SASSC_OPT src/other/dash-to-dock/stylesheet.{scss,css}

View file

@ -0,0 +1,12 @@
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.6500004"/>
</filter>
</defs>
<g transform="translate(0 -852.36)" shape-rendering="auto">
<path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#000000" fill-opacity=".44" filter="url(#filter4154)" image-rendering="auto" opacity=".9" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#2E7CF7" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" color="#000000" color-rendering="auto" fill="#eceff1" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,32 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse">
<stop stop-color="#2E7CF7" offset="0"/>
</linearGradient>
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="checkbox-checked-dark" transform="translate(-32 3.638)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="17" y="30.362" width="16" height="16" rx="2.2857" ry="2.2857" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="#ffffff" opacity=".1" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,5 @@
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -948.36)">
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#2E7CF7" opacity=".25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 218 B

View file

@ -0,0 +1,7 @@
<svg width="34" height="34" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1.0666 0 0 1.0667 -146.13 -409.05)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)">
<rect x="1059.7" y="108" width="261.81" height="33" fill="#2E7CF7"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 287 B

View file

@ -0,0 +1,25 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse">
<stop stop-color="#2E7CF7" offset="0"/>
</linearGradient>
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="radio-checked-dark" transform="translate(-112 3.6376)">
<g transform="translate(19.004)">
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".1" stroke-width="0"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#ffffff" filter="url(#bp)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#2E7CF7" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,12 @@
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.6500004"/>
</filter>
</defs>
<g transform="translate(0 -852.36)" shape-rendering="auto">
<path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#000000" fill-opacity=".44" filter="url(#filter4154)" image-rendering="auto" opacity=".9" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#79B757" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" color="#000000" color-rendering="auto" fill="#eceff1" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,32 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse">
<stop stop-color="#79B757" offset="0"/>
</linearGradient>
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="checkbox-checked-dark" transform="translate(-32 3.638)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="17" y="30.362" width="16" height="16" rx="2.2857" ry="2.2857" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="#ffffff" opacity=".1" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,5 @@
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -948.36)">
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#79B757" opacity=".25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 218 B

View file

@ -0,0 +1,7 @@
<svg width="34" height="34" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1.0666 0 0 1.0667 -146.13 -409.05)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)">
<rect x="1059.7" y="108" width="261.81" height="33" fill="#79B757"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 287 B

View file

@ -0,0 +1,25 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse">
<stop stop-color="#79B757" offset="0"/>
</linearGradient>
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="radio-checked-dark" transform="translate(-112 3.6376)">
<g transform="translate(19.004)">
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".1" stroke-width="0"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#ffffff" filter="url(#bp)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#79B757" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,12 @@
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.6500004"/>
</filter>
</defs>
<g transform="translate(0 -852.36)" shape-rendering="auto">
<path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#000000" fill-opacity=".44" filter="url(#filter4154)" image-rendering="auto" opacity=".9" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#8C8C8C" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" color="#000000" color-rendering="auto" fill="#eceff1" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,32 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse">
<stop stop-color="#8C8C8C" offset="0"/>
</linearGradient>
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="checkbox-checked-dark" transform="translate(-32 3.638)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="17" y="30.362" width="16" height="16" rx="2.2857" ry="2.2857" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="#ffffff" opacity=".1" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,5 @@
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -948.36)">
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#8C8C8C" opacity=".25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 218 B

View file

@ -0,0 +1,7 @@
<svg width="34" height="34" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1.0666 0 0 1.0667 -146.13 -409.05)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)">
<rect x="1059.7" y="108" width="261.81" height="33" fill="#8C8C8C"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 287 B

View file

@ -0,0 +1,25 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse">
<stop stop-color="#8C8C8C" offset="0"/>
</linearGradient>
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="radio-checked-dark" transform="translate(-112 3.6376)">
<g transform="translate(19.004)">
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".1" stroke-width="0"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#ffffff" filter="url(#bp)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#8C8C8C" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,12 @@
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.6500004"/>
</filter>
</defs>
<g transform="translate(0 -852.36)" shape-rendering="auto">
<path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#000000" fill-opacity=".44" filter="url(#filter4154)" image-rendering="auto" opacity=".9" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#E9873A" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" color="#000000" color-rendering="auto" fill="#eceff1" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,32 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse">
<stop stop-color="#E9873A" offset="0"/>
</linearGradient>
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="checkbox-checked-dark" transform="translate(-32 3.638)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="17" y="30.362" width="16" height="16" rx="2.2857" ry="2.2857" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="#ffffff" opacity=".1" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,5 @@
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -948.36)">
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#E9873A" opacity=".25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 218 B

View file

@ -0,0 +1,7 @@
<svg width="34" height="34" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1.0666 0 0 1.0667 -146.13 -409.05)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)">
<rect x="1059.7" y="108" width="261.81" height="33" fill="#E9873A"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 287 B

View file

@ -0,0 +1,25 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse">
<stop stop-color="#E9873A" offset="0"/>
</linearGradient>
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="radio-checked-dark" transform="translate(-112 3.6376)">
<g transform="translate(19.004)">
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".1" stroke-width="0"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#ffffff" filter="url(#bp)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#E9873A" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,12 @@
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.6500004"/>
</filter>
</defs>
<g transform="translate(0 -852.36)" shape-rendering="auto">
<path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#000000" fill-opacity=".44" filter="url(#filter4154)" image-rendering="auto" opacity=".9" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#E55E9C" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" color="#000000" color-rendering="auto" fill="#eceff1" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,32 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse">
<stop stop-color="#E55E9C" offset="0"/>
</linearGradient>
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="checkbox-checked-dark" transform="translate(-32 3.638)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="17" y="30.362" width="16" height="16" rx="2.2857" ry="2.2857" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="#ffffff" opacity=".1" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,5 @@
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -948.36)">
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#E55E9C" opacity=".25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 218 B

View file

@ -0,0 +1,7 @@
<svg width="34" height="34" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1.0666 0 0 1.0667 -146.13 -409.05)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)">
<rect x="1059.7" y="108" width="261.81" height="33" fill="#E55E9C"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 287 B

View file

@ -0,0 +1,25 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse">
<stop stop-color="#E55E9C" offset="0"/>
</linearGradient>
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="radio-checked-dark" transform="translate(-112 3.6376)">
<g transform="translate(19.004)">
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".1" stroke-width="0"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#ffffff" filter="url(#bp)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#E55E9C" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,12 @@
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.6500004"/>
</filter>
</defs>
<g transform="translate(0 -852.36)" shape-rendering="auto">
<path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#000000" fill-opacity=".44" filter="url(#filter4154)" image-rendering="auto" opacity=".9" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#9A57A3" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" color="#000000" color-rendering="auto" fill="#eceff1" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,32 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse">
<stop stop-color="#9A57A3" offset="0"/>
</linearGradient>
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="checkbox-checked-dark" transform="translate(-32 3.638)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="17" y="30.362" width="16" height="16" rx="2.2857" ry="2.2857" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="#ffffff" opacity=".1" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,5 @@
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -948.36)">
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#9A57A3" opacity=".25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 218 B

View file

@ -0,0 +1,7 @@
<svg width="34" height="34" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1.0666 0 0 1.0667 -146.13 -409.05)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)">
<rect x="1059.7" y="108" width="261.81" height="33" fill="#9A57A3"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 287 B

View file

@ -0,0 +1,25 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse">
<stop stop-color="#9A57A3" offset="0"/>
</linearGradient>
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="radio-checked-dark" transform="translate(-112 3.6376)">
<g transform="translate(19.004)">
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".1" stroke-width="0"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#ffffff" filter="url(#bp)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#9A57A3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,12 @@
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.6500004"/>
</filter>
</defs>
<g transform="translate(0 -852.36)" shape-rendering="auto">
<path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#000000" fill-opacity=".44" filter="url(#filter4154)" image-rendering="auto" opacity=".9" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#ED5F5D" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" color="#000000" color-rendering="auto" fill="#eceff1" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,32 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse">
<stop stop-color="#ED5F5D" offset="0"/>
</linearGradient>
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="checkbox-checked-dark" transform="translate(-32 3.638)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="17" y="30.362" width="16" height="16" rx="2.2857" ry="2.2857" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="#ffffff" opacity=".1" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,5 @@
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -948.36)">
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#ED5F5D" opacity=".25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 218 B

View file

@ -0,0 +1,7 @@
<svg width="34" height="34" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1.0666 0 0 1.0667 -146.13 -409.05)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)">
<rect x="1059.7" y="108" width="261.81" height="33" fill="#ED5F5D"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 287 B

View file

@ -0,0 +1,25 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse">
<stop stop-color="#ED5F5D" offset="0"/>
</linearGradient>
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="radio-checked-dark" transform="translate(-112 3.6376)">
<g transform="translate(19.004)">
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".1" stroke-width="0"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#ffffff" filter="url(#bp)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#ED5F5D" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,12 @@
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.6500004"/>
</filter>
</defs>
<g transform="translate(0 -852.36)" shape-rendering="auto">
<path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#000000" fill-opacity=".44" filter="url(#filter4154)" image-rendering="auto" opacity=".9" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#F3BA4B" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" color="#000000" color-rendering="auto" fill="#eceff1" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,32 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse">
<stop stop-color="#F3BA4B" offset="0"/>
</linearGradient>
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="checkbox-checked-dark" transform="translate(-32 3.638)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="17" y="30.362" width="16" height="16" rx="2.2857" ry="2.2857" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="#ffffff" opacity=".1" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,5 @@
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -948.36)">
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#F3BA4B" opacity=".25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 218 B

View file

@ -0,0 +1,7 @@
<svg width="34" height="34" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1.0666 0 0 1.0667 -146.13 -409.05)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)">
<rect x="1059.7" y="108" width="261.81" height="33" fill="#F3BA4B"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 287 B

View file

@ -0,0 +1,25 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse">
<stop stop-color="#F3BA4B" offset="0"/>
</linearGradient>
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="radio-checked-dark" transform="translate(-112 3.6376)">
<g transform="translate(19.004)">
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".1" stroke-width="0"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#ffffff" filter="url(#bp)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#F3BA4B" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1,11 +1,6 @@
<svg width="34" height="34" version="1.1" viewBox="0 0 31.875 31.875" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="linearGradient4140" x1="1185" x2="1185" y1="108" y2="141" gradientUnits="userSpaceOnUse">
<stop stop-color="#5294e2" offset="0"/>
</linearGradient>
</defs>
<g transform="translate(-137 -383.49)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)" fill="url(#linearGradient4140)" stroke-width=".84386">
<svg width="34" height="34" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1.0666 0 0 1.0667 -146.13 -409.05)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)">
<rect x="1059.7" y="108" width="261.81" height="33" fill="#0860f2"/>
</g>
</g>

Before

Width:  |  Height:  |  Size: 641 B

After

Width:  |  Height:  |  Size: 287 B

View file

@ -1,19 +0,0 @@
#! /usr/bin/env bash
INKSCAPE="/usr/bin/inkscape"
OPTIPNG="/usr/bin/optipng"
SRC_FILE="thumbnail.svg"
[[ -f thumbnail-light.png ]] && rm -rf thumbnail-light.png
echo Rendering thumbnail-light.png
$INKSCAPE --export-id=thumbnail-light --export-id-only --export-filename=thumbnail-light.png $SRC_FILE >/dev/null
$OPTIPNG -o7 --quiet thumbnail-light.png
[[ -f thumbnail-dark.png ]] && rm -rf thumbnail-dark.png
echo Rendering thumbnail-dark.png
$INKSCAPE --export-id=thumbnail-dark --export-id-only --export-filename=thumbnail-dark.png $SRC_FILE >/dev/null
$OPTIPNG -o7 --quiet thumbnail-dark.png
exit 0

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 223 KiB

View file

@ -0,0 +1,21 @@
#! /usr/bin/env bash
INKSCAPE="/usr/bin/inkscape"
OPTIPNG="/usr/bin/optipng"
SRC_FILE="thumbnail.svg"
for theme in '' '-blue' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-grey'; do
[[ -f thumbnail-light${theme}.png ]] && rm -rf thumbnail-light${theme}.png
echo Rendering thumbnail-light${theme}.png
$INKSCAPE --export-id=thumbnail-light${theme} --export-id-only --export-filename=thumbnail-light${theme}.png $SRC_FILE >/dev/null
$OPTIPNG -o7 --quiet thumbnail-light${theme}.png
[[ -f thumbnail-dark${theme}.png ]] && rm -rf thumbnail-dark${theme}.png
echo Rendering thumbnail-dark${theme}.png
$INKSCAPE --export-id=thumbnail-dark${theme} --export-id-only --export-filename=thumbnail-dark${theme}.png $SRC_FILE >/dev/null
$OPTIPNG -o7 --quiet thumbnail-dark${theme}.png
done
exit 0

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

View file

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

View file

Before

Width:  |  Height:  |  Size: 6 KiB

After

Width:  |  Height:  |  Size: 6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -0,0 +1,19 @@
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter946" x="-.094335" y="-.12629" width="1.1887" height="1.2526" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.39306292"/>
</filter>
<linearGradient id="linearGradient866" x1="11" x2="11" y1="21" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".35" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="16" height="16" color="#000000" fill="none"/>
<rect x="2" y="2" width="20" height="20" rx="4" ry="4" color="#000000" opacity=".12" stroke-width="1.25" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#2E7CF7" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".1" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="4" width="18" height="17" rx="3" ry="3" color="#000000" fill="url(#linearGradient866)" stroke-width="1.2966" style="paint-order:fill markers stroke"/>
<rect transform="rotate(45)" x="13.79" y="1.1834" width="3" height="1" fill-opacity="0"/>
<path d="m15.806 9.1937c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#000000" filter="url(#filter946)" opacity=".15" stroke-width="1.1926"/>
<path d="m15.806 8.2653c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#ffffff" stroke-width="1.1926"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -1036.4)">
<circle cx="8" cy="1044.4" r="8" fill="#2E7CF7"/>
<path transform="translate(0 1036.4)" d="m7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 298 B

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#2E7CF7" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,19 @@
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter946" x="-.094335" y="-.12629" width="1.1887" height="1.2526" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.39306292"/>
</filter>
<linearGradient id="linearGradient866" x1="11" x2="11" y1="21" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".35" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="16" height="16" color="#000000" fill="none"/>
<rect x="2" y="2" width="20" height="20" rx="4" ry="4" color="#000000" opacity=".12" stroke-width="1.25" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#79B757" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".1" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="4" width="18" height="17" rx="3" ry="3" color="#000000" fill="url(#linearGradient866)" stroke-width="1.2966" style="paint-order:fill markers stroke"/>
<rect transform="rotate(45)" x="13.79" y="1.1834" width="3" height="1" fill-opacity="0"/>
<path d="m15.806 9.1937c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#000000" filter="url(#filter946)" opacity=".15" stroke-width="1.1926"/>
<path d="m15.806 8.2653c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#ffffff" stroke-width="1.1926"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -1036.4)">
<circle cx="8" cy="1044.4" r="8" fill="#79B757"/>
<path transform="translate(0 1036.4)" d="m7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 298 B

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#79B757" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,19 @@
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter946" x="-.094335" y="-.12629" width="1.1887" height="1.2526" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.39306292"/>
</filter>
<linearGradient id="linearGradient866" x1="11" x2="11" y1="21" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".35" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="16" height="16" color="#000000" fill="none"/>
<rect x="2" y="2" width="20" height="20" rx="4" ry="4" color="#000000" opacity=".12" stroke-width="1.25" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#8C8C8C" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".1" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="4" width="18" height="17" rx="3" ry="3" color="#000000" fill="url(#linearGradient866)" stroke-width="1.2966" style="paint-order:fill markers stroke"/>
<rect transform="rotate(45)" x="13.79" y="1.1834" width="3" height="1" fill-opacity="0"/>
<path d="m15.806 9.1937c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#000000" filter="url(#filter946)" opacity=".15" stroke-width="1.1926"/>
<path d="m15.806 8.2653c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#ffffff" stroke-width="1.1926"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -1036.4)">
<circle cx="8" cy="1044.4" r="8" fill="#8C8C8C"/>
<path transform="translate(0 1036.4)" d="m7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 298 B

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#8C8C8C" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,19 @@
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter946" x="-.094335" y="-.12629" width="1.1887" height="1.2526" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.39306292"/>
</filter>
<linearGradient id="linearGradient866" x1="11" x2="11" y1="21" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".35" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="16" height="16" color="#000000" fill="none"/>
<rect x="2" y="2" width="20" height="20" rx="4" ry="4" color="#000000" opacity=".12" stroke-width="1.25" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#E9873A" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".1" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="4" width="18" height="17" rx="3" ry="3" color="#000000" fill="url(#linearGradient866)" stroke-width="1.2966" style="paint-order:fill markers stroke"/>
<rect transform="rotate(45)" x="13.79" y="1.1834" width="3" height="1" fill-opacity="0"/>
<path d="m15.806 9.1937c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#000000" filter="url(#filter946)" opacity=".15" stroke-width="1.1926"/>
<path d="m15.806 8.2653c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#ffffff" stroke-width="1.1926"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -1036.4)">
<circle cx="8" cy="1044.4" r="8" fill="#E9873A"/>
<path transform="translate(0 1036.4)" d="m7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 298 B

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#E9873A" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,19 @@
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter946" x="-.094335" y="-.12629" width="1.1887" height="1.2526" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.39306292"/>
</filter>
<linearGradient id="linearGradient866" x1="11" x2="11" y1="21" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".35" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="16" height="16" color="#000000" fill="none"/>
<rect x="2" y="2" width="20" height="20" rx="4" ry="4" color="#000000" opacity=".12" stroke-width="1.25" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#E55E9C" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".1" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="4" width="18" height="17" rx="3" ry="3" color="#000000" fill="url(#linearGradient866)" stroke-width="1.2966" style="paint-order:fill markers stroke"/>
<rect transform="rotate(45)" x="13.79" y="1.1834" width="3" height="1" fill-opacity="0"/>
<path d="m15.806 9.1937c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#000000" filter="url(#filter946)" opacity=".15" stroke-width="1.1926"/>
<path d="m15.806 8.2653c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#ffffff" stroke-width="1.1926"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -1036.4)">
<circle cx="8" cy="1044.4" r="8" fill="#E55E9C"/>
<path transform="translate(0 1036.4)" d="m7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 298 B

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#E55E9C" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,19 @@
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter946" x="-.094335" y="-.12629" width="1.1887" height="1.2526" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.39306292"/>
</filter>
<linearGradient id="linearGradient866" x1="11" x2="11" y1="21" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".35" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="16" height="16" color="#000000" fill="none"/>
<rect x="2" y="2" width="20" height="20" rx="4" ry="4" color="#000000" opacity=".12" stroke-width="1.25" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#9A57A3" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".1" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="4" width="18" height="17" rx="3" ry="3" color="#000000" fill="url(#linearGradient866)" stroke-width="1.2966" style="paint-order:fill markers stroke"/>
<rect transform="rotate(45)" x="13.79" y="1.1834" width="3" height="1" fill-opacity="0"/>
<path d="m15.806 9.1937c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#000000" filter="url(#filter946)" opacity=".15" stroke-width="1.1926"/>
<path d="m15.806 8.2653c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#ffffff" stroke-width="1.1926"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -1036.4)">
<circle cx="8" cy="1044.4" r="8" fill="#9A57A3"/>
<path transform="translate(0 1036.4)" d="m7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 298 B

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#9A57A3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,19 @@
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter946" x="-.094335" y="-.12629" width="1.1887" height="1.2526" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.39306292"/>
</filter>
<linearGradient id="linearGradient866" x1="11" x2="11" y1="21" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".35" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="16" height="16" color="#000000" fill="none"/>
<rect x="2" y="2" width="20" height="20" rx="4" ry="4" color="#000000" opacity=".12" stroke-width="1.25" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#ED5F5D" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".1" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="4" width="18" height="17" rx="3" ry="3" color="#000000" fill="url(#linearGradient866)" stroke-width="1.2966" style="paint-order:fill markers stroke"/>
<rect transform="rotate(45)" x="13.79" y="1.1834" width="3" height="1" fill-opacity="0"/>
<path d="m15.806 9.1937c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#000000" filter="url(#filter946)" opacity=".15" stroke-width="1.1926"/>
<path d="m15.806 8.2653c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#ffffff" stroke-width="1.1926"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -1036.4)">
<circle cx="8" cy="1044.4" r="8" fill="#ED5F5D"/>
<path transform="translate(0 1036.4)" d="m7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 298 B

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#ED5F5D" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,19 @@
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter946" x="-.094335" y="-.12629" width="1.1887" height="1.2526" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.39306292"/>
</filter>
<linearGradient id="linearGradient866" x1="11" x2="11" y1="21" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".35" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="16" height="16" color="#000000" fill="none"/>
<rect x="2" y="2" width="20" height="20" rx="4" ry="4" color="#000000" opacity=".12" stroke-width="1.25" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#F3BA4B" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".1" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="4" width="18" height="17" rx="3" ry="3" color="#000000" fill="url(#linearGradient866)" stroke-width="1.2966" style="paint-order:fill markers stroke"/>
<rect transform="rotate(45)" x="13.79" y="1.1834" width="3" height="1" fill-opacity="0"/>
<path d="m15.806 9.1937c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#000000" filter="url(#filter946)" opacity=".15" stroke-width="1.1926"/>
<path d="m15.806 8.2653c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#ffffff" stroke-width="1.1926"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -1036.4)">
<circle cx="8" cy="1044.4" r="8" fill="#F3BA4B"/>
<path transform="translate(0 1036.4)" d="m7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 298 B

View file

@ -0,0 +1,20 @@
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="filter1034" x="-.037565" y="-.037565" width="1.0751" height="1.0751" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<filter id="filter1038" x="-.0216" y="-.070497" width="1.0432" height="1.141" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.36"/>
</filter>
<linearGradient id="linearGradient862" x1="19" x2="19" y1="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#ffffff" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect width="40" height="24" rx="12" ry="12" fill="#F3BA4B" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect width="40" height="24" rx="12" ry="12" fill="url(#linearGradient862)" opacity=".3" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
<rect y="-.038" width="40" height="24" opacity="0" stroke-width=".87706"/>
<circle cx="28" cy="12.5" r="11.5" fill="#000000" filter="url(#filter1034)" opacity=".1" stroke-width="1.2778"/>
<circle cx="28" cy="12" r="11" fill="#ffffff" stroke-width="1.2222"/>
<path d="m12 0c-6.648 0-12 5.352-12 12 0 0.086409 0.011872 0.1699 0.013672 0.25586 0.13601-6.2562 5.4243-11.256 11.986-11.256h16c6.562 0 11.85 4.9996 11.986 11.256 0.0018-0.085962 0.013672-0.16945 0.013672-0.25586 0-6.648-5.352-12-12-12h-16z" fill="#000000" filter="url(#filter1038)" opacity=".1" stroke-linecap="round" stroke-linejoin="round" stroke-width=".495" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,232 @@
<svg width="176" height="260" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs id="theme">
<linearGradient id="selected_bg_color" osb:paint="solid">
<stop stop-color="#2E7CF7" offset="0"/>
</linearGradient>
<clipPath id="clipPath4695">
<rect x="104" y="-280.64" width="21" height="26" rx="0" ry="0" fill="#ff1616" opacity=".64"/>
</clipPath>
<clipPath id="clipPath4695-6">
<rect x="104" y="-280.64" width="21" height="26" rx="0" ry="0" fill="#ff1616" opacity=".64"/>
</clipPath>
<linearGradient id="linearGradient5043" x1="220" x2="220" y1="281" y2="286" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5049" x1="-54.638" x2="-54.638" y1="-235" y2="-227" gradientTransform="translate(253.54 83.568)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5051" x1="231" x2="231" y1="-82.638" y2="-74.638" gradientTransform="translate(-83.568 253.54)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5053" x1="240.5" x2="240.5" y1="-154.64" y2="-129.64" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient1559" x1="263" x2="263" y1="-152.64" y2="-137.64" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="selected_fg_color" osb:paint="solid">
<stop stop-color="#ffffff" offset="0"/>
</linearGradient>
<linearGradient id="linearGradient3893" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient3889" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient1759" x1="31" x2="57" y1="-267.64" y2="-267.64" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5017" x1="44" x2="44" y1="-279.64" y2="-255.64" gradientTransform="matrix(.96308 0 0 .95987 1.6244 -10.74)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<clipPath id="clipPath4466-3-1-0-6">
<rect transform="scale(-1,1)" x="-18" y="-280.64" width="21" height="26" fill="#ff1111" opacity=".558"/>
</clipPath>
<linearGradient id="linearGradient5171-1" x1="9.5" x2="9.5" y1="-279.64" y2="-255.64" gradientTransform="translate(1)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient6618-1" x1="17.5" x2="17.5" y1="-279.14" y2="-256.14" gradientTransform="matrix(2,0,0,1,-18,0)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<clipPath id="clipPath4466-3-1-5">
<rect transform="scale(-1,1)" x="-18" y="-280.64" width="21" height="26" fill="#ff1111" opacity=".558"/>
</clipPath>
<linearGradient id="linearGradient5171" x1="9.5" x2="9.5" y1="-279.64" y2="-255.64" gradientTransform="translate(.5)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<clipPath id="clipPath4470-6-5">
<rect transform="scale(-1,1)" x="-52" y="-280.64" width="21" height="26" fill="#ff1111" opacity=".558"/>
</clipPath>
<linearGradient id="linearGradient5025" x1="43.5" x2="43.5" y1="-279.64" y2="-255.64" gradientTransform="translate(.5)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5121-9" x1="51.5" x2="51.5" y1="-278.64" y2="-256.64" gradientTransform="matrix(2,0,0,1,-154,-5.2172e-6)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<clipPath id="clipPath4470-7-0-2">
<rect transform="scale(-1,1)" x="-52" y="-280.64" width="21" height="26" fill="#ff1111" opacity=".558"/>
</clipPath>
<linearGradient id="linearGradient5121-0" x1="51.5" x2="51.5" y1="-278.64" y2="-256.64" gradientTransform="matrix(2,0,0,1,-154,-5.2344e-6)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<clipPath id="clipPath4470-7-1">
<rect transform="scale(-1,1)" x="-52" y="-280.64" width="21" height="26" fill="#ff1111" opacity=".558"/>
</clipPath>
<linearGradient id="linearGradient5121-2" x1="51.5" x2="51.5" y1="-278.64" y2="-256.64" gradientTransform="matrix(2,0,0,1,-52,-5.2172e-6)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<clipPath id="clipPath4470-70">
<rect transform="scale(-1,1)" x="-52" y="-280.64" width="21" height="26" fill="#ff1111" opacity=".558"/>
</clipPath>
<linearGradient id="linearGradient5121" x1="51.5" x2="51.5" y1="-278.64" y2="-256.64" gradientTransform="matrix(2,0,0,1,-52,0)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient1765" x1="121.6" x2="126.4" y1="8.3622" y2="8.3622" gradientTransform="matrix(.39689 0 0 .39689 112.97 71.165)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
<linearGradient id="linearGradient1767" x1="145.93" x2="156" y1="19.012" y2="19.012" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
<linearGradient id="linearGradient2007" x1="101" x2="123" y1="-267.64" y2="-267.64" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient1944" x1="245" x2="270" y1="-145.14" y2="-145.14" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient1943" x1="121.6" x2="126.4" y1="8.3622" y2="8.3622" gradientTransform="matrix(1.5,0,0,1.5,-62,-4.1811)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
</defs>
<rect transform="scale(1,-1)" x="1.0954" y="-260" width="176" height="260" rx="0" ry="0" color="#000000" fill="#333333" stroke-width=".46579"/>
<g id="button-active" transform="translate(-35.404 299.18)">
<rect x="101" y="-278.64" width="22" height="22" rx="4" ry="4" fill="url(#linearGradient2007)"/>
<rect transform="scale(1,-1)" x="100.5" y="256.14" width="23" height="23" rx="4.5" ry="4.5" fill="none" stroke="#000000" stroke-opacity=".11765"/>
<rect x="99" y="-279.64" width="26" height="24" fill="none" opacity=".133"/>
<path transform="translate(-7,-283.64)" d="m112 5c-2.216 0-4 1.784-4 4v0.81836c0-2.1153 1.784-3.8184 4-3.8184h14c2.216 0 4 1.7031 4 3.8184v-0.81836c0-2.216-1.784-4-4-4z" fill="#ffffff" opacity=".1"/>
</g>
<g id="combo-entry-button-active" transform="translate(-48.695 411.1)">
<g transform="translate(-18,90)" clip-path="url(#clipPath4695)">
<rect x="101" y="-278.64" width="22" height="22" rx="3" ry="3" fill="url(#linearGradient2007)"/>
<rect transform="scale(1,-1)" x="100.5" y="256.14" width="23" height="23" rx="3.5" ry="3.5" fill="none" stroke="#000000" stroke-opacity=".11765"/>
<rect x="99" y="-279.64" width="26" height="24" fill="none" opacity=".133"/>
<path transform="translate(52,-513.64)" d="m52 235c-1.662 0-3 1.338-3 3v0.86328c0-1.5864 1.338-2.8633 3-2.8633h16c1.662 0 3 1.2768 3 2.8633v-0.86328c0-1.662-1.338-3-3-3z" fill="#ffffff" opacity=".1"/>
</g>
<rect x="86" y="-188.64" width="1" height="22" fill="#000000" opacity=".1"/>
</g>
<g id="combo-entry-button-active-rtl" transform="matrix(-1 0 0 1 176.31 411.1)">
<g transform="translate(-18,90)" clip-path="url(#clipPath4695-6)">
<rect x="101" y="-278.64" width="22" height="22" rx="3" ry="3" fill="url(#linearGradient2007)"/>
<rect transform="scale(1,-1)" x="100.5" y="256.14" width="23" height="23" rx="3.5" ry="3.5" fill="none" stroke="#000000" stroke-opacity=".11765"/>
<rect x="99" y="-279.64" width="26" height="24" fill="none" opacity=".133"/>
<path transform="matrix(-1,0,0,1,209,-513.64)" d="m89 235c-1.662 0-3 1.338-3 3v0.86328c0-1.5864 1.338-2.8633 3-2.8633h16c1.662 0 3 1.2768 3 2.8633v-0.86328c0-1.662-1.338-3-3-3z" fill="#ffffff" opacity=".1"/>
</g>
<rect x="86" y="-188.64" width="1" height="22" fill="#000000" opacity=".1"/>
</g>
<g id="menuitem" transform="translate(-165.45 235.4)">
<rect x="233" y="-154.64" width="15" height="25" rx="0" ry="0" fill="url(#linearGradient5053)"/>
</g>
<rect id="progressbar_v" x="132.44" y="170.9" width="30" height="8" rx="4" ry="4" fill="url(#linearGradient5051)"/>
<rect id="progressbar" transform="rotate(90)" x="183.9" y="-151.44" width="30" height="8" rx="4" ry="4" fill="url(#linearGradient5049)"/>
<g id="menubar_button" transform="translate(-151.69 233.4)">
<path id="wsad" d="m245-152.64h25v15h-25v-13z" fill="url(#linearGradient1559)"/>
</g>
<g id="trough-horizontal-active" transform="translate(-76.082 -174.86)">
<rect x="203" y="276" width="34" height="15" rx="0" ry="0" fill="none"/>
<rect x="208" y="281" width="24" height="5" rx="2.5" ry="2.5" fill="url(#linearGradient5043)"/>
</g>
<g id="trough-vertical-active" transform="rotate(90 254.22 174.91)">
<rect x="203" y="276" width="34" height="15" rx="0" ry="0" fill="none"/>
<rect x="208" y="281" width="24" height="5" rx="2.5" ry="2.5" fill="url(#linearGradient5043)"/>
</g>
<g id="pathbar_button_active" transform="translate(-207.9 257.74)">
<g transform="translate(57.5)" fill="#fafbfc">
<rect x="245" y="-152.64" width="25" height="15" fill="none"/>
</g>
<g transform="matrix(1 0 0 .13333 57.5 -119.29)">
<rect x="245" y="-152.64" width="25" height="15" fill="url(#linearGradient1944)"/>
</g>
</g>
<g id="pathbar_button_prelight" transform="translate(-207.9 282.74)" opacity=".5">
<g transform="translate(57.5)" fill="#fafbfc">
<rect x="245" y="-152.64" width="25" height="15" fill="none" opacity="1"/>
</g>
<g transform="matrix(1 0 0 .13333 57.5 -119.29)">
<rect x="245" y="-152.64" width="25" height="15" fill="url(#linearGradient1944)" opacity="1"/>
</g>
</g>
<g id="checkbox-checked" transform="translate(31.17 53.462)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#linearGradient3889)" style="paint-order:fill markers stroke"/>
<path transform="translate(-189,25.36)" d="m209 6.002c-1.108 0-2 0.892-2 2v0.85742c0-1.0288 0.892-1.8574 2-1.8574h10c1.108 0 2 0.82859 2 1.8574v-0.85742c0-1.108-0.892-2-2-2z" color="#000000" fill="#ffffff" opacity=".15" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="url(#linearGradient1767)" filter="url(#filter1536)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
<g id="radio-checked" transform="translate(-25.606 53.462)">
<g transform="translate(19.004)">
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<g stroke-width="0">
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#linearGradient3893)"/>
<path transform="matrix(2.0989,0,0,2.0656,-471.01,114.17)" d="m256 5.998c-3.8779 0-7 3.122-7 7 0 0.08784 0.0105 0.17273 0.0137 0.25976 0.13749-3.4868 3.1966-6.2578 6.9863-6.2578s6.8488 2.771 6.9863 6.2578c3e-3 -0.08705 0.0137-0.17191 0.0137-0.25976 0-3.878-3.1221-7-7-7z" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
</g>
</g>
</g>
</g>
<rect x="121" y="5.3622" width="6" height="6" rx="2.9984" ry="3" color="#000000" fill="url(#linearGradient1943)" filter="url(#filter1488)" stroke-width="1.5"/>
</g>
<g id="menu-checkbox-checked" transform="matrix(3.7795 0 0 3.7795 -447.5 -219.71)">
<g transform="matrix(.26458 0 0 .26458 144.46 64.335)">
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#linearGradient3889)" style="paint-order:fill markers stroke"/>
<path transform="translate(-274.88,25.376)" d="m294.88 5.9863c-1.108 0-2 0.89202-2 2v0.85547c0-1.0288 0.89203-1.8555 2-1.8555h9.998c1.108 0 2 0.82666 2 1.8555v-0.85547c0-1.108-0.89202-2-2-2z" color="#000000" fill="#ffffff" opacity=".15" stroke-width=".99998" style="paint-order:fill markers stroke"/>
</g>
<g transform="matrix(.26458 0 0 .26458 148.96 -201.84)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="url(#linearGradient1767)" filter="url(#filter1536)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
<g id="menu-radio-checked" transform="matrix(3.7795 0 0 3.7795 -464.36 -219.69)">
<g transform="matrix(.2477 0 0 .24756 108.8 7.5133)">
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<g stroke-width="0">
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#linearGradient3893)"/>
<path transform="matrix(2.0989,0,0,2.0657,-651.26,114.2)" d="m341.88 5.9824c-3.8779 0-7 3.122-7 7 0 0.0876 0.0105 0.17296 0.0137 0.25977 0.1375-3.4868 3.1965-6.2578 6.9863-6.2578h2e-3c3.7898 0 6.8488 2.771 6.9863 6.2578 3e-3 -0.0868 0.0137-0.17216 0.0137-0.25977 0-3.878-3.1221-7-7-7z" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
</g>
</g>
</g>
<rect x="161.39" y="73.69" width="1.5875" height="1.5875" rx=".79334" ry=".79377" color="#000000" fill="url(#linearGradient1765)" filter="url(#filter1488)" stroke-width=".39689"/>
</g>
<g id="button-active-hover" transform="translate(-1.4035 299.18)">
<rect x="101" y="-278.64" width="22" height="22" rx="4" ry="4" fill="url(#linearGradient2007)"/>
<rect transform="scale(1,-1)" x="100.5" y="256.14" width="23" height="23" rx="4.5" ry="4.5" fill="none" stroke="#000000" stroke-opacity=".11765"/>
<rect x="99" y="-279.64" width="26" height="24" fill="none" opacity=".133"/>
<path transform="translate(-7,-283.64)" d="m112 5c-2.216 0-4 1.784-4 4v0.81836c0-2.1153 1.784-3.8184 4-3.8184h14c2.216 0 4 1.7031 4 3.8184v-0.81836c0-2.216-1.784-4-4-4z" fill="#ffffff" opacity=".1"/>
<rect x="101" y="-278.64" width="22" height="22" rx="4" ry="4" fill="#ffffff" opacity=".15"/>
</g>
<g id="entry-active-bg" transform="translate(-8.6948 333.1)">
<rect x="31" y="-279.64" width="26" height="24" fill="#333333"/>
<rect x="32" y="-278.64" width="24" height="22" rx="2.5" ry="2.5" fill="#242424" stroke="#fefefe" stroke-opacity=".058824"/>
<rect x="31.961" y="-278.68" width="24.077" height="22.077" rx="4.3339" ry="4.3194" fill="none" stroke="url(#linearGradient5017)" stroke-width="1.923"/>
</g>
<g id="entry-active-notebook" transform="translate(-8.6948 365.1)">
<rect x="31" y="-279.64" width="26" height="24" rx="0" ry="0" fill="#242424"/>
<rect x="32" y="-278.64" width="24" height="22" rx="4" ry="4" fill="#242424"/>
<rect x="31.961" y="-278.68" width="24.077" height="22.077" rx="4.3339" ry="4.3194" fill="none" stroke="url(#linearGradient5017)" stroke-width="1.923"/>
</g>
<g id="combo-entry-focus" transform="translate(-8.0731 430.86)" clip-path="url(#clipPath4470-70)">
<rect x="31" y="-279.64" width="26" height="24" rx="0" ry="0" fill="#333333"/>
<rect x="32" y="-278.64" width="23" height="22" rx="3" ry="3" fill="#242424"/>
<rect x="32" y="-279.14" width="24" height="23" rx="4.5" ry="4.5" fill="none" stroke="url(#linearGradient5025)" stroke-width="2"/>
<rect x="50" y="-278.64" width="2" height="22" fill="url(#linearGradient5121)"/>
</g>
<g id="combo-entry-focus-notebook" transform="translate(-8.0731 460.86)" clip-path="url(#clipPath4470-7-1)">
<rect x="32" y="-278.64" width="23" height="22" rx="3" ry="3" fill="#242424"/>
<rect x="32" y="-279.14" width="24" height="23" rx="4.5" ry="4.5" fill="none" stroke="url(#linearGradient5025)" stroke-width="2"/>
<rect x="50" y="-278.64" width="2" height="22" fill="url(#linearGradient5121-2)"/>
</g>
<g id="combo-entry-focus-rtl" transform="matrix(-1 0 0 1 105.93 430.86)" clip-path="url(#clipPath4470-6-5)">
<rect transform="scale(-1,1)" x="-57" y="-279.64" width="26" height="24" rx="0" ry="0" fill="#333333"/>
<rect transform="scale(-1,1)" x="-55" y="-278.64" width="23" height="22" rx="3" ry="3" fill="#242424"/>
<rect x="32" y="-279.14" width="24" height="23" rx="4.5" ry="4.5" fill="none" stroke="url(#linearGradient5025)" stroke-width="2"/>
<rect transform="scale(-1,1)" x="-52" y="-278.64" width="2" height="22" fill="url(#linearGradient5121-9)"/>
</g>
<g id="combo-entry-focus-notebook-rtl" transform="matrix(-1 0 0 1 105.93 460.86)" clip-path="url(#clipPath4470-7-0-2)">
<rect transform="scale(-1,1)" x="-55" y="-278.64" width="23" height="22" rx="3" ry="3" fill="#242424"/>
<rect x="32" y="-279.14" width="24" height="23" rx="4.5" ry="4.5" fill="none" stroke="url(#linearGradient5025)" stroke-width="2"/>
<rect transform="scale(-1,1)" x="-52" y="-278.64" width="2" height="22" fill="url(#linearGradient5121-0)"/>
</g>
<g id="entry-active-toolbar" transform="translate(-8.6948 397.1)">
<rect x="31" y="-279.64" width="26" height="24" rx="0" ry="0" fill="#333333"/>
<rect x="32" y="-278.64" width="24" height="22" rx="4" ry="4" fill="#242424"/>
<rect x="31.961" y="-278.68" width="24.077" height="22.077" rx="4.3339" ry="4.3194" fill="none" stroke="url(#linearGradient5017)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.923" style="paint-order:markers stroke fill"/>
</g>
<g id="entry-border-active-bg" transform="translate(-8.6948 303.1)">
<path d="m30-280.64v26h28v-26h-27zm2 2h24v22h-24z" fill="#333333"/>
<path transform="translate(-113,-345.64)" d="m144 66v24h26v-24zm3.5 1h19c1.385 0 2.5 1.115 2.5 2.5v17c0 1.385-1.115 2.5-2.5 2.5h-19c-1.385 0-2.5-1.115-2.5-2.5v-17c0-1.385 1.115-2.5 2.5-2.5z" fill="#333333"/>
<rect x="31.5" y="-279.14" width="25" height="23" rx="4.5" ry="4.5" fill="none" stroke="url(#linearGradient1759)" stroke-width="2"/>
</g>
<g id="combo-entry-border-focus" transform="translate(92.966 432.34)" clip-path="url(#clipPath4466-3-1-5)">
<path transform="translate(40,-428.64)" d="m-43 149v24h26v-24zm3 1h18c1.108 0 2 0.892 2 2v18c0 1.108-0.892 2-2 2h-18c-1.108 0-2-0.892-2-2v-18c0-1.108 0.892-2 2-2z" fill="#333333"/>
<rect x="-2" y="-279.14" width="24" height="23" rx="4.5" ry="4.5" fill="none" stroke="url(#linearGradient5171)" stroke-width="2"/>
<rect x="16" y="-278.64" width="2" height="22" fill="url(#linearGradient6618-1)"/>
</g>
<g id="combo-entry-border-focus-rtl" transform="matrix(-1 0 0 1 107.97 462.34)" clip-path="url(#clipPath4466-3-1-0-6)">
<path transform="translate(40,-428.64)" d="m-43 149v24h26v-24zm3 1h18c1.108 0 2 0.892 2 2v18c0 1.108-0.892 2-2 2h-18l-2-2v-18z" fill="#333333"/>
<rect x="-1.5" y="-279.14" width="24" height="23" rx="4.5" ry="4.5" fill="none" stroke="url(#linearGradient5171-1)" stroke-width="2"/>
<rect x="16" y="-278.64" width="2" height="22" fill="url(#linearGradient6618-1)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 377 B

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