Compare commits
59 Commits
2022.11.11
...
2023.04.11
Author | SHA1 | Date | |
---|---|---|---|
|
149d13f7c0 | ||
|
2f85517351 | ||
|
26327669b0 | ||
|
9e3d605e32 | ||
|
9bc382b7c1 | ||
|
51033abc94 | ||
|
6ddd8e1932 | ||
|
6cba9239b8 | ||
|
e4f9bd9432 | ||
|
b0472a558b | ||
|
037a9e066c | ||
|
2050abd4d6 | ||
|
51f72d5066 | ||
|
0cf67fcedc | ||
|
a27accd9c2 | ||
|
d7e57df999 | ||
|
b7f66f2519 | ||
|
0640d55f80 | ||
|
a768ebe33d | ||
|
6fb5bf53ee | ||
|
e72d6079ff | ||
|
8e493d78a5 | ||
|
562bf6b36e | ||
|
358a394582 | ||
|
f4dcfdac62 | ||
|
104d22cdb5 | ||
|
05f52b3c64 | ||
|
c46fec61af | ||
|
eceba96893 | ||
|
0714ed18d3 | ||
|
f060f60c4e | ||
|
5325f781f0 | ||
|
c3a387904f | ||
|
fe57d504be | ||
|
d81f47764b | ||
|
3b8544fce8 | ||
|
d8f0fbe207 | ||
|
a4da723119 | ||
|
9042de7d9a | ||
|
13a36f30a5 | ||
|
850d127f15 | ||
|
9ac22d7610 | ||
|
510e049826 | ||
|
e28972bd42 | ||
|
24f31087f8 | ||
|
f6898c0771 | ||
|
0c328e2b0b | ||
|
daec2a91cd | ||
|
75e31dc9d8 | ||
|
503e201216 | ||
|
257ccd4549 | ||
|
eda2902d2a | ||
|
ac72420d95 | ||
|
5b08fdbf1c | ||
|
d970852af7 | ||
|
34cfc98fa9 | ||
|
bba2e11c18 | ||
|
0b92d2d0b0 | ||
|
e4b11c3fe7 |
17
README.md
@@ -15,6 +15,12 @@
|
||||
|
||||
- `Icon theme` [Colloid](https://github.com/vinceliuice/Colloid-icon-theme)
|
||||
|
||||
## Donate
|
||||
|
||||
If you like my project, you can buy me a coffee:
|
||||
|
||||
<span class="paypal"><a href="https://www.paypal.me/vinceliuice" title="Donate to this project using Paypal"><img src="https://www.paypalobjects.com/webstatic/mktg/Logo/pp-logo-100px.png" alt="PayPal donate button" /></a></span>
|
||||
|
||||
## Installation
|
||||
|
||||
### Manual Installation
|
||||
@@ -39,12 +45,11 @@ Run the following commands in the terminal:
|
||||
-r, --remove,
|
||||
-u, --uninstall Uninstall/Remove installed themes or links
|
||||
|
||||
--tweaks Specify versions for tweaks [nord|dracula|black|rimless|normal] (only nord and dracula can not mix use with!)
|
||||
1. nord: Nord ColorScheme version
|
||||
2. dracula Dracula ColorScheme version
|
||||
3. black: Blackness color version
|
||||
4. rimless: Remove the 1px border about windows and menus
|
||||
5. normal: Normal windows button style (titlebuttons: max/min/close)
|
||||
--tweaks Specify versions for tweaks
|
||||
1. [nord|dracula|gruvbox]: Nord|Dracula|gruvbox ColorSchemes version
|
||||
2. black: Blackness color version
|
||||
3. rimless: Remove the 1px border about windows and menus
|
||||
4. normal: Normal windows button style (titlebuttons: max/min/close)
|
||||
-h, --help Show help
|
||||
```
|
||||
|
||||
|
76
install.sh
@@ -30,7 +30,9 @@ SIZE_VARIANTS=('' '-Compact')
|
||||
if [[ "$(command -v gnome-shell)" ]]; then
|
||||
gnome-shell --version
|
||||
SHELL_VERSION="$(gnome-shell --version | cut -d ' ' -f 3 | cut -d . -f -1)"
|
||||
if [[ "${SHELL_VERSION:-}" -ge "42" ]]; then
|
||||
if [[ "${SHELL_VERSION:-}" -ge "44" ]]; then
|
||||
GS_VERSION="44-0"
|
||||
elif [[ "${SHELL_VERSION:-}" -ge "42" ]]; then
|
||||
GS_VERSION="42-0"
|
||||
elif [[ "${SHELL_VERSION:-}" -ge "40" ]]; then
|
||||
GS_VERSION="40-0"
|
||||
@@ -39,7 +41,7 @@ if [[ "$(command -v gnome-shell)" ]]; then
|
||||
fi
|
||||
else
|
||||
echo "'gnome-shell' not found, using styles for last gnome-shell version available."
|
||||
GS_VERSION="42-0"
|
||||
GS_VERSION="44-0"
|
||||
fi
|
||||
|
||||
usage() {
|
||||
@@ -62,12 +64,11 @@ OPTIONS:
|
||||
-r, --remove,
|
||||
-u, --uninstall Uninstall/Remove installed themes or links
|
||||
|
||||
--tweaks Specify versions for tweaks [nord|dracula|black|rimless|normal] (only nord and dracula can not mix use with!)
|
||||
1. nord: Nord ColorScheme version
|
||||
2. dracula Dracula ColorScheme version
|
||||
3. black: Blackness color version
|
||||
4. rimless: Remove the 1px border about windows and menus
|
||||
5. normal: Normal windows button style (titlebuttons: max/min/close)
|
||||
--tweaks Specify versions for tweaks
|
||||
1. [nord|dracula|gruvbox]: Nord|Dracula|gruvbox ColorSchemes version
|
||||
2. black: Blackness color version
|
||||
3. rimless: Remove the 1px border about windows and menus
|
||||
4. normal: Normal windows button style (titlebuttons: max/min/close)
|
||||
|
||||
-h, --help Show help
|
||||
EOF
|
||||
@@ -327,6 +328,12 @@ while [[ $# -gt 0 ]]; do
|
||||
echo -e "Dracula ColorScheme version! ..."
|
||||
shift
|
||||
;;
|
||||
gruvbox)
|
||||
gruvbox="true"
|
||||
ctype="-Gruvbox"
|
||||
echo -e "Gruvbox ColorScheme version! ..."
|
||||
shift
|
||||
;;
|
||||
black)
|
||||
blackness="true"
|
||||
echo -e "Blackness version! ..."
|
||||
@@ -406,42 +413,47 @@ install_package() {
|
||||
}
|
||||
|
||||
tweaks_temp() {
|
||||
cp -rf ${SRC_DIR}/sass/_tweaks.scss ${SRC_DIR}/sass/_tweaks-temp.scss
|
||||
cp -rf "${SRC_DIR}/sass/_tweaks.scss" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
}
|
||||
|
||||
compact_size() {
|
||||
sed -i "/\$compact:/s/false/true/" ${SRC_DIR}/sass/_tweaks-temp.scss
|
||||
sed -i "/\$compact:/s/false/true/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
}
|
||||
|
||||
nord_color() {
|
||||
sed -i "/\@import/s/color-palette-default/color-palette-nord/" ${SRC_DIR}/sass/_tweaks-temp.scss
|
||||
sed -i "/\$colorscheme:/s/default/nord/" ${SRC_DIR}/sass/_tweaks-temp.scss
|
||||
sed -i "/\@import/s/color-palette-default/color-palette-nord/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
sed -i "/\$colorscheme:/s/default/nord/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
}
|
||||
|
||||
dracula_color() {
|
||||
sed -i "/\@import/s/color-palette-default/color-palette-dracula/" ${SRC_DIR}/sass/_tweaks-temp.scss
|
||||
sed -i "/\$colorscheme:/s/default/dracula/" ${SRC_DIR}/sass/_tweaks-temp.scss
|
||||
sed -i "/\@import/s/color-palette-default/color-palette-dracula/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
sed -i "/\$colorscheme:/s/default/dracula/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
}
|
||||
|
||||
gruvbox_color() {
|
||||
sed -i "/\@import/s/color-palette-default/color-palette-gruvbox/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
sed -i "/\$colorscheme:/s/default/gruvbox/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
}
|
||||
|
||||
blackness_color() {
|
||||
sed -i "/\$blackness:/s/false/true/" ${SRC_DIR}/sass/_tweaks-temp.scss
|
||||
sed -i "/\$blackness:/s/false/true/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
}
|
||||
|
||||
border_rimless() {
|
||||
sed -i "/\$rimless:/s/false/true/" ${SRC_DIR}/sass/_tweaks-temp.scss
|
||||
sed -i "/\$rimless:/s/false/true/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
}
|
||||
|
||||
normal_winbutton() {
|
||||
sed -i "/\$window_button:/s/mac/normal/" ${SRC_DIR}/sass/_tweaks-temp.scss
|
||||
sed -i "/\$window_button:/s/mac/normal/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
}
|
||||
|
||||
gnome_shell_version() {
|
||||
cp -rf ${SRC_DIR}/sass/gnome-shell/_common.scss ${SRC_DIR}/sass/gnome-shell/_common-temp.scss
|
||||
cp -rf "${SRC_DIR}/sass/gnome-shell/_common.scss" "${SRC_DIR}/sass/gnome-shell/_common-temp.scss"
|
||||
|
||||
sed -i "/\widgets/s/40-0/${GS_VERSION}/" ${SRC_DIR}/sass/gnome-shell/_common-temp.scss
|
||||
sed -i "/\widgets/s/40-0/${GS_VERSION}/" "${SRC_DIR}/sass/gnome-shell/_common-temp.scss"
|
||||
|
||||
if [[ "${GS_VERSION}" == '3-28' ]]; then
|
||||
sed -i "/\extensions/s/40-0/${GS_VERSION}/" ${SRC_DIR}/sass/gnome-shell/_common-temp.scss
|
||||
sed -i "/\extensions/s/40-0/${GS_VERSION}/" "${SRC_DIR}/sass/gnome-shell/_common-temp.scss"
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -474,7 +486,7 @@ theme_color() {
|
||||
;;
|
||||
esac
|
||||
tweaks_temp
|
||||
sed -i "/\$theme:/s/default/${theme_color}/" ${SRC_DIR}/sass/_tweaks-temp.scss
|
||||
sed -i "/\$theme:/s/default/${theme_color}/" "${SRC_DIR}/sass/_tweaks-temp.scss"
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -495,6 +507,10 @@ theme_tweaks() {
|
||||
dracula_color
|
||||
fi
|
||||
|
||||
if [[ "$gruvbox" = "true" ]] ; then
|
||||
gruvbox_color
|
||||
fi
|
||||
|
||||
if [[ "$blackness" = "true" ]] ; then
|
||||
blackness_color
|
||||
fi
|
||||
@@ -536,7 +552,7 @@ link_theme() {
|
||||
for theme in "${themes[@]}"; do
|
||||
for color in "${lcolors[@]}"; do
|
||||
for size in "${sizes[@]}"; do
|
||||
link_libadwaita "${dest:-$DEST_DIR}" "${_name:-$THEME_NAME}" "$theme" "$color" "$size" "$ctype"
|
||||
link_libadwaita "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$ctype"
|
||||
done
|
||||
done
|
||||
done
|
||||
@@ -565,7 +581,7 @@ clean_theme() {
|
||||
for theme in '' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-teal' '-grey'; do
|
||||
for color in '' '-light' '-dark'; do
|
||||
for size in '' '-compact'; do
|
||||
for type in '' '-nord' '-dracula'; do
|
||||
for type in '' '-nord' '-dracula' '-gruvbox'; do
|
||||
for screen in '' '-hdpi' '-xhdpi'; do
|
||||
clean "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${theme}" "${color}" "${size}" "${type}" "${screen}"
|
||||
done
|
||||
@@ -579,14 +595,18 @@ install_theme() {
|
||||
for theme in "${themes[@]}"; do
|
||||
for color in "${colors[@]}"; do
|
||||
for size in "${sizes[@]}"; do
|
||||
install "${dest:-$DEST_DIR}" "${_name:-$THEME_NAME}" "$theme" "$color" "$size" "$ctype" "$window"
|
||||
make_gtkrc "${dest:-$DEST_DIR}" "${_name:-$THEME_NAME}" "$theme" "$color" "$size" "$ctype" "$window"
|
||||
install "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$ctype" "$window"
|
||||
make_gtkrc "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$ctype" "$window"
|
||||
done
|
||||
done
|
||||
done
|
||||
|
||||
if [[ "$DESKTOP_SESSION" == 'xfce' ]]; then
|
||||
sed -i "s|.*menu-opacity=.*|menu-opacity=95|" "$HOME/.config/xfce4/panel/whiskermenu"*".rc"
|
||||
if has_command xfce4-popup-whiskermen; then
|
||||
sed -i "s|.*menu-opacity=.*|menu-opacity=0|" "$HOME/.config/xfce4/panel/whiskermenu"*".rc"
|
||||
fi
|
||||
|
||||
if (pgrep xfce4-session &> /dev/null); then
|
||||
xfce4-panel -r
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -610,7 +630,7 @@ uninstall_theme() {
|
||||
for theme in "${themes[@]}"; do
|
||||
for color in "${colors[@]}"; do
|
||||
for size in "${sizes[@]}"; do
|
||||
uninstall "${dest:-$DEST_DIR}" "${_name:-$THEME_NAME}" "$theme" "$color" "$size" "$ctype"
|
||||
uninstall "${dest:-$DEST_DIR}" "${name:-$THEME_NAME}" "$theme" "$color" "$size" "$ctype"
|
||||
done
|
||||
done
|
||||
done
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#! /usr/bin/env bash
|
||||
|
||||
for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey'; do
|
||||
for type in '' '-Nord' '-Dracula'; do
|
||||
for type in '' '-Nord' '-Dracula' '-Gruvbox'; do
|
||||
case "$theme" in
|
||||
'')
|
||||
theme_color_dark='#3c84f7'
|
||||
@@ -123,6 +123,47 @@ for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-
|
||||
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}"
|
||||
|
@@ -0,0 +1,6 @@
|
||||
<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>
|
After Width: | Height: | Size: 797 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 966 B |
3
src/assets/cinnamon/theme-Green-Gruvbox/checkbox.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 966 B |
@@ -0,0 +1,5 @@
|
||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -948.36)">
|
||||
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#98971a" opacity=".25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 218 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 275 B |
3
src/assets/cinnamon/theme-Green-Gruvbox/radiobutton.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 275 B |
75
src/assets/cinnamon/theme-Green-Gruvbox/toggle-on-dark.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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>
|
After Width: | Height: | Size: 1.9 KiB |
81
src/assets/cinnamon/theme-Green-Gruvbox/toggle-on.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,6 @@
|
||||
<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>
|
After Width: | Height: | Size: 797 B |
3
src/assets/cinnamon/theme-Grey-Gruvbox/checkbox-dark.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 966 B |
3
src/assets/cinnamon/theme-Grey-Gruvbox/checkbox.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 966 B |
5
src/assets/cinnamon/theme-Grey-Gruvbox/corner-ripple.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -948.36)">
|
||||
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#3c3836" opacity=".25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 218 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 275 B |
3
src/assets/cinnamon/theme-Grey-Gruvbox/radiobutton.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 275 B |
75
src/assets/cinnamon/theme-Grey-Gruvbox/toggle-on-dark.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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>
|
After Width: | Height: | Size: 1.9 KiB |
81
src/assets/cinnamon/theme-Grey-Gruvbox/toggle-on.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,6 @@
|
||||
<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>
|
After Width: | Height: | Size: 797 B |
3
src/assets/cinnamon/theme-Gruvbox/checkbox-dark.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 966 B |
3
src/assets/cinnamon/theme-Gruvbox/checkbox.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 966 B |
5
src/assets/cinnamon/theme-Gruvbox/corner-ripple.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -948.36)">
|
||||
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#458588" opacity=".25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 218 B |
3
src/assets/cinnamon/theme-Gruvbox/radiobutton-dark.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 275 B |
3
src/assets/cinnamon/theme-Gruvbox/radiobutton.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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>
|
After Width: | Height: | Size: 275 B |
75
src/assets/cinnamon/theme-Gruvbox/toggle-on-dark.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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>
|
After Width: | Height: | Size: 1.9 KiB |
81
src/assets/cinnamon/theme-Gruvbox/toggle-on.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,6 @@
|
||||
<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="#d65d0e" 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>
|
After Width: | Height: | Size: 797 B |
@@ -0,0 +1,3 @@
|
||||
<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="#fe8019"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
3
src/assets/cinnamon/theme-Orange-Gruvbox/checkbox.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#d65d0e"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
@@ -0,0 +1,5 @@
|
||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -948.36)">
|
||||
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#d65d0e" opacity=".25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 218 B |
@@ -0,0 +1,3 @@
|
||||
<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="#fe8019"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
3
src/assets/cinnamon/theme-Orange-Gruvbox/radiobutton.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#d65d0e"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
75
src/assets/cinnamon/theme-Orange-Gruvbox/toggle-on-dark.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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="#d65d0e"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#fe8019;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>
|
After Width: | Height: | Size: 1.9 KiB |
81
src/assets/cinnamon/theme-Orange-Gruvbox/toggle-on.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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="#d65d0e"
|
||||
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>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,6 @@
|
||||
<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="#b16286" 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>
|
After Width: | Height: | Size: 797 B |
3
src/assets/cinnamon/theme-Pink-Gruvbox/checkbox-dark.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#d3869b"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
3
src/assets/cinnamon/theme-Pink-Gruvbox/checkbox.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#b16286"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
5
src/assets/cinnamon/theme-Pink-Gruvbox/corner-ripple.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -948.36)">
|
||||
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#b16286" opacity=".25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 218 B |
@@ -0,0 +1,3 @@
|
||||
<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="#d3869b"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
3
src/assets/cinnamon/theme-Pink-Gruvbox/radiobutton.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#b16286"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
75
src/assets/cinnamon/theme-Pink-Gruvbox/toggle-on-dark.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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="#b16286"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#d3869b;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>
|
After Width: | Height: | Size: 1.9 KiB |
81
src/assets/cinnamon/theme-Pink-Gruvbox/toggle-on.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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="#b16286"
|
||||
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>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,6 @@
|
||||
<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="#ab62b1" 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>
|
After Width: | Height: | Size: 797 B |
@@ -0,0 +1,3 @@
|
||||
<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="#d386cd"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
3
src/assets/cinnamon/theme-Purple-Gruvbox/checkbox.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#ab62b1"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
@@ -0,0 +1,5 @@
|
||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -948.36)">
|
||||
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#ab62b1" opacity=".25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 218 B |
@@ -0,0 +1,3 @@
|
||||
<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="#d386cd"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
3
src/assets/cinnamon/theme-Purple-Gruvbox/radiobutton.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#ab62b1"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
75
src/assets/cinnamon/theme-Purple-Gruvbox/toggle-on-dark.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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="#ab62b1"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#d386cd;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>
|
After Width: | Height: | Size: 1.9 KiB |
81
src/assets/cinnamon/theme-Purple-Gruvbox/toggle-on.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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="#ab62b1"
|
||||
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>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,6 @@
|
||||
<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="#cc241d" 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>
|
After Width: | Height: | Size: 797 B |
3
src/assets/cinnamon/theme-Red-Gruvbox/checkbox-dark.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#fb4934"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
3
src/assets/cinnamon/theme-Red-Gruvbox/checkbox.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#cc241d"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
5
src/assets/cinnamon/theme-Red-Gruvbox/corner-ripple.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -948.36)">
|
||||
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#cc241d" opacity=".25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 218 B |
@@ -0,0 +1,3 @@
|
||||
<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="#fb4934"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
3
src/assets/cinnamon/theme-Red-Gruvbox/radiobutton.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#cc241d"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
75
src/assets/cinnamon/theme-Red-Gruvbox/toggle-on-dark.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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="#cc241d"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#fb4934;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>
|
After Width: | Height: | Size: 1.9 KiB |
81
src/assets/cinnamon/theme-Red-Gruvbox/toggle-on.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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="#cc241d"
|
||||
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>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,6 @@
|
||||
<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="#689d6a" 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>
|
After Width: | Height: | Size: 797 B |
3
src/assets/cinnamon/theme-Teal-Gruvbox/checkbox-dark.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#8ec07c"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
3
src/assets/cinnamon/theme-Teal-Gruvbox/checkbox.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#689d6a"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
5
src/assets/cinnamon/theme-Teal-Gruvbox/corner-ripple.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -948.36)">
|
||||
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#689d6a" opacity=".25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 218 B |
@@ -0,0 +1,3 @@
|
||||
<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="#8ec07c"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
3
src/assets/cinnamon/theme-Teal-Gruvbox/radiobutton.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#689d6a"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
75
src/assets/cinnamon/theme-Teal-Gruvbox/toggle-on-dark.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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="#689d6a"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#8ec07c;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>
|
After Width: | Height: | Size: 1.9 KiB |
81
src/assets/cinnamon/theme-Teal-Gruvbox/toggle-on.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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="#689d6a"
|
||||
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>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,6 @@
|
||||
<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="#d79921" 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>
|
After Width: | Height: | Size: 797 B |
@@ -0,0 +1,3 @@
|
||||
<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="#fabd2f"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
3
src/assets/cinnamon/theme-Yellow-Gruvbox/checkbox.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#d79921"/>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
@@ -0,0 +1,5 @@
|
||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0 -948.36)">
|
||||
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#d79921" opacity=".25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 218 B |
@@ -0,0 +1,3 @@
|
||||
<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="#fabd2f"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
3
src/assets/cinnamon/theme-Yellow-Gruvbox/radiobutton.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<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="#d79921"/>
|
||||
</svg>
|
After Width: | Height: | Size: 275 B |
75
src/assets/cinnamon/theme-Yellow-Gruvbox/toggle-on-dark.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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="#d79921"
|
||||
stroke-width="0"
|
||||
style="paint-order:stroke fill markers;fill:#fabd2f;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>
|
After Width: | Height: | Size: 1.9 KiB |
81
src/assets/cinnamon/theme-Yellow-Gruvbox/toggle-on.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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="#d79921"
|
||||
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>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -1,7 +1,7 @@
|
||||
#! /usr/bin/env bash
|
||||
|
||||
for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey'; do
|
||||
for type in '' '-Nord' '-Dracula'; do
|
||||
for type in '' '-Nord' '-Dracula' '-Gruvbox'; do
|
||||
case "$theme" in
|
||||
'')
|
||||
theme_color_dark='#3c84f7'
|
||||
@@ -44,6 +44,7 @@ for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-
|
||||
if [[ "$type" == '-Nord' ]]; then
|
||||
panel_light='#f0f1f4'
|
||||
panel_dark='#1c1f26'
|
||||
|
||||
case "$theme" in
|
||||
'')
|
||||
theme_color_dark='#5e81ac'
|
||||
@@ -87,6 +88,7 @@ for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-
|
||||
if [[ "$type" == '-Dracula' ]]; then
|
||||
panel_light='#f0f1f4'
|
||||
panel_dark='#1c1e26'
|
||||
|
||||
case "$theme" in
|
||||
'')
|
||||
theme_color_dark='#a679ec'
|
||||
@@ -127,6 +129,50 @@ for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-
|
||||
esac
|
||||
fi
|
||||
|
||||
if [[ "$type" == '-Gruvbox' ]]; then
|
||||
panel_light='#fbf1c7'
|
||||
panel_dark='#282524'
|
||||
|
||||
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 "thumbnail${theme}${type}.svg"
|
||||
cp -rf "thumbnail.svg" "thumbnail${theme}${type}.svg"
|
||||
@@ -134,13 +180,11 @@ for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-
|
||||
sed -i "s/#5b9bf8/${theme_color_light}/g" "thumbnail${theme}${type}.svg"
|
||||
sed -i "s/#f2f2f2/${panel_light}/g" "thumbnail${theme}${type}.svg"
|
||||
sed -i "s/#212121/${panel_dark}/g" "thumbnail${theme}${type}.svg"
|
||||
sed -i "s/thumbnail/thumbnail${theme}${type}/g" "thumbnail${theme}${type}.svg"
|
||||
elif [[ "$theme" != '' ]]; then
|
||||
rm -rf "thumbnail${theme}.svg"
|
||||
cp -rf "thumbnail.svg" "thumbnail${theme}.svg"
|
||||
sed -i "s/#3c84f7/${theme_color_dark}/g" "thumbnail${theme}.svg"
|
||||
sed -i "s/#5b9bf8/${theme_color_light}/g" "thumbnail${theme}.svg"
|
||||
sed -i "s/thumbnail/thumbnail${theme}/g" "thumbnail${theme}.svg"
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
@@ -6,23 +6,23 @@ OPTIPNG="/usr/bin/optipng"
|
||||
./make-thumbnails.sh
|
||||
|
||||
for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey'; do
|
||||
for type in '' '-Nord' '-Dracula'; do
|
||||
for type in '' '-Nord' '-Dracula' '-Gruvbox'; do
|
||||
SRC_FILE="thumbnail${theme}${type}.svg"
|
||||
for color in '' '-Light' '-Dark'; do
|
||||
echo
|
||||
echo Rendering thumbnail${theme}${type}${color}.png
|
||||
$INKSCAPE --export-id=thumbnail${theme}${type}${color} \
|
||||
echo -e "Rendering thumbnail${theme}${type}${color}.png"
|
||||
"$INKSCAPE" --export-id=thumbnail"${color}" \
|
||||
--export-id-only \
|
||||
--export-dpi=96 \
|
||||
--export-filename=thumbnail${theme}${type}${color}.png $SRC_FILE >/dev/null \
|
||||
&& $OPTIPNG -o7 --quiet thumbnail${theme}${type}.png
|
||||
--export-filename=thumbnail"${theme}${type}${color}".png "$SRC_FILE" >/dev/null
|
||||
"$OPTIPNG" -o7 --quiet thumbnail"${theme}${type}${color}".png
|
||||
done
|
||||
done
|
||||
done
|
||||
|
||||
for theme in '' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey'; do
|
||||
for type in '' '-Nord' '-Dracula'; do
|
||||
if [[ ${theme} == '' && ${type} == '' ]]; then
|
||||
for type in '' '-Nord' '-Dracula' '-Gruvbox'; do
|
||||
if [[ "${theme}" == '' && "${type}" == '' ]]; then
|
||||
echo "keep thumbnail.svg"
|
||||
else
|
||||
rm -rf "thumbnail${theme}${type}.svg"
|
||||
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
BIN
src/assets/cinnamon/thumbnails/thumbnail-Green-Gruvbox-Dark.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
src/assets/cinnamon/thumbnails/thumbnail-Green-Gruvbox-Light.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
src/assets/cinnamon/thumbnails/thumbnail-Green-Gruvbox.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.6 KiB |
BIN
src/assets/cinnamon/thumbnails/thumbnail-Grey-Gruvbox-Dark.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
src/assets/cinnamon/thumbnails/thumbnail-Grey-Gruvbox-Light.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
src/assets/cinnamon/thumbnails/thumbnail-Grey-Gruvbox.png
Normal file
After Width: | Height: | Size: 4.6 KiB |