Update
337
assets.sh
Normal file
@@ -0,0 +1,337 @@
|
|||||||
|
make_assets() {
|
||||||
|
local dest="${1}"
|
||||||
|
local name="${2}"
|
||||||
|
local theme="${3}"
|
||||||
|
local color="${4}"
|
||||||
|
local size="${5}"
|
||||||
|
local scheme="${6}"
|
||||||
|
local window="${7}"
|
||||||
|
|
||||||
|
[[ "${color}" == '-Light' ]] && local ELSE_LIGHT="${color}"
|
||||||
|
[[ "${color}" == '-Dark' ]] && local ELSE_DARK="${color}"
|
||||||
|
|
||||||
|
local THEME_DIR="${1}/${2}${3}${4}${5}${6}"
|
||||||
|
|
||||||
|
case "$theme" in
|
||||||
|
'')
|
||||||
|
theme_color_dark='#3c84f7'
|
||||||
|
theme_color_light='#5b9bf8'
|
||||||
|
;;
|
||||||
|
-Purple)
|
||||||
|
theme_color_dark='#AB47BC'
|
||||||
|
theme_color_light='#BA68C8'
|
||||||
|
;;
|
||||||
|
-Pink)
|
||||||
|
theme_color_dark='#EC407A'
|
||||||
|
theme_color_light='#F06292'
|
||||||
|
;;
|
||||||
|
-Red)
|
||||||
|
theme_color_dark='#E53935'
|
||||||
|
theme_color_light='#F44336'
|
||||||
|
;;
|
||||||
|
-Orange)
|
||||||
|
theme_color_dark='#F57C00'
|
||||||
|
theme_color_light='#FB8C00'
|
||||||
|
;;
|
||||||
|
-Yellow)
|
||||||
|
theme_color_dark='#FBC02D'
|
||||||
|
theme_color_light='#FFD600'
|
||||||
|
;;
|
||||||
|
-Green)
|
||||||
|
theme_color_dark='#4CAF50'
|
||||||
|
theme_color_light='#66BB6A'
|
||||||
|
;;
|
||||||
|
-Teal)
|
||||||
|
theme_color_dark='#009688'
|
||||||
|
theme_color_light='#4DB6AC'
|
||||||
|
;;
|
||||||
|
-Grey)
|
||||||
|
theme_color_dark='#464646'
|
||||||
|
theme_color_light='#DDDDDD'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [[ "$scheme" == '-Nord' ]]; then
|
||||||
|
case "$theme" in
|
||||||
|
'')
|
||||||
|
theme_color_dark='#5e81ac'
|
||||||
|
theme_color_light='#89a3c2'
|
||||||
|
;;
|
||||||
|
-Purple)
|
||||||
|
theme_color_dark='#b57daa'
|
||||||
|
theme_color_light='#c89dbf'
|
||||||
|
;;
|
||||||
|
-Pink)
|
||||||
|
theme_color_dark='#cd7092'
|
||||||
|
theme_color_light='#dc98b1'
|
||||||
|
;;
|
||||||
|
-Red)
|
||||||
|
theme_color_dark='#c35b65'
|
||||||
|
theme_color_light='#d4878f'
|
||||||
|
;;
|
||||||
|
-Orange)
|
||||||
|
theme_color_dark='#d0846c'
|
||||||
|
theme_color_light='#dca493'
|
||||||
|
;;
|
||||||
|
-Yellow)
|
||||||
|
theme_color_dark='#e4b558'
|
||||||
|
theme_color_light='#eac985'
|
||||||
|
;;
|
||||||
|
-Green)
|
||||||
|
theme_color_dark='#82ac5d'
|
||||||
|
theme_color_light='#a0c082'
|
||||||
|
;;
|
||||||
|
-Teal)
|
||||||
|
theme_color_dark='#63a6a5'
|
||||||
|
theme_color_light='#83b9b8'
|
||||||
|
;;
|
||||||
|
-Grey)
|
||||||
|
theme_color_dark='#3a4150'
|
||||||
|
theme_color_light='#d9dce3'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$scheme" == '-Dracula' ]]; then
|
||||||
|
case "$theme" in
|
||||||
|
'')
|
||||||
|
theme_color_dark='#a679ec'
|
||||||
|
theme_color_light='#bd93f9'
|
||||||
|
;;
|
||||||
|
-Purple)
|
||||||
|
theme_color_dark='#a679ec'
|
||||||
|
theme_color_light='#bd93f9'
|
||||||
|
;;
|
||||||
|
-Pink)
|
||||||
|
theme_color_dark='#f04cab'
|
||||||
|
theme_color_light='#ff79c6'
|
||||||
|
;;
|
||||||
|
-Red)
|
||||||
|
theme_color_dark='#f44d4d'
|
||||||
|
theme_color_light='#ff5555'
|
||||||
|
;;
|
||||||
|
-Orange)
|
||||||
|
theme_color_dark='#f8a854'
|
||||||
|
theme_color_light='#ffb86c'
|
||||||
|
;;
|
||||||
|
-Yellow)
|
||||||
|
theme_color_dark='#e8f467'
|
||||||
|
theme_color_light='#f1fa8c'
|
||||||
|
;;
|
||||||
|
-Green)
|
||||||
|
theme_color_dark='#4be772'
|
||||||
|
theme_color_light='#50fa7b'
|
||||||
|
;;
|
||||||
|
-Teal)
|
||||||
|
theme_color_dark='#20eed9'
|
||||||
|
theme_color_light='#50fae9'
|
||||||
|
;;
|
||||||
|
-Grey)
|
||||||
|
theme_color_dark='#3c3f51'
|
||||||
|
theme_color_light='#d9dae3'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$scheme" == '-Gruvbox' ]]; then
|
||||||
|
case "$theme" in
|
||||||
|
'')
|
||||||
|
theme_color_dark='#458588'
|
||||||
|
theme_color_light='#83a598'
|
||||||
|
;;
|
||||||
|
-Purple)
|
||||||
|
theme_color_dark='#ab62b1'
|
||||||
|
theme_color_light='#d386cd'
|
||||||
|
;;
|
||||||
|
-Pink)
|
||||||
|
theme_color_dark='#b16286'
|
||||||
|
theme_color_light='#d3869b'
|
||||||
|
;;
|
||||||
|
-Red)
|
||||||
|
theme_color_dark='#cc241d'
|
||||||
|
theme_color_light='#fb4934'
|
||||||
|
;;
|
||||||
|
-Orange)
|
||||||
|
theme_color_dark='#d65d0e'
|
||||||
|
theme_color_light='#fe8019'
|
||||||
|
;;
|
||||||
|
-Yellow)
|
||||||
|
theme_color_dark='#d79921'
|
||||||
|
theme_color_light='#fabd2f'
|
||||||
|
;;
|
||||||
|
-Green)
|
||||||
|
theme_color_dark='#98971a'
|
||||||
|
theme_color_light='#b8bb26'
|
||||||
|
;;
|
||||||
|
-Teal)
|
||||||
|
theme_color_dark='#689d6a'
|
||||||
|
theme_color_light='#8ec07c'
|
||||||
|
;;
|
||||||
|
-Grey)
|
||||||
|
theme_color_dark='#3c3836'
|
||||||
|
theme_color_light='#a89984'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$scheme" == '-Everforest' ]]; then
|
||||||
|
case "$theme" in
|
||||||
|
'')
|
||||||
|
theme_color_dark='#458588'
|
||||||
|
theme_color_light='#83a598'
|
||||||
|
;;
|
||||||
|
-Purple)
|
||||||
|
theme_color_dark='#ab62b1'
|
||||||
|
theme_color_light='#d386cd'
|
||||||
|
;;
|
||||||
|
-Pink)
|
||||||
|
theme_color_dark='#b16286'
|
||||||
|
theme_color_light='#d3869b'
|
||||||
|
;;
|
||||||
|
-Red)
|
||||||
|
theme_color_dark='#cc241d'
|
||||||
|
theme_color_light='#fb4934'
|
||||||
|
;;
|
||||||
|
-Orange)
|
||||||
|
theme_color_dark='#d65d0e'
|
||||||
|
theme_color_light='#fe8019'
|
||||||
|
;;
|
||||||
|
-Yellow)
|
||||||
|
theme_color_dark='#d79921'
|
||||||
|
theme_color_light='#fabd2f'
|
||||||
|
;;
|
||||||
|
-Green)
|
||||||
|
theme_color_dark='#98971a'
|
||||||
|
theme_color_light='#b8bb26'
|
||||||
|
;;
|
||||||
|
-Teal)
|
||||||
|
theme_color_dark='#689d6a'
|
||||||
|
theme_color_light='#8ec07c'
|
||||||
|
;;
|
||||||
|
-Grey)
|
||||||
|
theme_color_dark='#3c3836'
|
||||||
|
theme_color_light='#a89984'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$blackness" == 'true' ]]; then
|
||||||
|
case "$ctype" in
|
||||||
|
'')
|
||||||
|
background_light='#FFFFFF'
|
||||||
|
background_dark='#0F0F0F'
|
||||||
|
background_dark_alt='#121212'
|
||||||
|
titlebar_light='#F2F2F2'
|
||||||
|
titlebar_dark='#030303'
|
||||||
|
;;
|
||||||
|
-Nord)
|
||||||
|
background_light='#f8fafc'
|
||||||
|
background_dark='#0d0e11'
|
||||||
|
background_dark_alt='#0f1115'
|
||||||
|
titlebar_light='#f0f1f4'
|
||||||
|
titlebar_dark='#020203'
|
||||||
|
;;
|
||||||
|
-Dracula)
|
||||||
|
background_light='#f9f9fb'
|
||||||
|
background_dark='#0d0d11'
|
||||||
|
background_dark_alt='#0f1015'
|
||||||
|
titlebar_light='#f0f1f4'
|
||||||
|
titlebar_dark='#020203'
|
||||||
|
;;
|
||||||
|
-Everforest)
|
||||||
|
background_light='#fffbef'
|
||||||
|
background_dark='#1e2326'
|
||||||
|
background_dark_alt='#232a2e'
|
||||||
|
titlebar_light='#f2efdf'
|
||||||
|
titlebar_dark='#020203'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
case "$ctype" in
|
||||||
|
'')
|
||||||
|
background_light='#ffffff'
|
||||||
|
background_dark='#2c2c2c'
|
||||||
|
background_dark_alt='#3c3c3c'
|
||||||
|
titlebar_light='#f2f2f2'
|
||||||
|
titlebar_dark='#242424'
|
||||||
|
;;
|
||||||
|
-Nord)
|
||||||
|
background_light='#f8fafc'
|
||||||
|
background_dark='#242932'
|
||||||
|
background_dark_alt='#333a47'
|
||||||
|
titlebar_light='#f0f1f4'
|
||||||
|
titlebar_dark='#1e222a'
|
||||||
|
;;
|
||||||
|
-Dracula)
|
||||||
|
background_light='#f9f9fb'
|
||||||
|
background_dark='#242632'
|
||||||
|
background_dark_alt='#343746'
|
||||||
|
titlebar_light='#f0f1f4'
|
||||||
|
titlebar_dark='#1f2029'
|
||||||
|
;;
|
||||||
|
-Everforest)
|
||||||
|
background_light='#fffbef'
|
||||||
|
background_dark='#232A2E'
|
||||||
|
background_dark_alt='#343F44'
|
||||||
|
background_light='#edeada'
|
||||||
|
background_dark='#1e2326'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p "${THEME_DIR}/cinnamon/assets"
|
||||||
|
cp -r "${SRC_DIR}/assets/cinnamon/theme/"*'.svg' "${THEME_DIR}/cinnamon/assets"
|
||||||
|
cp -r "${SRC_DIR}/assets/cinnamon/thumbnail${color}.svg" "${THEME_DIR}/cinnamon/thumbnail.png"
|
||||||
|
|
||||||
|
mkdir -p "${THEME_DIR}/gnome-shell/assets"
|
||||||
|
cp -r "${SRC_DIR}/assets/gnome-shell/theme/"*'.svg' "${THEME_DIR}/gnome-shell/assets"
|
||||||
|
|
||||||
|
cp -r "${SRC_DIR}/assets/gtk/assets" "${THEME_DIR}/gtk-3.0"
|
||||||
|
cp -r "${SRC_DIR}/assets/gtk/assets" "${THEME_DIR}/gtk-4.0"
|
||||||
|
cp -r "${SRC_DIR}/assets/gtk/thumbnail${ELSE_DARK:-}.svg" "${THEME_DIR}/gtk-3.0/thumbnail.png"
|
||||||
|
cp -r "${SRC_DIR}/assets/gtk/thumbnail${ELSE_DARK:-}.svg" "${THEME_DIR}/gtk-4.0/thumbnail.png"
|
||||||
|
|
||||||
|
sed -i "s/#5b9bf8/${theme_color_light}/g" "${THEME_DIR}/cinnamon/assets/"*'.svg'
|
||||||
|
sed -i "s/#3c84f7/${theme_color_dark}/g" "${THEME_DIR}/cinnamon/assets/"*'.svg'
|
||||||
|
|
||||||
|
sed -i "s/#5b9bf8/${theme_color_light}/g" "${THEME_DIR}/gnome-shell/assets/"*'.svg'
|
||||||
|
sed -i "s/#3c84f7/${theme_color_dark}/g" "${THEME_DIR}/gnome-shell/assets/"*'.svg'
|
||||||
|
|
||||||
|
sed -i "s/#5b9bf8/${theme_color_light}/g" "${THEME_DIR}/"{gtk-3.0,gtk-4.0}/assets/*'.svg'
|
||||||
|
sed -i "s/#3c84f7/${theme_color_dark}/g" "${THEME_DIR}/"{gtk-3.0,gtk-4.0}/assets/*'.svg'
|
||||||
|
sed -i "s/#ffffff/${background_light}/g" "${THEME_DIR}/"{gtk-3.0,gtk-4.0}/assets/*'.svg'
|
||||||
|
sed -i "s/#2c2c2c/${background_dark}/g" "${THEME_DIR}/"{gtk-3.0,gtk-4.0}/assets/*'.svg'
|
||||||
|
sed -i "s/#3c3c3c/${background_dark_alt}/g" "${THEME_DIR}/"{gtk-3.0,gtk-4.0}/assets/*'.svg'
|
||||||
|
|
||||||
|
if [[ "${color}" == '-Dark' ]]; then
|
||||||
|
sed -i "s/#2c2c2c/${background_dark}/g" "${THEME_DIR}/cinnamon/thumbnail.png"
|
||||||
|
sed -i "s/#5b9bf8/${theme_color_light}/g" "${THEME_DIR}/cinnamon/thumbnail.png"
|
||||||
|
sed -i "s/#2c2c2c/${background_dark}/g" "${THEME_DIR}/"{gtk-3.0,gtk-4.0}/thumbnail.png
|
||||||
|
sed -i "s/#5b9bf8/${theme_color_light}/g" "${THEME_DIR}/"{gtk-3.0,gtk-4.0}/thumbnail.png
|
||||||
|
else
|
||||||
|
sed -i "s/#ffffff/${background_light}/g" "${THEME_DIR}/cinnamon/thumbnail.png"
|
||||||
|
sed -i "s/#f2f2f2/${titlebar_light}/g" "${THEME_DIR}/cinnamon/thumbnail.png"
|
||||||
|
sed -i "s/#3c84f7/${theme_color_dark}/g" "${THEME_DIR}/cinnamon/thumbnail.png"
|
||||||
|
sed -i "s/#f2f2f2/${titlebar_light}/g" "${THEME_DIR}/"{gtk-3.0,gtk-4.0}/thumbnail.png
|
||||||
|
sed -i "s/#3c84f7/${theme_color_dark}/g" "${THEME_DIR}/"{gtk-3.0,gtk-4.0}/thumbnail.png
|
||||||
|
fi
|
||||||
|
|
||||||
|
cp -r "${SRC_DIR}/assets/cinnamon/common-assets/"*'.svg' "${THEME_DIR}/cinnamon/assets"
|
||||||
|
cp -r "${SRC_DIR}/assets/cinnamon/assets${ELSE_DARK:-}/"*'.svg' "${THEME_DIR}/cinnamon/assets"
|
||||||
|
|
||||||
|
cp -r "${SRC_DIR}/assets/gnome-shell/common-assets/"*'.svg' "${THEME_DIR}/gnome-shell/assets"
|
||||||
|
cp -r "${SRC_DIR}/assets/gnome-shell/assets${ELSE_DARK:-}/"*'.svg' "${THEME_DIR}/gnome-shell/assets"
|
||||||
|
|
||||||
|
cp -r "${SRC_DIR}/assets/gtk/symbolics/"*'.svg' "${THEME_DIR}/gtk-3.0/assets"
|
||||||
|
cp -r "${SRC_DIR}/assets/gtk/symbolics/"*'.svg' "${THEME_DIR}/gtk-4.0/assets"
|
||||||
|
|
||||||
|
cp -r "${SRC_DIR}/assets/gtk-2.0/assets-common${ELSE_DARK:-}" "${THEME_DIR}/gtk-2.0/assets"
|
||||||
|
cp -r "${SRC_DIR}/assets/gtk-2.0/assets${theme}${ELSE_DARK:-}${scheme}/"*"png" "${THEME_DIR}/gtk-2.0/assets"
|
||||||
|
|
||||||
|
cp -r "${SRC_DIR}/assets/metacity-1/assets${window}" "${THEME_DIR}/metacity-1/assets"
|
||||||
|
cp -r "${SRC_DIR}/assets/metacity-1/thumbnail${ELSE_DARK:-}.png" "${THEME_DIR}/metacity-1/thumbnail.png"
|
||||||
|
|
||||||
|
cp -r "${SRC_DIR}/assets/xfwm4/assets${ELSE_LIGHT:-}${scheme}${window}/"*.png "${THEME_DIR}/xfwm4"
|
||||||
|
cp -r "${SRC_DIR}/assets/xfwm4/assets${ELSE_LIGHT:-}${scheme}${window}-hdpi/"*.png "${THEME_DIR}-hdpi/xfwm4"
|
||||||
|
cp -r "${SRC_DIR}/assets/xfwm4/assets${ELSE_LIGHT:-}${scheme}${window}-xhdpi/"*.png "${THEME_DIR}-xhdpi/xfwm4"
|
||||||
|
}
|
18
gtkrc.sh
@@ -4,7 +4,7 @@ make_gtkrc() {
|
|||||||
local theme="${3}"
|
local theme="${3}"
|
||||||
local color="${4}"
|
local color="${4}"
|
||||||
local size="${5}"
|
local size="${5}"
|
||||||
local ctype="${6}"
|
local scheme="${6}"
|
||||||
local window="${7}"
|
local window="${7}"
|
||||||
|
|
||||||
[[ "${color}" == '-Light' ]] && local ELSE_LIGHT="${color}"
|
[[ "${color}" == '-Light' ]] && local ELSE_LIGHT="${color}"
|
||||||
@@ -44,7 +44,7 @@ make_gtkrc() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [[ "$ctype" == '-Nord' ]]; then
|
if [[ "$scheme" == '-Nord' ]]; then
|
||||||
case "$theme" in
|
case "$theme" in
|
||||||
'')
|
'')
|
||||||
theme_color='#5e81ac'
|
theme_color='#5e81ac'
|
||||||
@@ -76,7 +76,7 @@ make_gtkrc() {
|
|||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$ctype" == '-Dracula' ]]; then
|
if [[ "$scheme" == '-Dracula' ]]; then
|
||||||
case "$theme" in
|
case "$theme" in
|
||||||
'')
|
'')
|
||||||
theme_color='#a679ec'
|
theme_color='#a679ec'
|
||||||
@@ -107,7 +107,7 @@ make_gtkrc() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
if [[ "$ctype" == "-Everforest" ]]; then
|
if [[ "$scheme" == "-Everforest" ]]; then
|
||||||
case "$theme" in
|
case "$theme" in
|
||||||
'')
|
'')
|
||||||
theme_color='#7fbbb3'
|
theme_color='#7fbbb3'
|
||||||
@@ -168,7 +168,7 @@ make_gtkrc() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [[ "$ctype" == '-Nord' ]]; then
|
if [[ "$scheme" == '-Nord' ]]; then
|
||||||
case "$theme" in
|
case "$theme" in
|
||||||
'')
|
'')
|
||||||
theme_color='#89a3c2'
|
theme_color='#89a3c2'
|
||||||
@@ -200,7 +200,7 @@ make_gtkrc() {
|
|||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$ctype" == '-Dracula' ]]; then
|
if [[ "$scheme" == '-Dracula' ]]; then
|
||||||
case "$theme" in
|
case "$theme" in
|
||||||
'')
|
'')
|
||||||
theme_color='#bd93f9'
|
theme_color='#bd93f9'
|
||||||
@@ -232,7 +232,7 @@ make_gtkrc() {
|
|||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$ctype" == '-Everforest' ]]; then
|
if [[ "$scheme" == '-Everforest' ]]; then
|
||||||
case "$theme" in
|
case "$theme" in
|
||||||
'')
|
'')
|
||||||
theme_color='#3A94c5'
|
theme_color='#3A94c5'
|
||||||
@@ -266,7 +266,7 @@ make_gtkrc() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$blackness" == 'true' ]]; then
|
if [[ "$blackness" == 'true' ]]; then
|
||||||
case "$ctype" in
|
case "$scheme" in
|
||||||
'')
|
'')
|
||||||
background_light='#FFFFFF'
|
background_light='#FFFFFF'
|
||||||
background_dark='#0F0F0F'
|
background_dark='#0F0F0F'
|
||||||
@@ -301,7 +301,7 @@ make_gtkrc() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
else
|
else
|
||||||
case "$ctype" in
|
case "$scheme" in
|
||||||
'')
|
'')
|
||||||
background_light='#FFFFFF'
|
background_light='#FFFFFF'
|
||||||
background_dark='#2C2C2C'
|
background_dark='#2C2C2C'
|
||||||
|
32
install.sh
@@ -6,6 +6,7 @@ REPO_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
|||||||
SRC_DIR="${REPO_DIR}/src"
|
SRC_DIR="${REPO_DIR}/src"
|
||||||
|
|
||||||
source "${REPO_DIR}/gtkrc.sh"
|
source "${REPO_DIR}/gtkrc.sh"
|
||||||
|
source "${REPO_DIR}/assets.sh"
|
||||||
|
|
||||||
ROOT_UID=0
|
ROOT_UID=0
|
||||||
DEST_DIR=
|
DEST_DIR=
|
||||||
@@ -117,65 +118,39 @@ install() {
|
|||||||
cp -r "${SRC_DIR}/main/gnome-shell/pad-osd.css" "${THEME_DIR}/gnome-shell"
|
cp -r "${SRC_DIR}/main/gnome-shell/pad-osd.css" "${THEME_DIR}/gnome-shell"
|
||||||
sassc $SASSC_OPT "${SRC_DIR}/main/gnome-shell/gnome-shell${color}.scss" "${THEME_DIR}/gnome-shell/gnome-shell.css"
|
sassc $SASSC_OPT "${SRC_DIR}/main/gnome-shell/gnome-shell${color}.scss" "${THEME_DIR}/gnome-shell/gnome-shell.css"
|
||||||
|
|
||||||
cp -r "${SRC_DIR}/assets/gnome-shell/common-assets" "${THEME_DIR}/gnome-shell/assets"
|
|
||||||
cp -r "${SRC_DIR}/assets/gnome-shell/assets${ELSE_DARK:-}/"*.svg "${THEME_DIR}/gnome-shell/assets"
|
|
||||||
cp -r "${SRC_DIR}/assets/gnome-shell/theme${theme}${scheme}/"*.svg "${THEME_DIR}/gnome-shell/assets"
|
|
||||||
|
|
||||||
cd "${THEME_DIR}/gnome-shell"
|
|
||||||
ln -sf assets/no-events.svg no-events.svg
|
|
||||||
ln -sf assets/process-working.svg process-working.svg
|
|
||||||
ln -sf assets/no-notifications.svg no-notifications.svg
|
|
||||||
|
|
||||||
mkdir -p "${THEME_DIR}/gtk-2.0"
|
mkdir -p "${THEME_DIR}/gtk-2.0"
|
||||||
# cp -r "${SRC_DIR}/main/gtk-2.0/gtkrc${theme}${ELSE_DARK:-}${scheme}" "${THEME_DIR}/gtk-2.0/gtkrc"
|
# cp -r "${SRC_DIR}/main/gtk-2.0/gtkrc${theme}${ELSE_DARK:-}${scheme}" "${THEME_DIR}/gtk-2.0/gtkrc"
|
||||||
cp -r "${SRC_DIR}/main/gtk-2.0/common/"*'.rc' "${THEME_DIR}/gtk-2.0"
|
cp -r "${SRC_DIR}/main/gtk-2.0/common/"*'.rc' "${THEME_DIR}/gtk-2.0"
|
||||||
cp -r "${SRC_DIR}/assets/gtk-2.0/assets-common${ELSE_DARK:-}" "${THEME_DIR}/gtk-2.0/assets"
|
|
||||||
cp -r "${SRC_DIR}/assets/gtk-2.0/assets${theme}${ELSE_DARK:-}${scheme}/"*"png" "${THEME_DIR}/gtk-2.0/assets"
|
|
||||||
|
|
||||||
mkdir -p "${THEME_DIR}/gtk-3.0"
|
mkdir -p "${THEME_DIR}/gtk-3.0"
|
||||||
cp -r "${SRC_DIR}/assets/gtk/assets${theme}${scheme}" "${THEME_DIR}/gtk-3.0/assets"
|
|
||||||
cp -r "${SRC_DIR}/assets/gtk/scalable" "${THEME_DIR}/gtk-3.0/assets"
|
|
||||||
cp -r "${SRC_DIR}/assets/gtk/thumbnails/thumbnail${theme}${scheme}${ELSE_DARK:-}.png" "${THEME_DIR}/gtk-3.0/thumbnail.png"
|
|
||||||
sassc $SASSC_OPT "${SRC_DIR}/main/gtk-3.0/gtk${color}.scss" "${THEME_DIR}/gtk-3.0/gtk.css"
|
sassc $SASSC_OPT "${SRC_DIR}/main/gtk-3.0/gtk${color}.scss" "${THEME_DIR}/gtk-3.0/gtk.css"
|
||||||
sassc $SASSC_OPT "${SRC_DIR}/main/gtk-3.0/gtk-Dark.scss" "${THEME_DIR}/gtk-3.0/gtk-dark.css"
|
sassc $SASSC_OPT "${SRC_DIR}/main/gtk-3.0/gtk-Dark.scss" "${THEME_DIR}/gtk-3.0/gtk-dark.css"
|
||||||
|
|
||||||
mkdir -p "${THEME_DIR}/gtk-4.0"
|
mkdir -p "${THEME_DIR}/gtk-4.0"
|
||||||
cp -r "${SRC_DIR}/assets/gtk/assets${theme}${scheme}" "${THEME_DIR}/gtk-4.0/assets"
|
|
||||||
cp -r "${SRC_DIR}/assets/gtk/scalable" "${THEME_DIR}/gtk-4.0/assets"
|
|
||||||
cp -r "${SRC_DIR}/assets/gtk/thumbnails/thumbnail${theme}${scheme}${ELSE_DARK:-}.png" "${THEME_DIR}/gtk-4.0/thumbnail.png"
|
|
||||||
sassc $SASSC_OPT "${SRC_DIR}/main/gtk-4.0/gtk${color}.scss" "${THEME_DIR}/gtk-4.0/gtk.css"
|
sassc $SASSC_OPT "${SRC_DIR}/main/gtk-4.0/gtk${color}.scss" "${THEME_DIR}/gtk-4.0/gtk.css"
|
||||||
sassc $SASSC_OPT "${SRC_DIR}/main/gtk-4.0/gtk-Dark.scss" "${THEME_DIR}/gtk-4.0/gtk-dark.css"
|
sassc $SASSC_OPT "${SRC_DIR}/main/gtk-4.0/gtk-Dark.scss" "${THEME_DIR}/gtk-4.0/gtk-dark.css"
|
||||||
|
|
||||||
mkdir -p "${THEME_DIR}/cinnamon"
|
mkdir -p "${THEME_DIR}/cinnamon"
|
||||||
cp -r "${SRC_DIR}/assets/cinnamon/common-assets" "${THEME_DIR}/cinnamon/assets"
|
|
||||||
cp -r "${SRC_DIR}/assets/cinnamon/assets${ELSE_DARK:-}/"*'.svg' "${THEME_DIR}/cinnamon/assets"
|
|
||||||
cp -r "${SRC_DIR}/assets/cinnamon/theme${theme}${scheme}/"*'.svg' "${THEME_DIR}/cinnamon/assets"
|
|
||||||
sassc $SASSC_OPT "${SRC_DIR}/main/cinnamon/cinnamon${color}.scss" "${THEME_DIR}/cinnamon/cinnamon.css"
|
sassc $SASSC_OPT "${SRC_DIR}/main/cinnamon/cinnamon${color}.scss" "${THEME_DIR}/cinnamon/cinnamon.css"
|
||||||
cp -r "${SRC_DIR}/assets/cinnamon/thumbnails/thumbnail${theme}${scheme}${color}.png" "${THEME_DIR}/cinnamon/thumbnail.png"
|
|
||||||
|
|
||||||
mkdir -p "${THEME_DIR}/metacity-1"
|
mkdir -p "${THEME_DIR}/metacity-1"
|
||||||
cp -r "${SRC_DIR}/main/metacity-1/metacity-theme-3${window}.xml" "${THEME_DIR}/metacity-1/metacity-theme-3.xml"
|
cp -r "${SRC_DIR}/main/metacity-1/metacity-theme-3${window}.xml" "${THEME_DIR}/metacity-1/metacity-theme-3.xml"
|
||||||
cp -r "${SRC_DIR}/assets/metacity-1/assets${window}" "${THEME_DIR}/metacity-1/assets"
|
|
||||||
cp -r "${SRC_DIR}/assets/metacity-1/thumbnail${ELSE_DARK:-}.png" "${THEME_DIR}/metacity-1/thumbnail.png"
|
|
||||||
cd "${THEME_DIR}/metacity-1" && ln -sf metacity-theme-3.xml metacity-theme-1.xml && ln -sf metacity-theme-3.xml metacity-theme-2.xml
|
cd "${THEME_DIR}/metacity-1" && ln -sf metacity-theme-3.xml metacity-theme-1.xml && ln -sf metacity-theme-3.xml metacity-theme-2.xml
|
||||||
|
|
||||||
mkdir -p "${THEME_DIR}/xfwm4"
|
mkdir -p "${THEME_DIR}/xfwm4"
|
||||||
cp -r "${SRC_DIR}/assets/xfwm4/assets${ELSE_LIGHT:-}${scheme}${window}/"*.png "${THEME_DIR}/xfwm4"
|
|
||||||
cp -r "${SRC_DIR}/main/xfwm4/themerc${ELSE_LIGHT:-}" "${THEME_DIR}/xfwm4/themerc"
|
cp -r "${SRC_DIR}/main/xfwm4/themerc${ELSE_LIGHT:-}" "${THEME_DIR}/xfwm4/themerc"
|
||||||
mkdir -p "${THEME_DIR}-hdpi/xfwm4"
|
mkdir -p "${THEME_DIR}-hdpi/xfwm4"
|
||||||
cp -r "${SRC_DIR}/assets/xfwm4/assets${ELSE_LIGHT:-}${scheme}${window}-hdpi/"*.png "${THEME_DIR}-hdpi/xfwm4"
|
|
||||||
cp -r "${SRC_DIR}/main/xfwm4/themerc${ELSE_LIGHT:-}" "${THEME_DIR}-hdpi/xfwm4/themerc"
|
cp -r "${SRC_DIR}/main/xfwm4/themerc${ELSE_LIGHT:-}" "${THEME_DIR}-hdpi/xfwm4/themerc"
|
||||||
sed -i "s/button_offset=6/button_offset=9/" "${THEME_DIR}-hdpi/xfwm4/themerc"
|
sed -i "s/button_offset=6/button_offset=9/" "${THEME_DIR}-hdpi/xfwm4/themerc"
|
||||||
mkdir -p "${THEME_DIR}-xhdpi/xfwm4"
|
mkdir -p "${THEME_DIR}-xhdpi/xfwm4"
|
||||||
cp -r "${SRC_DIR}/assets/xfwm4/assets${ELSE_LIGHT:-}${scheme}${window}-xhdpi/"*.png "${THEME_DIR}-xhdpi/xfwm4"
|
|
||||||
cp -r "${SRC_DIR}/main/xfwm4/themerc${ELSE_LIGHT:-}" "${THEME_DIR}-xhdpi/xfwm4/themerc"
|
cp -r "${SRC_DIR}/main/xfwm4/themerc${ELSE_LIGHT:-}" "${THEME_DIR}-xhdpi/xfwm4/themerc"
|
||||||
sed -i "s/button_offset=6/button_offset=12/" "${THEME_DIR}-xhdpi/xfwm4/themerc"
|
sed -i "s/button_offset=6/button_offset=12/" "${THEME_DIR}-xhdpi/xfwm4/themerc"
|
||||||
|
|
||||||
mkdir -p "${THEME_DIR}/plank"
|
mkdir -p "${THEME_DIR}/plank"
|
||||||
if [[ "$color" == '-Light' ]]; then
|
if [[ "$color" == '-Light' ]]; then
|
||||||
cp -r "${SRC_DIR}/main/plank/theme-Light${scheme}/"* "${THEME_DIR}/plank"
|
cp -r "${SRC_DIR}/main/plank/theme-Light${scheme}/"* "${THEME_DIR}/plank"
|
||||||
else
|
else
|
||||||
cp -r "${SRC_DIR}/main/plank/theme-Dark${scheme}/"* "${THEME_DIR}/plank"
|
cp -r "${SRC_DIR}/main/plank/theme-Dark${scheme}/"* "${THEME_DIR}/plank"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -634,6 +609,7 @@ install_theme() {
|
|||||||
for scheme in "${schemes[@]}"; do
|
for scheme in "${schemes[@]}"; do
|
||||||
install "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$scheme" "$window"
|
install "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$scheme" "$window"
|
||||||
make_gtkrc "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$scheme" "$window"
|
make_gtkrc "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$scheme" "$window"
|
||||||
|
make_assets "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$scheme" "$window"
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
@@ -1,69 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg width="46" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||||
<svg
|
<defs>
|
||||||
width="46"
|
<filter id="filter1830" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
|
||||||
height="24"
|
<feGaussianBlur stdDeviation="0.81"/>
|
||||||
version="1.1"
|
</filter>
|
||||||
id="svg1878"
|
</defs>
|
||||||
sodipodi:docname="toggle-off.svg"
|
<rect width="46" height="24" rx="12" ry="12" fill="#ffffff" opacity=".45"/>
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
<circle cx="12" cy="13" r="9" fill="#000000" filter="url(#filter1830)" opacity=".1"/>
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
<circle cx="12" cy="12.09" r="9" fill="#ffffff"/>
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs1882">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter1830"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur1832" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview1880"
|
|
||||||
pagecolor="#4d4d4d"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#6b6b6b"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="4.17193"
|
|
||||||
inkscape:cx="-13.662741"
|
|
||||||
inkscape:cy="-9.2283427"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg1878" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="0"
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
rx="12"
|
|
||||||
ry="12"
|
|
||||||
id="rect2"
|
|
||||||
style="opacity:0.45;fill:#ffffff" />
|
|
||||||
<circle
|
|
||||||
cx="12"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
id="circle1465"
|
|
||||||
style="opacity:0.1;fill:#000000;filter:url(#filter1830)" />
|
|
||||||
<circle
|
|
||||||
cx="12"
|
|
||||||
cy="12.089559"
|
|
||||||
r="9"
|
|
||||||
id="circle4"
|
|
||||||
style="fill:#ffffff" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 481 B |
@@ -1,73 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<svg width="46" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||||
<svg
|
<defs>
|
||||||
width="46"
|
<filter id="filter1830" x="-.108" y="-.108" width="1.216" height="1.216" color-interpolation-filters="sRGB">
|
||||||
height="24"
|
<feGaussianBlur stdDeviation="0.81"/>
|
||||||
version="1.1"
|
</filter>
|
||||||
id="svg1266"
|
</defs>
|
||||||
sodipodi:docname="toggle-off.svg"
|
<rect width="46" height="24" rx="12" ry="12" fill="#000000" opacity=".35"/>
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
<circle cx="12" cy="13" r="9" fill="#000000" filter="url(#filter1830)" opacity=".15"/>
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
<circle cx="12" cy="12.09" r="9" fill="#ffffff"/>
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs1270">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter1830"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur1832" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview1268"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="-29.722455"
|
|
||||||
inkscape:cy="-10.007359"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg1266">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid1463" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="0"
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
rx="12"
|
|
||||||
ry="12"
|
|
||||||
id="rect2"
|
|
||||||
style="fill:#000000;opacity:0.35" />
|
|
||||||
<circle
|
|
||||||
cx="12"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
id="circle1465"
|
|
||||||
style="fill:#000000;filter:url(#filter1830);opacity:0.15" />
|
|
||||||
<circle
|
|
||||||
cx="12"
|
|
||||||
cy="12.089559"
|
|
||||||
r="9"
|
|
||||||
id="circle4"
|
|
||||||
style="fill:#ffffff" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 482 B |
@@ -1,223 +0,0 @@
|
|||||||
#! /usr/bin/env bash
|
|
||||||
|
|
||||||
for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey'; do
|
|
||||||
for type in '' '-Nord' '-Dracula' '-Gruvbox' '-Everforest'; do
|
|
||||||
case "$theme" in
|
|
||||||
'')
|
|
||||||
theme_color_dark='#3c84f7'
|
|
||||||
theme_color_light='#5b9bf8'
|
|
||||||
;;
|
|
||||||
-Purple)
|
|
||||||
theme_color_dark='#AB47BC'
|
|
||||||
theme_color_light='#BA68C8'
|
|
||||||
;;
|
|
||||||
-Pink)
|
|
||||||
theme_color_dark='#EC407A'
|
|
||||||
theme_color_light='#F06292'
|
|
||||||
;;
|
|
||||||
-Red)
|
|
||||||
theme_color_dark='#E53935'
|
|
||||||
theme_color_light='#F44336'
|
|
||||||
;;
|
|
||||||
-Orange)
|
|
||||||
theme_color_dark='#F57C00'
|
|
||||||
theme_color_light='#FB8C00'
|
|
||||||
;;
|
|
||||||
-Yellow)
|
|
||||||
theme_color_dark='#FBC02D'
|
|
||||||
theme_color_light='#FFD600'
|
|
||||||
;;
|
|
||||||
-Green)
|
|
||||||
theme_color_dark='#4CAF50'
|
|
||||||
theme_color_light='#66BB6A'
|
|
||||||
;;
|
|
||||||
-Teal)
|
|
||||||
theme_color_dark='#009688'
|
|
||||||
theme_color_light='#4DB6AC'
|
|
||||||
;;
|
|
||||||
-Grey)
|
|
||||||
theme_color_dark='#464646'
|
|
||||||
theme_color_light='#DDDDDD'
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [[ "$type" == '-Nord' ]]; then
|
|
||||||
case "$theme" in
|
|
||||||
'')
|
|
||||||
theme_color_dark='#5e81ac'
|
|
||||||
theme_color_light='#89a3c2'
|
|
||||||
;;
|
|
||||||
-Purple)
|
|
||||||
theme_color_dark='#b57daa'
|
|
||||||
theme_color_light='#c89dbf'
|
|
||||||
;;
|
|
||||||
-Pink)
|
|
||||||
theme_color_dark='#cd7092'
|
|
||||||
theme_color_light='#dc98b1'
|
|
||||||
;;
|
|
||||||
-Red)
|
|
||||||
theme_color_dark='#c35b65'
|
|
||||||
theme_color_light='#d4878f'
|
|
||||||
;;
|
|
||||||
-Orange)
|
|
||||||
theme_color_dark='#d0846c'
|
|
||||||
theme_color_light='#dca493'
|
|
||||||
;;
|
|
||||||
-Yellow)
|
|
||||||
theme_color_dark='#e4b558'
|
|
||||||
theme_color_light='#eac985'
|
|
||||||
;;
|
|
||||||
-Green)
|
|
||||||
theme_color_dark='#82ac5d'
|
|
||||||
theme_color_light='#a0c082'
|
|
||||||
;;
|
|
||||||
-Teal)
|
|
||||||
theme_color_dark='#63a6a5'
|
|
||||||
theme_color_light='#83b9b8'
|
|
||||||
;;
|
|
||||||
-Grey)
|
|
||||||
theme_color_dark='#3a4150'
|
|
||||||
theme_color_light='#d9dce3'
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "$type" == '-Dracula' ]]; then
|
|
||||||
case "$theme" in
|
|
||||||
'')
|
|
||||||
theme_color_dark='#a679ec'
|
|
||||||
theme_color_light='#bd93f9'
|
|
||||||
;;
|
|
||||||
-Purple)
|
|
||||||
theme_color_dark='#a679ec'
|
|
||||||
theme_color_light='#bd93f9'
|
|
||||||
;;
|
|
||||||
-Pink)
|
|
||||||
theme_color_dark='#f04cab'
|
|
||||||
theme_color_light='#ff79c6'
|
|
||||||
;;
|
|
||||||
-Red)
|
|
||||||
theme_color_dark='#f44d4d'
|
|
||||||
theme_color_light='#ff5555'
|
|
||||||
;;
|
|
||||||
-Orange)
|
|
||||||
theme_color_dark='#f8a854'
|
|
||||||
theme_color_light='#ffb86c'
|
|
||||||
;;
|
|
||||||
-Yellow)
|
|
||||||
theme_color_dark='#e8f467'
|
|
||||||
theme_color_light='#f1fa8c'
|
|
||||||
;;
|
|
||||||
-Green)
|
|
||||||
theme_color_dark='#4be772'
|
|
||||||
theme_color_light='#50fa7b'
|
|
||||||
;;
|
|
||||||
-Teal)
|
|
||||||
theme_color_dark='#20eed9'
|
|
||||||
theme_color_light='#50fae9'
|
|
||||||
;;
|
|
||||||
-Grey)
|
|
||||||
theme_color_dark='#3c3f51'
|
|
||||||
theme_color_light='#d9dae3'
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "$type" == '-Gruvbox' ]]; then
|
|
||||||
case "$theme" in
|
|
||||||
'')
|
|
||||||
theme_color_dark='#458588'
|
|
||||||
theme_color_light='#83a598'
|
|
||||||
;;
|
|
||||||
-Purple)
|
|
||||||
theme_color_dark='#ab62b1'
|
|
||||||
theme_color_light='#d386cd'
|
|
||||||
;;
|
|
||||||
-Pink)
|
|
||||||
theme_color_dark='#b16286'
|
|
||||||
theme_color_light='#d3869b'
|
|
||||||
;;
|
|
||||||
-Red)
|
|
||||||
theme_color_dark='#cc241d'
|
|
||||||
theme_color_light='#fb4934'
|
|
||||||
;;
|
|
||||||
-Orange)
|
|
||||||
theme_color_dark='#d65d0e'
|
|
||||||
theme_color_light='#fe8019'
|
|
||||||
;;
|
|
||||||
-Yellow)
|
|
||||||
theme_color_dark='#d79921'
|
|
||||||
theme_color_light='#fabd2f'
|
|
||||||
;;
|
|
||||||
-Green)
|
|
||||||
theme_color_dark='#98971a'
|
|
||||||
theme_color_light='#b8bb26'
|
|
||||||
;;
|
|
||||||
-Teal)
|
|
||||||
theme_color_dark='#689d6a'
|
|
||||||
theme_color_light='#8ec07c'
|
|
||||||
;;
|
|
||||||
-Grey)
|
|
||||||
theme_color_dark='#3c3836'
|
|
||||||
theme_color_light='#a89984'
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if [[ "$type" == '-Everforest' ]]; then
|
|
||||||
case "$theme" in
|
|
||||||
'')
|
|
||||||
theme_color_dark='#458588'
|
|
||||||
theme_color_light='#83a598'
|
|
||||||
;;
|
|
||||||
-Purple)
|
|
||||||
theme_color_dark='#ab62b1'
|
|
||||||
theme_color_light='#d386cd'
|
|
||||||
;;
|
|
||||||
-Pink)
|
|
||||||
theme_color_dark='#b16286'
|
|
||||||
theme_color_light='#d3869b'
|
|
||||||
;;
|
|
||||||
-Red)
|
|
||||||
theme_color_dark='#cc241d'
|
|
||||||
theme_color_light='#fb4934'
|
|
||||||
;;
|
|
||||||
-Orange)
|
|
||||||
theme_color_dark='#d65d0e'
|
|
||||||
theme_color_light='#fe8019'
|
|
||||||
;;
|
|
||||||
-Yellow)
|
|
||||||
theme_color_dark='#d79921'
|
|
||||||
theme_color_light='#fabd2f'
|
|
||||||
;;
|
|
||||||
-Green)
|
|
||||||
theme_color_dark='#98971a'
|
|
||||||
theme_color_light='#b8bb26'
|
|
||||||
;;
|
|
||||||
-Teal)
|
|
||||||
theme_color_dark='#689d6a'
|
|
||||||
theme_color_light='#8ec07c'
|
|
||||||
;;
|
|
||||||
-Grey)
|
|
||||||
theme_color_dark='#3c3836'
|
|
||||||
theme_color_light='#a89984'
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "$type" != '' ]]; then
|
|
||||||
rm -rf "theme${theme}${type}"
|
|
||||||
cp -rf "theme" "theme${theme}${type}"
|
|
||||||
sed -i "s/#3c84f7/${theme_color_dark}/g" "theme${theme}${type}"/*.svg
|
|
||||||
sed -i "s/#5b9bf8/${theme_color_light}/g" "theme${theme}${type}"/*.svg
|
|
||||||
elif [[ "$theme" != '' ]]; then
|
|
||||||
rm -rf "theme${theme}"
|
|
||||||
cp -rf "theme" "theme${theme}"
|
|
||||||
sed -i "s/#3c84f7/${theme_color_dark}/g" "theme${theme}"/*.svg
|
|
||||||
sed -i "s/#5b9bf8/${theme_color_light}/g" "theme${theme}"/*.svg
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
done
|
|
||||||
|
|
||||||
echo -e "DONE!"
|
|
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#a679ec" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#bd93f9"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#a679ec"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#a679ec" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#bd93f9"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#a679ec"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#a679ec"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#bd93f9;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#a679ec"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#458588" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#83a598"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#458588"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#458588" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#83a598"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#458588"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#458588"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#83a598;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#458588"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#4be772" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#50fa7b"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#4be772"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#4be772" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#50fa7b"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#4be772"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#4be772"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#50fa7b;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#4be772"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#98971a" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#b8bb26"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#98971a"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#98971a" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#b8bb26"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#98971a"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#98971a"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#b8bb26;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#98971a"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#98971a" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#b8bb26"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#98971a"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#98971a" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#b8bb26"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#98971a"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#98971a"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#b8bb26;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#98971a"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#82ac5d" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#a0c082"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#82ac5d"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#82ac5d" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#a0c082"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#82ac5d"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#82ac5d"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#a0c082;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#82ac5d"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#4CAF50" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#66BB6A"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#4CAF50"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#4CAF50" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#66BB6A"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#4CAF50"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#4CAF50"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#66BB6A;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#4CAF50"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#3c3f51" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#d9dae3"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#3c3f51"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#3c3f51" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#d9dae3"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#3c3f51"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#3c3f51"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#d9dae3;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#3c3f51"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#3c3836" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#a89984"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#3c3836"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#3c3836" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#a89984"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#3c3836"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#3c3836"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#a89984;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#3c3836"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#3c3836" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#a89984"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#3c3836"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#3c3836" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#a89984"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#3c3836"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#3c3836"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#a89984;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#3c3836"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#3a4150" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#d9dce3"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#3a4150"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#3a4150" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#d9dce3"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#3a4150"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg160"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs164">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview162"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="8.34386"
|
|
||||||
inkscape:cx="21.093355"
|
|
||||||
inkscape:cy="12.164634"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg160" />
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#3a4150"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#d9dce3;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.15;fill:#000000;paint-order:stroke fill markers;filter:url(#filter898)"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="46"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter898"
|
|
||||||
x="-0.108"
|
|
||||||
y="-0.108"
|
|
||||||
width="1.216"
|
|
||||||
height="1.216">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.81"
|
|
||||||
id="feGaussianBlur900" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="18.38983"
|
|
||||||
inkscape:cy="-12.79661"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
x="0"
|
|
||||||
y="-0.019988"
|
|
||||||
width="46"
|
|
||||||
height="24.019987"
|
|
||||||
rx="12.009994"
|
|
||||||
ry="12.009994"
|
|
||||||
fill="#3a4150"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter898);opacity:0.15"
|
|
||||||
id="circle342" />
|
|
||||||
<circle
|
|
||||||
cx="34"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -852.36)" shape-rendering="auto">
|
|
||||||
<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="#464646" 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="#ffffff" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 797 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#DDDDDD"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2a10 10 0 0 0-10 10 10 10 0 0 0 10 10 10 10 0 0 0 10-10 10 10 0 0 0-10-10zm5.6289 5.9629v0.0019532c0.12781-4e-6 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-7.0723 7.0723c-0.02449 0.02449-0.050325 0.046133-0.078125 0.064453-0.02772 0.01839-0.055857 0.032682-0.085937 0.044922-0.03009 0.01224-0.06225 0.019271-0.09375 0.025391-0.03149 0.0061-0.063743 0.011718-0.095703 0.011718-0.03195 0-0.06226-0.005518-0.09375-0.011718-0.03149-0.0061-0.06367-0.013151-0.09375-0.025391-0.03009-0.01224-0.058188-0.026562-0.085938-0.044922-0.01389-0.0092-0.027866-0.02051-0.041015-0.03125-0.013121-0.01071-0.026823-0.022916-0.039063-0.035156l-4.1855-4.1875c-0.19587-0.19587-0.19587-0.51116 0-0.70703 0.19587-0.19587 0.51116-0.19587 0.70703 0l3.832 3.834 6.7188-6.7188c0.09793-0.09793 0.22571-0.14648 0.35352-0.14648z" fill="#464646"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 966 B |
@@ -1,5 +0,0 @@
|
|||||||
<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="#464646" opacity=".25"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 218 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#DDDDDD"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 8c1.1046 0 2 0.89543 2 2s-0.89543 2-2 2-2-0.89543-2-2 0.89543-2 2-2z" fill="#464646"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |