Compare commits
54 Commits
2023-08-12
...
2024-04-14
Author | SHA1 | Date | |
---|---|---|---|
|
2949b6a79e | ||
|
96f65423f4 | ||
|
bff2f811d8 | ||
|
d05011115c | ||
|
459bb7fb1d | ||
|
da69fb302e | ||
|
5691e51a71 | ||
|
0cac3bc156 | ||
|
06da74bbd6 | ||
|
714adbfbe4 | ||
|
6cf7ea0237 | ||
|
bb75a04f61 | ||
|
f87f4f3b84 | ||
|
100d4f1ffd | ||
|
8e4f478913 | ||
|
ecbe6bc283 | ||
|
13947b2ba1 | ||
|
a6e500a0ba | ||
|
46fa742384 | ||
|
86a0622b00 | ||
|
0c0261da30 | ||
|
c39f01542a | ||
|
7383146374 | ||
|
a100e9802e | ||
|
01b487e710 | ||
|
0f3ce76aa5 | ||
|
ebe90595bf | ||
|
c33eae0b81 | ||
|
29605eadf1 | ||
|
5cfc69130f | ||
|
43fb6009c1 | ||
|
8d72ba777d | ||
|
e8d1729b69 | ||
|
aec161ccc0 | ||
|
e4d177aaac | ||
|
7ffceeadbe | ||
|
d83c72d83b | ||
|
bfb6ce948e | ||
|
1f0de8ca0a | ||
|
0312215540 | ||
|
20bae3c82e | ||
|
9c8fc02cbe | ||
|
c220ed594e | ||
|
5da66ddeca | ||
|
b3bb0af34f | ||
|
282c0bc279 | ||
|
cac59182b7 | ||
|
d37ffdd097 | ||
|
b293fd941b | ||
|
fda95980dc | ||
|
41c89ec6d8 | ||
|
da7ce3629d | ||
|
5936e2f6be | ||
|
94ab4bc775 |
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"
|
||||||
|
}
|
92
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,6 +107,36 @@ make_gtkrc() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
if [[ "$scheme" == "-Everforest" ]]; then
|
||||||
|
case "$theme" in
|
||||||
|
'')
|
||||||
|
theme_color='#7fbbb3'
|
||||||
|
;;
|
||||||
|
-Purple)
|
||||||
|
theme_color='#cb8eab'
|
||||||
|
;;
|
||||||
|
-Pink)
|
||||||
|
theme_color='#b16286'
|
||||||
|
;;
|
||||||
|
-Red)
|
||||||
|
theme_color='#db7375'
|
||||||
|
;;
|
||||||
|
-Orange)
|
||||||
|
theme_color='#db8d6a'
|
||||||
|
;;
|
||||||
|
-Yellow)
|
||||||
|
theme_color='#d0b174'
|
||||||
|
;;
|
||||||
|
-Green)
|
||||||
|
theme_color='#9cb575'
|
||||||
|
;;
|
||||||
|
-Teal)
|
||||||
|
theme_color='#78b587'
|
||||||
|
;;
|
||||||
|
-Grey)
|
||||||
|
theme_color='#7A8478'
|
||||||
|
esac
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
case "$theme" in
|
case "$theme" in
|
||||||
'')
|
'')
|
||||||
@@ -138,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'
|
||||||
@@ -170,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'
|
||||||
@@ -201,10 +231,42 @@ make_gtkrc() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ "$scheme" == '-Everforest' ]]; then
|
||||||
|
case "$theme" in
|
||||||
|
'')
|
||||||
|
theme_color='#3A94c5'
|
||||||
|
;;
|
||||||
|
-Purple)
|
||||||
|
theme_color='#bd93f9'
|
||||||
|
;;
|
||||||
|
-Pink)
|
||||||
|
theme_color='#DF69ba'
|
||||||
|
;;
|
||||||
|
-Red)
|
||||||
|
theme_color='#f85552'
|
||||||
|
;;
|
||||||
|
-Orange)
|
||||||
|
theme_color='#F57D26'
|
||||||
|
;;
|
||||||
|
-Yellow)
|
||||||
|
theme_color='#DFA000'
|
||||||
|
;;
|
||||||
|
-Green)
|
||||||
|
theme_color='#8da101'
|
||||||
|
;;
|
||||||
|
-Teal)
|
||||||
|
theme_color='#35a77c'
|
||||||
|
;;
|
||||||
|
-Grey)
|
||||||
|
theme_color='#708089'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
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'
|
||||||
@@ -229,9 +291,17 @@ make_gtkrc() {
|
|||||||
titlebar_light='#f0f1f4'
|
titlebar_light='#f0f1f4'
|
||||||
titlebar_dark='#020203'
|
titlebar_dark='#020203'
|
||||||
;;
|
;;
|
||||||
|
-Everforest)
|
||||||
|
background_light='#fffbef'
|
||||||
|
background_dark='#1e2326'
|
||||||
|
background_darker='#232a2e'
|
||||||
|
background_alt='#293136'
|
||||||
|
titlebar_light='#f2efdf'
|
||||||
|
titlebar_dark='#020203'
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
else
|
else
|
||||||
case "$ctype" in
|
case "$scheme" in
|
||||||
'')
|
'')
|
||||||
background_light='#FFFFFF'
|
background_light='#FFFFFF'
|
||||||
background_dark='#2C2C2C'
|
background_dark='#2C2C2C'
|
||||||
@@ -256,6 +326,14 @@ make_gtkrc() {
|
|||||||
titlebar_light='#f0f1f4'
|
titlebar_light='#f0f1f4'
|
||||||
titlebar_dark='#1f2029'
|
titlebar_dark='#1f2029'
|
||||||
;;
|
;;
|
||||||
|
-Everforest)
|
||||||
|
background_light='#fffbef'
|
||||||
|
background_dark='#232A2E'
|
||||||
|
background_darker='#343F44'
|
||||||
|
background_alt='#3D484D'
|
||||||
|
background_light='#edeada'
|
||||||
|
background_dark='#1e2326'
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
59
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=
|
||||||
@@ -24,14 +25,16 @@ SASSC_OPT="-M -t expanded"
|
|||||||
|
|
||||||
THEME_NAME=Colloid
|
THEME_NAME=Colloid
|
||||||
THEME_VARIANTS=('' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey')
|
THEME_VARIANTS=('' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey')
|
||||||
SCHEME_VARIANTS=('' '-Nord' '-Dracula' '-Gruvbox')
|
SCHEME_VARIANTS=('' '-Nord' '-Dracula' '-Gruvbox' '-Everforest')
|
||||||
COLOR_VARIANTS=('' '-Light' '-Dark')
|
COLOR_VARIANTS=('' '-Light' '-Dark')
|
||||||
SIZE_VARIANTS=('' '-Compact')
|
SIZE_VARIANTS=('' '-Compact')
|
||||||
|
|
||||||
if [[ "$(command -v gnome-shell)" ]]; then
|
if [[ "$(command -v gnome-shell)" ]]; then
|
||||||
gnome-shell --version
|
gnome-shell --version
|
||||||
SHELL_VERSION="$(gnome-shell --version | cut -d ' ' -f 3 | cut -d . -f -1)"
|
SHELL_VERSION="$(gnome-shell --version | cut -d ' ' -f 3 | cut -d . -f -1)"
|
||||||
if [[ "${SHELL_VERSION:-}" -ge "44" ]]; then
|
if [[ "${SHELL_VERSION:-}" -ge "46" ]]; then
|
||||||
|
GS_VERSION="46-0"
|
||||||
|
elif [[ "${SHELL_VERSION:-}" -ge "44" ]]; then
|
||||||
GS_VERSION="44-0"
|
GS_VERSION="44-0"
|
||||||
elif [[ "${SHELL_VERSION:-}" -ge "42" ]]; then
|
elif [[ "${SHELL_VERSION:-}" -ge "42" ]]; then
|
||||||
GS_VERSION="42-0"
|
GS_VERSION="42-0"
|
||||||
@@ -40,9 +43,9 @@ if [[ "$(command -v gnome-shell)" ]]; then
|
|||||||
else
|
else
|
||||||
GS_VERSION="3-28"
|
GS_VERSION="3-28"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo "'gnome-shell' not found, using styles for last gnome-shell version available."
|
echo "'gnome-shell' not found, using styles for last gnome-shell version available."
|
||||||
GS_VERSION="44-0"
|
GS_VERSION="46-0"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
usage() {
|
usage() {
|
||||||
@@ -66,7 +69,7 @@ OPTIONS:
|
|||||||
-u, --uninstall Uninstall/Remove installed themes or links
|
-u, --uninstall Uninstall/Remove installed themes or links
|
||||||
|
|
||||||
--tweaks Specify versions for tweaks
|
--tweaks Specify versions for tweaks
|
||||||
1. [nord|dracula|gruvbox|all] Nord|Dracula|gruvbox|all ColorSchemes version
|
1. [nord|dracula|gruvbox|everforest|all] Nord|Dracula|gruvbox|everforet|all ColorSchemes version
|
||||||
2. black Blackness color version
|
2. black Blackness color version
|
||||||
3. rimless Remove the 1px border about windows and menus
|
3. rimless Remove the 1px border about windows and menus
|
||||||
4. normal Normal windows button style like gnome default theme (titlebuttons: max/min/close)
|
4. normal Normal windows button style like gnome default theme (titlebuttons: max/min/close)
|
||||||
@@ -115,57 +118,31 @@ 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 -s assets/no-events.svg no-events.svg
|
|
||||||
ln -s assets/process-working.svg process-working.svg
|
|
||||||
ln -s 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"
|
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
|
||||||
cp -r "${SRC_DIR}/assets/metacity-1/thumbnail${ELSE_DARK:-}.png" "${THEME_DIR}/metacity-1/thumbnail.png"
|
|
||||||
cd "${THEME_DIR}/metacity-1" && ln -s metacity-theme-3.xml metacity-theme-1.xml && ln -s 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"
|
||||||
|
|
||||||
@@ -337,6 +314,12 @@ while [[ $# -gt 0 ]]; do
|
|||||||
echo -e "Gruvbox ColorScheme version! ..."
|
echo -e "Gruvbox ColorScheme version! ..."
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
everforest)
|
||||||
|
colorscheme='true'
|
||||||
|
schemes+=("${SCHEME_VARIANTS[4]}")
|
||||||
|
echo -e "Everforest ColorScheme version! ..."
|
||||||
|
shift
|
||||||
|
;;
|
||||||
all)
|
all)
|
||||||
colorscheme='true'
|
colorscheme='true'
|
||||||
schemes+=("${SCHEME_VARIANTS[@]}")
|
schemes+=("${SCHEME_VARIANTS[@]}")
|
||||||
@@ -413,7 +396,7 @@ function has_command() {
|
|||||||
|
|
||||||
# Install needed packages
|
# Install needed packages
|
||||||
install_package() {
|
install_package() {
|
||||||
if [ ! "$(which sassc 2> /dev/null)" ]; then
|
if ! has_command sassc; then
|
||||||
echo sassc needs to be installed to generate the css.
|
echo sassc needs to be installed to generate the css.
|
||||||
if has_command zypper; then
|
if has_command zypper; then
|
||||||
sudo zypper in sassc
|
sudo zypper in sassc
|
||||||
@@ -449,6 +432,9 @@ color_schemes() {
|
|||||||
-Gruvbox)
|
-Gruvbox)
|
||||||
scheme_color='gruvbox'
|
scheme_color='gruvbox'
|
||||||
;;
|
;;
|
||||||
|
-Everforest)
|
||||||
|
scheme_color='everforest'
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
sed -i "/\@import/s/color-palette-default/color-palette-${scheme_color}/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
sed -i "/\@import/s/color-palette-default/color-palette-${scheme_color}/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||||
sed -i "/\$colorscheme:/s/default/${scheme_color}/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
sed -i "/\$colorscheme:/s/default/${scheme_color}/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||||
@@ -606,7 +592,7 @@ clean_theme() {
|
|||||||
for theme in '' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-teal' '-grey'; do
|
for theme in '' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-teal' '-grey'; do
|
||||||
for color in '' '-light' '-dark'; do
|
for color in '' '-light' '-dark'; do
|
||||||
for size in '' '-compact'; do
|
for size in '' '-compact'; do
|
||||||
for scheme in '' '-nord' '-dracula' '-gruvbox'; do
|
for scheme in '' '-nord' '-dracula' '-gruvbox' '-everforest'; do
|
||||||
for screen in '' '-hdpi' '-xhdpi'; do
|
for screen in '' '-hdpi' '-xhdpi'; do
|
||||||
clean "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${theme}" "${color}" "${size}" "${scheme}" "${screen}"
|
clean "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${theme}" "${color}" "${size}" "${scheme}" "${screen}"
|
||||||
done
|
done
|
||||||
@@ -623,12 +609,13 @@ 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
|
||||||
done
|
done
|
||||||
|
|
||||||
if (which xfce4-popup-whiskermenu 2> /dev/null); then
|
if (command -v xfce4-popup-whiskermenu &> /dev/null) && $(sed -i "s|.*menu-opacity=.*|menu-opacity=95|" "$HOME/.config/xfce4/panel/whiskermenu"*".rc" &> /dev/null); then
|
||||||
sed -i "s|.*menu-opacity=.*|menu-opacity=95|" "$HOME/.config/xfce4/panel/whiskermenu"*".rc"
|
sed -i "s|.*menu-opacity=.*|menu-opacity=95|" "$HOME/.config/xfce4/panel/whiskermenu"*".rc"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -671,7 +658,7 @@ if [[ "$uninstall" == 'true' ]]; then
|
|||||||
echo && uninstall_theme && uninstall_link
|
echo && uninstall_theme && uninstall_link
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
clean_theme && install_package && tweaks_temp && gnome_shell_version && install_theme
|
install_package && tweaks_temp && gnome_shell_version && install_theme
|
||||||
if [[ "$libadwaita" == 'true' ]]; then
|
if [[ "$libadwaita" == 'true' ]]; then
|
||||||
uninstall_link && link_theme
|
uninstall_link && link_theme
|
||||||
fi
|
fi
|
||||||
|
@@ -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"
|
|
||||||
id="svg1878"
|
|
||||||
sodipodi:docname="toggle-off.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="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>
|
</filter>
|
||||||
</defs>
|
</defs>
|
||||||
<sodipodi:namedview
|
<rect width="46" height="24" rx="12" ry="12" fill="#ffffff" opacity=".45"/>
|
||||||
id="namedview1880"
|
<circle cx="12" cy="13" r="9" fill="#000000" filter="url(#filter1830)" opacity=".1"/>
|
||||||
pagecolor="#4d4d4d"
|
<circle cx="12" cy="12.09" r="9" fill="#ffffff"/>
|
||||||
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"
|
|
||||||
id="svg1266"
|
|
||||||
sodipodi:docname="toggle-off.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="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>
|
</filter>
|
||||||
</defs>
|
</defs>
|
||||||
<sodipodi:namedview
|
<rect width="46" height="24" rx="12" ry="12" fill="#000000" opacity=".35"/>
|
||||||
id="namedview1268"
|
<circle cx="12" cy="13" r="9" fill="#000000" filter="url(#filter1830)" opacity=".15"/>
|
||||||
pagecolor="#ffffff"
|
<circle cx="12" cy="12.09" r="9" fill="#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,181 +0,0 @@
|
|||||||
#! /usr/bin/env bash
|
|
||||||
|
|
||||||
for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey'; do
|
|
||||||
for type in '' '-Nord' '-Dracula' '-Gruvbox'; 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" != '' ]]; 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="#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="#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="#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 |
@@ -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="#464646"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#DDDDDD;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="#464646"
|
|
||||||
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="#5e81ac" 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="#89a3c2"/>
|
|
||||||
</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="#5e81ac"/>
|
|
||||||
</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="#5e81ac" 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="#89a3c2"/>
|
|
||||||
</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="#5e81ac"/>
|
|
||||||
</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="#5e81ac"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#89a3c2;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="#5e81ac"
|
|
||||||
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="#f8a854" 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="#ffb86c"/>
|
|
||||||
</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="#f8a854"/>
|
|
||||||
</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="#f8a854" 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="#ffb86c"/>
|
|
||||||
</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="#f8a854"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 275 B |