Compare commits
31 Commits
Author | SHA1 | Date | |
---|---|---|---|
58c05ada4a | |||
|
0d46b77d56 | ||
|
41a7b5c938 | ||
|
30e1389566 | ||
|
5ac126110d | ||
|
749b242626 | ||
|
6423c44538 | ||
|
02f612c6f8 | ||
|
880854d41a | ||
|
a4bd3869bb | ||
|
dcdf7015cf | ||
|
1590cfa5a7 | ||
|
97ece2f6c2 | ||
|
a07ee46e90 | ||
6847a75d6b | |||
fc3dc1a9f7 | |||
87d2f41e05 | |||
9a19424f39 | |||
244976746c | |||
8af87d0e0e | |||
bf774d1cf2 | |||
|
7370ab0a8d | ||
|
b01394be5b | ||
|
73211db05c | ||
|
02877bcdc3 | ||
|
aed4fa0a9c | ||
|
d7fec1935f | ||
|
96a31bfabd | ||
|
6240367e75 | ||
fbb3e7952a | |||
55ffbe9af2 |
1
.github/build-canary-v3
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/build-nest-v3
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/release-canary-v3
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
2
|
1
.github/release-nest-v3
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
5
|
37
.github/workflows/build-canaryv3.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: PikaOS Package Build Only (Canary) (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/build-canary-v3'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Update APT Cache
|
||||||
|
run: apt-get update -y
|
||||||
|
|
||||||
|
- name: Set Build Config
|
||||||
|
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./main.sh
|
37
.github/workflows/build-nestv3.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: PikaOS Package Build Only (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/build-nest-v3'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Update APT Cache
|
||||||
|
run: apt-get update -y
|
||||||
|
|
||||||
|
- name: Set Build Config
|
||||||
|
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./main.sh
|
40
.github/workflows/release-canaryv3.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
name: PikaOS Package Build & Release (Canary) (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/release-canary-v3'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Update APT Cache
|
||||||
|
run: apt-get update -y
|
||||||
|
|
||||||
|
- name: Set Build Config
|
||||||
|
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./main.sh
|
||||||
|
|
||||||
|
- name: Release Package
|
||||||
|
run: ./release.sh
|
40
.github/workflows/release-nestv3.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
name: PikaOS Package Build & Release (amd64-v3)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/release-nest-v3'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Update APT Cache
|
||||||
|
run: apt-get update -y
|
||||||
|
|
||||||
|
- name: Set Build Config
|
||||||
|
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: ./main.sh
|
||||||
|
|
||||||
|
- name: Release Package
|
||||||
|
run: ./release.sh
|
40
.github/workflows/release.yml
vendored
@ -1,40 +0,0 @@
|
|||||||
name: PikaOS Package Release
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: self-hosted
|
|
||||||
container:
|
|
||||||
image: ubuntu:22.10
|
|
||||||
volumes:
|
|
||||||
- /proc:/proc
|
|
||||||
options: --privileged -it
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Install needed packages
|
|
||||||
run: apt update && apt install software-properties-common sudo git bc gpg gpg-agent bison build-essential ccache cpio fakeroot flex git kmod libelf-dev libncurses5-dev libssl-dev lz4 qtbase5-dev rsync schedtool wget zstd tar reprepro dpkg-sig devscripts -y
|
|
||||||
|
|
||||||
- name: Import GPG key
|
|
||||||
id: import_gpg
|
|
||||||
uses: crazy-max/ghaction-import-gpg@v5
|
|
||||||
with:
|
|
||||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
||||||
passphrase: ${{ secrets.PASSPHRASE }}
|
|
||||||
|
|
||||||
- name: Install SSH key
|
|
||||||
uses: shimataro/ssh-key-action@v2
|
|
||||||
with:
|
|
||||||
key: ${{ secrets.SSH_KEY }}
|
|
||||||
name: id_rsa
|
|
||||||
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
|
||||||
if_key_exists: replace
|
|
||||||
|
|
||||||
- name: Build Package
|
|
||||||
run: ./main.sh
|
|
||||||
|
|
||||||
- name: Release Package
|
|
||||||
run: ./release.sh
|
|
19
main.sh
@ -1,8 +1,13 @@
|
|||||||
# Add dependent repositories
|
#! /bin/bash
|
||||||
wget -q -O - https://ppa.pika-os.com/key.gpg | sudo apt-key add -
|
|
||||||
add-apt-repository https://ppa.pika-os.com
|
set -e
|
||||||
add-apt-repository ppa:pikaos/pika
|
|
||||||
add-apt-repository ppa:kubuntu-ppa/backports
|
VERSION="4.0.0"
|
||||||
|
|
||||||
|
source ./pika-build-config.sh
|
||||||
|
|
||||||
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
||||||
|
|
||||||
# Clone Upstream
|
# Clone Upstream
|
||||||
cd ./pika-kde-settings
|
cd ./pika-kde-settings
|
||||||
|
|
||||||
@ -10,8 +15,8 @@ cd ./pika-kde-settings
|
|||||||
apt-get build-dep ./ -y
|
apt-get build-dep ./ -y
|
||||||
|
|
||||||
# Build package
|
# Build package
|
||||||
dh_make --createorig
|
LOGNAME=root dh_make --createorig -y -l -p pika-kde-settings_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
||||||
dpkg-buildpackage
|
dpkg-buildpackage --no-sign
|
||||||
|
|
||||||
# Move the debs to output
|
# Move the debs to output
|
||||||
cd ../
|
cd ../
|
||||||
|
10
pika-build-config/amd64-v3.sh
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
export PIKA_BUILD_ARCH="amd64-v3"
|
||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
export DEB_BUILD_MAINT_OPTIONS="optimize=+lto -march=x86-64-v3 -O3 -flto=auto"
|
||||||
|
export DEB_CFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto=auto"
|
||||||
|
export DEB_CPPFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto=auto"
|
||||||
|
export DEB_CXXFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto=auto"
|
||||||
|
export DEB_LDFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto=auto"
|
||||||
|
export DEB_BUILD_OPTIONS="nocheck notest terse"
|
||||||
|
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
|
5
pika-build-config/i386.sh
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
export PIKA_BUILD_ARCH="i386"
|
||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
export DEB_BUILD_OPTIONS="nocheck notest terse"
|
||||||
|
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
|
@ -1,9 +1,38 @@
|
|||||||
pika-kde-settings (3.8.0) kinetic; urgency=medium
|
pika-kde-settings (4.0.0-101pika4) pika; urgency=medium
|
||||||
|
|
||||||
* Pika-theme
|
* Pika-theme
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-kde-settings (3.8.11-100pika1) pikauwu; urgency=medium
|
||||||
|
|
||||||
|
* Pika-theme
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-kde-settings (3.8.9-100pika2) pikauwu; urgency=medium
|
||||||
|
|
||||||
|
* Pika-theme
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-kde-settings (3.8.8-99pika1.lunar) lunar; urgency=medium
|
||||||
|
|
||||||
|
* Pika-theme
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-kde-settings (3.8.0) lunar; urgency=medium
|
||||||
|
|
||||||
|
* Pika-theme
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-kde-settings (3.8.0) kinetic; urgency=medium
|
||||||
|
|
||||||
|
* Pika-theme
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
pika-kde-settings (3.4.0) kinetic; urgency=medium
|
pika-kde-settings (3.4.0) kinetic; urgency=medium
|
||||||
|
|
||||||
|
@ -9,7 +9,23 @@ Rules-Requires-Root: no
|
|||||||
Package: pika-kde-settings
|
Package: pika-kde-settings
|
||||||
Source: meta-kde
|
Source: meta-kde
|
||||||
Architecture: amd64
|
Architecture: amd64
|
||||||
Depends: breeze, pika-theme
|
Depends:
|
||||||
|
breeze,
|
||||||
|
breeze-icon-theme,
|
||||||
|
breeze-gtk-theme,
|
||||||
|
sddm-theme-breeze,
|
||||||
|
papirus-icon-theme,
|
||||||
|
papirus-colors,
|
||||||
|
sound-theme-freedesktop,
|
||||||
|
sound-theme-pika,
|
||||||
|
pika-wallpapers,
|
||||||
|
Conflicts:
|
||||||
|
pika-gnome-settings,
|
||||||
|
pika-hyprland-settings,
|
||||||
|
pika-settings,
|
||||||
|
pika-gnome-layouts
|
||||||
|
Provides:
|
||||||
|
pika-settings
|
||||||
Section: metapackages
|
Section: metapackages
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Homepage: https://www.kde.org
|
Homepage: https://www.kde.org
|
||||||
|
@ -1 +0,0 @@
|
|||||||
pika-kde-desktop_1.0.1_source.buildinfo metapackages optional
|
|
@ -1 +1,2 @@
|
|||||||
etc
|
etc
|
||||||
|
usr
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
cp /etc/skel/.config/examples/.profile /etc/skel/
|
#cp -f /etc/skel/.config/examples/metadata.desktop /usr/share/plasma/desktoptheme/Orchis-dark/
|
||||||
cp /usr/share/backgrounds/pika/can_i_come_in__by_neytirix_ddoss9c.jpg /usr/share/sddm/themes/Orchis/
|
cp -f /etc/skel/.config/examples/.profile /etc/skel/
|
||||||
cp /etc/skel/.config/examples/theme.conf.user /usr/share/sddm/themes/Orchis/
|
#cp -f /usr/share/backgrounds/pika/duck_village_by_neytirix_dekbu6y.jpg /usr/share/sddm/themes/Orchis/
|
||||||
|
#cp -f /etc/skel/.config/examples/theme.conf.user /usr/share/sddm/themes/Orchis/
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
#! /usr/bin/make -f
|
#! /usr/bin/make -f
|
||||||
|
|
||||||
|
override_dh_install:
|
||||||
|
dh_install
|
||||||
|
mkdir -p debian/pika-kde-settings/usr/share/wallpapers/Pika/contents/images/
|
||||||
|
ln -s /usr/share/backgrounds/pika/duck_village_by_neytirix_dekbu6y.jpg debian/pika-kde-settings/usr/share/wallpapers/Pika/contents/images/7680x4320.png
|
||||||
|
ln -s /usr/share/backgrounds/pika/duck_village_by_neytirix_dekbu6y.jpg debian/pika-kde-settings/usr/share/wallpapers/Pika/contents/screenshot.png
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@
|
dh $@
|
||||||
|
@ -1 +1 @@
|
|||||||
3.0 (native)
|
3.0 (quilt)
|
||||||
|
@ -4,8 +4,9 @@ Session=plasma
|
|||||||
User=
|
User=
|
||||||
|
|
||||||
[General]
|
[General]
|
||||||
HaltCommand=
|
HaltCommand=/usr/bin/systemctl poweroff
|
||||||
InputMethod=
|
Numlock=none
|
||||||
|
RebootCommand=/usr/bin/systemctl reboot
|
||||||
|
|
||||||
[Theme]
|
[Theme]
|
||||||
Current=Orchis
|
Current=breeze
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
[General]
|
|
||||||
theme=Orchis-dark
|
|
@ -1,5 +0,0 @@
|
|||||||
[FileDialog]
|
|
||||||
history=@Invalid()
|
|
||||||
lastVisited=file:///usr/share/backgrounds/pika/
|
|
||||||
qtVersion=5.15.6
|
|
||||||
viewMode=Detail
|
|
@ -1,17 +1,17 @@
|
|||||||
[qt]
|
[qt]
|
||||||
GUIEffects=none
|
GUIEffects=none
|
||||||
KDE\contrast=7
|
KDE\contrast=7
|
||||||
KWinPalette\activeBackground=#282828
|
KWinPalette\activeBackground=#31363b
|
||||||
KWinPalette\activeBlend=#282828
|
KWinPalette\activeBlend=#fcfcfc
|
||||||
KWinPalette\activeForeground=#dfdfdf
|
KWinPalette\activeForeground=#fcfcfc
|
||||||
KWinPalette\activeTitleBtnBg=#282828
|
KWinPalette\activeTitleBtnBg=#2a2e32
|
||||||
KWinPalette\frame=#282828
|
KWinPalette\frame=#2a2e32
|
||||||
KWinPalette\inactiveBackground=#323232
|
KWinPalette\inactiveBackground=#2a2e32
|
||||||
KWinPalette\inactiveBlend=#323232
|
KWinPalette\inactiveBlend=#a1a9b1
|
||||||
KWinPalette\inactiveForeground=#dfdfdf
|
KWinPalette\inactiveForeground=#a1a9b1
|
||||||
KWinPalette\inactiveFrame=#282828
|
KWinPalette\inactiveFrame=#2a2e32
|
||||||
KWinPalette\inactiveTitleBtnBg=#282828
|
KWinPalette\inactiveTitleBtnBg=#2a2e32
|
||||||
Palette\active=#dfdfdf, #4d4d4d, #494949, #3b3b3b, #131313, #222222, #dfdfdf, #ffffff, #dfdfdf, #303030, #282828, #0e0e0e, #1a73e8, #ffffff, #4285f4, #00bcd4, #303030, #000000, #282828, #dfdfdf, #dfdfdf
|
Palette\active=#fcfcfc, #31363b, #474d54, #3a4045, #141618, #24282b, #fcfcfc, #ffffff, #fcfcfc, #1b1e20, #2a2e32, #0f1012, #aa9729, #000000, #e8cb2d, #9b59b6, #232629, #000000, #31363b, #fcfcfc, #a1a9b1, #aa9729
|
||||||
Palette\disabled=#636363, #494949, #474747, #393939, #131313, #212121, #686868, #ffffff, #7a7a7a, #2e2e2e, #262626, #0d0d0d, #262626, #636363, #344a6f, #1e5c64, #2e2e2e, #000000, #282828, #dfdfdf, #dfdfdf
|
Palette\disabled=#6e7173, #2f3338, #454c52, #393e44, #131517, #222629, #656768, #ffffff, #727679, #1a1d1f, #282c30, #0e0f11, #282c30, #6e7173, #5e5623, #443051, #212427, #000000, #31363b, #fcfcfc, #464b4f, #282c30
|
||||||
Palette\inactive=#dfdfdf, #4d4d4d, #494949, #3b3b3b, #131313, #222222, #dfdfdf, #ffffff, #dfdfdf, #303030, #282828, #0e0e0e, #143868, #dfdfdf, #4285f4, #00bcd4, #303030, #000000, #282828, #dfdfdf, #dfdfdf
|
Palette\inactive=#fcfcfc, #31363b, #474d54, #3a4045, #141618, #24282b, #fcfcfc, #ffffff, #fcfcfc, #1b1e20, #2a2e32, #0f1012, #48421a, #fcfcfc, #e8cb2d, #9b59b6, #232629, #000000, #31363b, #fcfcfc, #a1a9b1, #48421a
|
||||||
font="Noto Sans,10,-1,0,50,0,0,0,0,0"
|
font="Noto Sans,10,-1,0,400,0,0,0,0,0,0,0,0,0,0,1"
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
[$Version]
|
|
||||||
update_info=fonts_akregator.upd:Plasma_Fonts_Akregator
|
|
0
pika-kde-settings/etc/skel/.config/examples/.profile
Executable file → Normal file
@ -1,3 +1,3 @@
|
|||||||
[General]
|
[General]
|
||||||
background=can_i_come_in__by_neytirix_ddoss9c.jpg
|
background=duck_village_by_neytirix_dekbu6y.jpg
|
||||||
type=image
|
type=image
|
||||||
|
@ -1,64 +0,0 @@
|
|||||||
<?xml version='1.0'?>
|
|
||||||
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
|
|
||||||
<fontconfig>
|
|
||||||
<match target="font">
|
|
||||||
<test name="family" compare="contains">
|
|
||||||
<string>Song</string>
|
|
||||||
</test>
|
|
||||||
<!-- check to see if the font is just regular -->
|
|
||||||
<test name="weight" compare="less_eq">
|
|
||||||
<int>100</int>
|
|
||||||
</test>
|
|
||||||
<test target="pattern" compare="more_eq" name="weight">
|
|
||||||
<int>180</int>
|
|
||||||
</test>
|
|
||||||
<edit mode="assign" name="embolden">
|
|
||||||
<bool>true</bool>
|
|
||||||
</edit>
|
|
||||||
</match>
|
|
||||||
<match target="font">
|
|
||||||
<test name="family" compare="contains">
|
|
||||||
<string>Sun</string>
|
|
||||||
</test>
|
|
||||||
<!-- check to see if the font is just regular -->
|
|
||||||
<test name="weight" compare="less_eq">
|
|
||||||
<int>100</int>
|
|
||||||
</test>
|
|
||||||
<test target="pattern" compare="more_eq" name="weight">
|
|
||||||
<int>180</int>
|
|
||||||
</test>
|
|
||||||
<edit mode="assign" name="embolden">
|
|
||||||
<bool>true</bool>
|
|
||||||
</edit>
|
|
||||||
</match>
|
|
||||||
<match target="font">
|
|
||||||
<test name="family" compare="contains">
|
|
||||||
<string>Kai</string>
|
|
||||||
</test>
|
|
||||||
<!-- check to see if the font is just regular -->
|
|
||||||
<test name="weight" compare="less_eq">
|
|
||||||
<int>100</int>
|
|
||||||
</test>
|
|
||||||
<test target="pattern" compare="more_eq" name="weight">
|
|
||||||
<int>180</int>
|
|
||||||
</test>
|
|
||||||
<edit mode="assign" name="embolden">
|
|
||||||
<bool>true</bool>
|
|
||||||
</edit>
|
|
||||||
</match>
|
|
||||||
<match target="font">
|
|
||||||
<test name="family" compare="contains">
|
|
||||||
<string>Ming</string>
|
|
||||||
</test>
|
|
||||||
<!-- check to see if the font is just regular -->
|
|
||||||
<test name="weight" compare="less_eq">
|
|
||||||
<int>100</int>
|
|
||||||
</test>
|
|
||||||
<test target="pattern" compare="more_eq" name="weight">
|
|
||||||
<int>180</int>
|
|
||||||
</test>
|
|
||||||
<edit mode="assign" name="embolden">
|
|
||||||
<bool>true</bool>
|
|
||||||
</edit>
|
|
||||||
</match>
|
|
||||||
</fontconfig>
|
|
@ -7,5 +7,22 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#6d2229" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.2 KiB |
@ -7,5 +7,22 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#6d2229" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.2 KiB |
@ -7,5 +7,22 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#da4453" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.2 KiB |
@ -7,5 +7,16 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.0 KiB |
@ -7,5 +7,22 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#ff98a2" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.2 KiB |
@ -7,5 +7,16 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
||||||
|
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.0 KiB |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,15 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 970 B |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,15 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 970 B |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,15 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 957 B |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,15 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 957 B |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,15 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 969 B |
@ -7,5 +7,21 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<circle cx="9" cy="9" r="9"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 1.1 KiB |
@ -7,5 +7,15 @@
|
|||||||
</defs>
|
</defs>
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
||||||
|
|
||||||
|
<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
||||||
|
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
||||||
|
>
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 969 B |
@ -15,7 +15,7 @@
|
|||||||
@define-color insensitive_unfocused_fg_color_breeze #6e7173;
|
@define-color insensitive_unfocused_fg_color_breeze #6e7173;
|
||||||
@define-color insensitive_unfocused_selected_bg_color_breeze #282c30;
|
@define-color insensitive_unfocused_selected_bg_color_breeze #282c30;
|
||||||
@define-color insensitive_unfocused_selected_fg_color_breeze #6e7173;
|
@define-color insensitive_unfocused_selected_fg_color_breeze #6e7173;
|
||||||
@define-color link_color_breeze #1d99f3;
|
@define-color link_color_breeze #e8cb2d;
|
||||||
@define-color link_visited_color_breeze #9b59b6;
|
@define-color link_visited_color_breeze #9b59b6;
|
||||||
@define-color success_color_backdrop_breeze #27ae60;
|
@define-color success_color_backdrop_breeze #27ae60;
|
||||||
@define-color success_color_breeze #27ae60;
|
@define-color success_color_breeze #27ae60;
|
||||||
@ -27,17 +27,17 @@
|
|||||||
@define-color theme_button_background_backdrop_insensitive_breeze #2f3338;
|
@define-color theme_button_background_backdrop_insensitive_breeze #2f3338;
|
||||||
@define-color theme_button_background_insensitive_breeze #2f3338;
|
@define-color theme_button_background_insensitive_breeze #2f3338;
|
||||||
@define-color theme_button_background_normal_breeze #31363b;
|
@define-color theme_button_background_normal_breeze #31363b;
|
||||||
@define-color theme_button_decoration_focus_backdrop_breeze #3daee9;
|
@define-color theme_button_decoration_focus_backdrop_breeze #e8cb2d;
|
||||||
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #335c72;
|
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #6c6534;
|
||||||
@define-color theme_button_decoration_focus_breeze #3daee9;
|
@define-color theme_button_decoration_focus_breeze #e8cb2d;
|
||||||
@define-color theme_button_decoration_focus_insensitive_breeze #335c72;
|
@define-color theme_button_decoration_focus_insensitive_breeze #6c6534;
|
||||||
@define-color theme_button_decoration_hover_backdrop_breeze #3daee9;
|
@define-color theme_button_decoration_hover_backdrop_breeze #e8cb2d;
|
||||||
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #335c72;
|
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #6c6534;
|
||||||
@define-color theme_button_decoration_hover_breeze #3daee9;
|
@define-color theme_button_decoration_hover_breeze #e8cb2d;
|
||||||
@define-color theme_button_decoration_hover_insensitive_breeze #335c72;
|
@define-color theme_button_decoration_hover_insensitive_breeze #6c6534;
|
||||||
@define-color theme_button_foreground_active_backdrop_breeze #fcfcfc;
|
@define-color theme_button_foreground_active_backdrop_breeze #fcfcfc;
|
||||||
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #6e7173;
|
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #6e7173;
|
||||||
@define-color theme_button_foreground_active_breeze #fcfcfc;
|
@define-color theme_button_foreground_active_breeze #000000;
|
||||||
@define-color theme_button_foreground_active_insensitive_breeze #6e7173;
|
@define-color theme_button_foreground_active_insensitive_breeze #6e7173;
|
||||||
@define-color theme_button_foreground_backdrop_breeze #fcfcfc;
|
@define-color theme_button_foreground_backdrop_breeze #fcfcfc;
|
||||||
@define-color theme_button_foreground_backdrop_insensitive_breeze #727679;
|
@define-color theme_button_foreground_backdrop_insensitive_breeze #727679;
|
||||||
@ -51,9 +51,9 @@
|
|||||||
@define-color theme_header_foreground_breeze #fcfcfc;
|
@define-color theme_header_foreground_breeze #fcfcfc;
|
||||||
@define-color theme_header_foreground_insensitive_backdrop_breeze #fcfcfc;
|
@define-color theme_header_foreground_insensitive_backdrop_breeze #fcfcfc;
|
||||||
@define-color theme_header_foreground_insensitive_breeze #fcfcfc;
|
@define-color theme_header_foreground_insensitive_breeze #fcfcfc;
|
||||||
@define-color theme_hovering_selected_bg_color_breeze #3daee9;
|
@define-color theme_hovering_selected_bg_color_breeze #e8cb2d;
|
||||||
@define-color theme_selected_bg_color_breeze #3daee9;
|
@define-color theme_selected_bg_color_breeze #aa9729;
|
||||||
@define-color theme_selected_fg_color_breeze #fcfcfc;
|
@define-color theme_selected_fg_color_breeze #000000;
|
||||||
@define-color theme_text_color_breeze #fcfcfc;
|
@define-color theme_text_color_breeze #fcfcfc;
|
||||||
@define-color theme_titlebar_background_backdrop_breeze #2a2e32;
|
@define-color theme_titlebar_background_backdrop_breeze #2a2e32;
|
||||||
@define-color theme_titlebar_background_breeze #31363b;
|
@define-color theme_titlebar_background_breeze #31363b;
|
||||||
@ -65,14 +65,14 @@
|
|||||||
@define-color theme_unfocused_base_color_breeze #1b1e20;
|
@define-color theme_unfocused_base_color_breeze #1b1e20;
|
||||||
@define-color theme_unfocused_bg_color_breeze #2a2e32;
|
@define-color theme_unfocused_bg_color_breeze #2a2e32;
|
||||||
@define-color theme_unfocused_fg_color_breeze #fcfcfc;
|
@define-color theme_unfocused_fg_color_breeze #fcfcfc;
|
||||||
@define-color theme_unfocused_selected_bg_color_alt_breeze #1f485e;
|
@define-color theme_unfocused_selected_bg_color_alt_breeze #48421a;
|
||||||
@define-color theme_unfocused_selected_bg_color_breeze #1f485e;
|
@define-color theme_unfocused_selected_bg_color_breeze #48421a;
|
||||||
@define-color theme_unfocused_selected_fg_color_breeze #fcfcfc;
|
@define-color theme_unfocused_selected_fg_color_breeze #fcfcfc;
|
||||||
@define-color theme_unfocused_text_color_breeze #fcfcfc;
|
@define-color theme_unfocused_text_color_breeze #fcfcfc;
|
||||||
@define-color theme_unfocused_view_bg_color_breeze #1a1d1f;
|
@define-color theme_unfocused_view_bg_color_breeze #1a1d1f;
|
||||||
@define-color theme_unfocused_view_text_color_breeze #656768;
|
@define-color theme_unfocused_view_text_color_breeze #656768;
|
||||||
@define-color theme_view_active_decoration_color_breeze #3daee9;
|
@define-color theme_view_active_decoration_color_breeze #e8cb2d;
|
||||||
@define-color theme_view_hover_decoration_color_breeze #3daee9;
|
@define-color theme_view_hover_decoration_color_breeze #e8cb2d;
|
||||||
@define-color tooltip_background_breeze #31363b;
|
@define-color tooltip_background_breeze #31363b;
|
||||||
@define-color tooltip_border_breeze #64686b;
|
@define-color tooltip_border_breeze #64686b;
|
||||||
@define-color tooltip_text_breeze #fcfcfc;
|
@define-color tooltip_text_breeze #fcfcfc;
|
||||||
|
@ -5,10 +5,12 @@ gtk-cursor-theme-name=breeze_cursors
|
|||||||
gtk-cursor-theme-size=24
|
gtk-cursor-theme-size=24
|
||||||
gtk-decoration-layout=icon:minimize,maximize,close
|
gtk-decoration-layout=icon:minimize,maximize,close
|
||||||
gtk-enable-animations=true
|
gtk-enable-animations=true
|
||||||
gtk-font-name=Fira Sans Book, 10
|
gtk-font-name=Noto Sans, 10
|
||||||
gtk-icon-theme-name=Papirus
|
gtk-icon-theme-name=Papirus-Colors-Dark
|
||||||
gtk-menu-images=true
|
gtk-menu-images=true
|
||||||
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
||||||
gtk-primary-button-warps-slider=false
|
gtk-primary-button-warps-slider=true
|
||||||
gtk-theme-name=Orchis-Dark
|
gtk-sound-theme-name=pika
|
||||||
|
gtk-theme-name=Breeze
|
||||||
gtk-toolbar-style=3
|
gtk-toolbar-style=3
|
||||||
|
gtk-xft-dpi=98304
|
||||||
|
@ -0,0 +1,71 @@
|
|||||||
|
headerbar button.titlebutton.close, .titlebar button.titlebutton.close {
|
||||||
|
background-image: url("assets/close-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:hover, .titlebar button.titlebutton.close:hover {
|
||||||
|
background-image: url("assets/close-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:active, .titlebar button.titlebutton.close:active {
|
||||||
|
background-image: url("assets/close-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:backdrop, .titlebar button.titlebutton.close:backdrop {
|
||||||
|
background-image: url("assets/close-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:backdrop:hover, .titlebar button.titlebutton.close:backdrop:hover {
|
||||||
|
background-image: url("assets/close-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.close:backdrop:active, .titlebar button.titlebutton.close:backdrop:active {
|
||||||
|
background-image: url("assets/close-backdrop-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize, .titlebar button.titlebutton.maximize {
|
||||||
|
background-image: url("assets/maximize-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:hover, .titlebar button.titlebutton.maximize:hover {
|
||||||
|
background-image: url("assets/maximize-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:active, .titlebar button.titlebutton.maximize:active {
|
||||||
|
background-image: url("assets/maximize-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:backdrop, .titlebar button.titlebutton.maximize:backdrop {
|
||||||
|
background-image: url("assets/maximize-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:backdrop:hover, .titlebar button.titlebutton.maximize:backdrop:hover {
|
||||||
|
background-image: url("assets/maximize-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.maximize:backdrop:active, .titlebar button.titlebutton.maximize:backdrop:active {
|
||||||
|
background-image: url("assets/maximize-backdrop-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize, .titlebar button.titlebutton.minimize {
|
||||||
|
background-image: url("assets/minimize-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:hover, .titlebar button.titlebutton.minimize:hover {
|
||||||
|
background-image: url("assets/minimize-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:active, .titlebar button.titlebutton.minimize:active {
|
||||||
|
background-image: url("assets/minimize-active.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:backdrop, .titlebar button.titlebutton.minimize:backdrop {
|
||||||
|
background-image: url("assets/minimize-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:backdrop:hover, .titlebar button.titlebutton.minimize:backdrop:hover {
|
||||||
|
background-image: url("assets/minimize-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
headerbar button.titlebutton.minimize:backdrop:active, .titlebar button.titlebutton.minimize:backdrop:active {
|
||||||
|
background-image: url("assets/minimize-backdrop-active.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize, .maximized .titlebar button.titlebutton.maximize {
|
||||||
|
background-image: url("assets/maximized-normal.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:hover, .maximized .titlebar button.titlebutton.maximize:hover {
|
||||||
|
background-image: url("assets/maximized-hover.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:active, .maximized .titlebar button.titlebutton.maximize:active {
|
||||||
|
background-image: url("assets/maximized-active.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:backdrop, .maximized .titlebar button.titlebutton.maximize:backdrop {
|
||||||
|
background-image: url("assets/maximized-backdrop-normal.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:backdrop:hover, .maximized .titlebar button.titlebutton.maximize:backdrop:hover {
|
||||||
|
background-image: url("assets/maximized-backdrop-hover.svg"); }
|
||||||
|
|
||||||
|
.maximized headerbar button.titlebutton.maximize:backdrop:active, .maximized .titlebar button.titlebutton.maximize:backdrop:active {
|
||||||
|
background-image: url("assets/maximized-backdrop-active.svg"); }
|
Before Width: | Height: | Size: 622 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 379 B |
Before Width: | Height: | Size: 688 B |
Before Width: | Height: | Size: 622 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 622 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 370 B |
Before Width: | Height: | Size: 679 B |
@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10c5.52 0 10-4.48 10-10s-4.48-10-10-10zm5.5898 4.5801 1.4102 1.4199-9 9-5-5 1.4102-1.4102 3.5898 3.5801 7.5898-7.5898z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 276 B |
@ -1,39 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="48"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 48 48"
|
|
||||||
id="svg4"
|
|
||||||
sodipodi:docname="checkbox-checked-symbolic@2.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="defs8" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview6"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="9.8333333"
|
|
||||||
inkscape:cx="0.96610169"
|
|
||||||
inkscape:cy="12.050847"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg4" />
|
|
||||||
<path
|
|
||||||
d="M 24,4 C 12.96,4 4,12.96 4,24 4,35.04 12.96,44 24,44 35.04,44 44,35.04 44,24 44,12.96 35.04,4 24,4 Z M 35.1796,13.1602 38,16 20,34 10,24 12.8204,21.1796 20,28.3398 Z"
|
|
||||||
id="path2"
|
|
||||||
style="stroke-width:2" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,3 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
|
|
||||||
<path d="M0 0h12A12 12 0 1 1 0 12z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 111 B |
@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10 0 5.52 4.48 10 10 10 5.52 0 10-4.48 10-10 0-5.52-4.48-10-10-10zm-5 9h10v2h-10v-2z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 228 B |
@ -1,39 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="48"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 48 48"
|
|
||||||
id="svg4"
|
|
||||||
sodipodi:docname="mixed-symbolic@2.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="defs8" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview6"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="9.8333333"
|
|
||||||
inkscape:cx="0.96610169"
|
|
||||||
inkscape:cy="12.050847"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg4" />
|
|
||||||
<path
|
|
||||||
d="M 24,4 C 12.96,4 4,12.96 4,24 4,35.04 12.96,44 24,44 35.04,44 44,35.04 44,24 44,12.96 35.04,4 24,4 Z M 14,22 h 20 v 4 H 14 Z"
|
|
||||||
id="path2"
|
|
||||||
style="stroke-width:2" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.2 KiB |
@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 7c1.656 0 3 1.344 3 3s-1.344 3-3 3-3-1.344-3-3 1.344-3 3-3z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 251 B |
@ -1,39 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="48"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 48 48"
|
|
||||||
id="svg4"
|
|
||||||
sodipodi:docname="radio-checked-symbolic@2.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="defs8" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview6"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="9.8333333"
|
|
||||||
inkscape:cx="0.96610169"
|
|
||||||
inkscape:cy="12.050847"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg4" />
|
|
||||||
<path
|
|
||||||
d="M 24,4 C 12.96,4 4,12.96 4,24 4,35.04 12.96,44 24,44 35.04,44 44,35.04 44,24 44,12.96 35.04,4 24,4 Z m 0,14 c 3.312,0 6,2.688 6,6 0,3.312 -2.688,6 -6,6 -3.312,0 -6,-2.688 -6,-6 0,-3.312 2.688,-6 6,-6 z"
|
|
||||||
id="path2"
|
|
||||||
style="stroke-width:2" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,38 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="18"
|
|
||||||
height="18"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 18 18"
|
|
||||||
id="svg4"
|
|
||||||
sodipodi:docname="small-checkbox-checked-symbolic.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="defs8" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview6"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="29.5"
|
|
||||||
inkscape:cx="6.0508475"
|
|
||||||
inkscape:cy="6.9661017"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg4" />
|
|
||||||
<path
|
|
||||||
id="path343"
|
|
||||||
d="M 9 0 A 9 9 0 0 0 0 9 A 9 9 0 0 0 9 18 A 9 9 0 0 0 18 9 A 9 9 0 0 0 9 0 z M 13.599609 4.5898438 L 15.009766 6 L 7.0097656 14 L 3.0097656 10 L 4.4199219 8.5898438 L 7.0097656 11.179688 L 13.599609 4.5898438 z " />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,39 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="36"
|
|
||||||
height="36"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 36 36"
|
|
||||||
id="svg4"
|
|
||||||
sodipodi:docname="small-checkbox-checked-symbolic@2.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="defs8" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview6"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="14.75"
|
|
||||||
inkscape:cx="2.5762712"
|
|
||||||
inkscape:cy="15.830508"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg4" />
|
|
||||||
<path
|
|
||||||
id="path343"
|
|
||||||
d="M 18,0 A 18,18 0 0 0 0,18 18,18 0 0 0 18,36 18,18 0 0 0 36,18 18,18 0 0 0 18,0 Z M 27.199218,9.1796876 30.019532,12 14.019531,28 6.0195312,20 8.8398438,17.179688 14.019531,22.359376 Z"
|
|
||||||
style="stroke-width:2" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,38 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="18"
|
|
||||||
height="18"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 18 18"
|
|
||||||
id="svg403"
|
|
||||||
sodipodi:docname="small-checkbox-mixed-symbolic.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="defs407" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview405"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="14.75"
|
|
||||||
inkscape:cx="-6.6779661"
|
|
||||||
inkscape:cy="8.0338983"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg403" />
|
|
||||||
<path
|
|
||||||
id="path435"
|
|
||||||
d="M 9 0 A 9 9 0 0 0 0 9 A 9 9 0 0 0 9 18 A 9 9 0 0 0 18 9 A 9 9 0 0 0 9 0 z M 5 8 L 13 8 L 13 10 L 5 10 L 5 8 z " />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.2 KiB |
@ -1,39 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="36"
|
|
||||||
height="36"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 36 36"
|
|
||||||
id="svg403"
|
|
||||||
sodipodi:docname="small-mixed-symbolic@2.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="defs407" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview405"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="14.75"
|
|
||||||
inkscape:cx="-13.966102"
|
|
||||||
inkscape:cy="8.0338983"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg403" />
|
|
||||||
<path
|
|
||||||
id="path435"
|
|
||||||
d="M 18,0 A 18,18 0 0 0 0,18 18,18 0 0 0 18,36 18,18 0 0 0 36,18 18,18 0 0 0 18,0 Z m -8,16 h 16 v 4 H 10 Z"
|
|
||||||
style="stroke-width:2" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.2 KiB |
@ -1,38 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="18"
|
|
||||||
height="18"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 18 18"
|
|
||||||
id="svg239"
|
|
||||||
sodipodi:docname="small-radio-checked-symbolic.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="defs243" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview241"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="14.75"
|
|
||||||
inkscape:cx="0.6440678"
|
|
||||||
inkscape:cy="8.0338983"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg239" />
|
|
||||||
<path
|
|
||||||
id="path640"
|
|
||||||
d="M 9 0 A 9 9 0 0 0 0 9 A 9 9 0 0 0 9 18 A 9 9 0 0 0 18 9 A 9 9 0 0 0 9 0 z M 9 6 C 10.656852 6 12 7.3431475 12 9 C 12 10.656852 10.656852 12 9 12 C 7.3431475 12 6 10.656852 6 9 C 6 7.3431475 7.3431475 6 9 6 z " />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,39 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="36"
|
|
||||||
height="36"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 36 36"
|
|
||||||
id="svg239"
|
|
||||||
sodipodi:docname="small-radio-checked-symbolic@2.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="defs243" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview241"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="14.75"
|
|
||||||
inkscape:cx="-6.6440678"
|
|
||||||
inkscape:cy="8.0338983"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg239" />
|
|
||||||
<path
|
|
||||||
id="path640"
|
|
||||||
d="M 18,0 A 18,18 0 0 0 0,18 18,18 0 0 0 18,36 18,18 0 0 0 36,18 18,18 0 0 0 18,0 Z m 0,12 c 3.313704,0 6,2.686295 6,6 0,3.313704 -2.686296,6 -6,6 -3.313705,0 -6,-2.686296 -6,-6 0,-3.313705 2.686295,-6 6,-6 z"
|
|
||||||
style="stroke-width:2" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,42 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="18"
|
|
||||||
height="18"
|
|
||||||
viewBox="0 0 18 18"
|
|
||||||
version="1.1"
|
|
||||||
id="svg653"
|
|
||||||
sodipodi:docname="small-unchecked-symbolic.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="defs657" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview655"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="20.85965"
|
|
||||||
inkscape:cx="3.6913371"
|
|
||||||
inkscape:cy="7.9339778"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg653">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid778" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<path
|
|
||||||
id="path776"
|
|
||||||
d="M 9 0 A 9 9 0 0 0 0 9 A 9 9 0 0 0 9 18 A 9 9 0 0 0 18 9 A 9 9 0 0 0 9 0 z M 9 2 A 7 7 0 0 1 16 9 A 7 7 0 0 1 9 16 A 7 7 0 0 1 2 9 A 7 7 0 0 1 9 2 z " />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,45 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="36"
|
|
||||||
height="36"
|
|
||||||
viewBox="0 0 36 36"
|
|
||||||
version="1.1"
|
|
||||||
id="svg653"
|
|
||||||
sodipodi:docname="small-unchecked-symbolic@2.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="defs657" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview655"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="20.85965"
|
|
||||||
inkscape:cx="-1.4861227"
|
|
||||||
inkscape:cy="7.9819172"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg653">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid778"
|
|
||||||
originx="0"
|
|
||||||
originy="0" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<path
|
|
||||||
id="path776"
|
|
||||||
d="M 18,0 A 18,18 0 0 0 0,18 18,18 0 0 0 18,36 18,18 0 0 0 36,18 18,18 0 0 0 18,0 Z m 0,4 A 14,14 0 0 1 32,18 14,14 0 0 1 18,32 14,14 0 0 1 4,18 14,14 0 0 1 18,4 Z"
|
|
||||||
style="stroke-width:2" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
@ -1,3 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
||||||
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 230 B |
@ -1,39 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="48"
|
|
||||||
viewBox="0 0 48 48"
|
|
||||||
version="1.1"
|
|
||||||
id="svg4"
|
|
||||||
sodipodi:docname="unchecked-symbolic@2.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="defs8" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview6"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="9.8333333"
|
|
||||||
inkscape:cx="0.96610169"
|
|
||||||
inkscape:cy="12.050847"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1000"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg4" />
|
|
||||||
<path
|
|
||||||
d="M 24,4 C 12.96,4 4,12.96 4,24 4,35.04 12.96,44 24,44 35.04,44 44,35.04 44,24 44,12.96 35.04,4 24,4 Z m 0,36 C 15.16,40 8,32.84 8,24 8,15.16 15.16,8 24,8 c 8.84,0 16,7.16 16,16 0,8.84 -7.16,16 -16,16 z"
|
|
||||||
id="path2"
|
|
||||||
style="stroke-width:2" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 526 B |
Before Width: | Height: | Size: 377 B |
Before Width: | Height: | Size: 523 B |
Before Width: | Height: | Size: 376 B |
Before Width: | Height: | Size: 510 B |
Before Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 526 B |
Before Width: | Height: | Size: 375 B |
Before Width: | Height: | Size: 532 B |
Before Width: | Height: | Size: 367 B |
Before Width: | Height: | Size: 522 B |
Before Width: | Height: | Size: 375 B |
Before Width: | Height: | Size: 527 B |
Before Width: | Height: | Size: 375 B |
Before Width: | Height: | Size: 532 B |
Before Width: | Height: | Size: 290 B |