This commit is contained in:
cln
2026-07-16 16:15:10 +02:00
commit 8d4d3e5d48
407 changed files with 36864 additions and 0 deletions
+112
View File
@@ -0,0 +1,112 @@
# NixOS configuration with Niri
This repository contains the declarative configuration files for my Thinkpad T480, it uses NixOS and Niri as the window compositor, it should work on most hardware just fine, assuming you are using an Intel IGPU, adjust accordingly to the NixOS wiki if needed.
> It works on my hardware, and of course it is not guaranteed to fully work on yours, although it should.
---
## Installation
After booting into the ISO and following the wiki to partition and mount the drives, clone the repo and put it in the right directory.
```bash
sudo nixos-generate-config -root /mnt
sudo nix-shell -p git
cd /mnt/etc/nixos/
sudo rm configuration.nix
git clone https://git.cln.cat/cln6/nixos-thinkpad
sudo mv nixos-thinkpad/* ./ && sudo rm -rf nixos-thinkpad
```
After that you can leave the Nix shell and enter into the proper directory, and install the system:
```bash
exit
cd /mnt
sudo nixos-install --flake /mnt/etc/nixos#cln (replace cln with your new hostname if you have decided to change it, instructions on how to do that are in the Notes section of this repo)
```
That's it, after it's done installing you should be able to reboot into the system, the default username is "cln" and password is "123", please change it after installation with the ```passwd cln``` command.
# Keybinds
---
## Applications
| Keybind | App |
|---|---|
| Super + D | App launcher |
| Super + Enter | kitty |
| Super + Q | kitty |
| Super + Shift + D | Mullvad browser |
| Super + Shift + F | Librewolf |
| Super + E | File manager |
| Super + B | Overskride ( Bluetooth ) |
| Super + P | Pwvucontrol ( Audio ) |
---
## Window Management
| Keybind | Action |
|---|---|
| Super + Shift + Q | Kill active window |
| Super + V | Toggle floating mode |
| Super + Q | Toggle overview |
| Super + F | Maximize |
---
## Workspace related
| Keybind | Action |
|---|---|
| Super + 1-10 | Switch workspace to your chosen number |
| Super + Shift + 1-10 | Move the active window to your chosen workspace |
| Super + Arrowkey | Switch to column on right/left side |
| Super + Shift + Arrowkey | Move the active window to a column on right/left side |
---
## Other
| Keybind | Action |
|---|---|
| Super + Arrow key | Switch your current focused window |
| Super + Shift + E | Exit Niri |
---
# Notes
- In order to use a different username, replace every "cln" word with your desired username in these files: ```configuration.nix```, ```home.nix``` as well as "users.cln" line in ```flake.nix```.
- In order to change your hostname, edit the hostname line in ```configuration.nix```, as well as all other lines with the word "cln" except for the "users.cln" line.
# Summary
So yeah this is my NixOS repo ig, I wasnt planning on using NixOS after the previous commit, but oh well I decided to not give up on the idea, I am gonna try to maintain this repo as much as I can, it isn't even finished yet.
+179
View File
@@ -0,0 +1,179 @@
{ config, lib, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
# Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
# catppuccin
catppuccin.autoEnable = false;
catppuccin.enable = true;
# Bootloader
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.limine = {
enable = true;
enableEditor = true;
maxGenerations = 10;
};
catppuccin.limine = {
enable = true;
flavor = "mocha";
accent = "lavender";
};
# Time and locale
time.timeZone = "Europe/Warsaw";
i18n.defaultLocale = "en_DK.UTF-8";
# Swap
swapDevices = [{
device = "/.swapfile";
size = 8*1024;
}];
# TTY related
console = {
keyMap = "pl";
};
catppuccin.tty = {
enable = true;
flavor = "mocha";
};
# Enable doas and disable sudo
security.doas.enable = true;
security.sudo.enable = false;
security.doas.extraRules = [{
users = ["cln"];
keepEnv = true;
persist = true;
}];
# Polkit
security.polkit.enable = true;
# Set up an user account
users.users.cln = {
isNormalUser = true;
description = "cln";
createHome = true;
home = "/home/cln";
shell = pkgs.zsh;
extraGroups = [ "wheel" "audio" "video" "render" ];
};
# Pipewire
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
# Intel GPU Drivers
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
intel-media-driver
vpl-gpu-rt
intel-compute-runtime
libvdpau-va-gl
];
};
environment.sessionVariables = {
LIBVA_DRIVER_NAME = "iHD";
VDPAU_DRIVER = "va_gl";
};
hardware.enableRedistributableFirmware = true;
boot.kernelParams = [ "i915.enable_guc=3" ];
# Bluetooth
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
# Networking
networking = {
hostName = "cln";
wireless.iwd = {
enable = true;
settings = {
Settings = {
AutoConnect = true;
};
};
};
firewall = {
enable = true;
allowedTCPPorts = [];
allowedUDPPorts = [];
};
nameservers = [
"194.242.2.4"
"194.242.2.2"
"1.1.1.1"
"1.0.0.1"
];
};
# Display manager
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
catppuccin.sddm = {
enable = true;
flavor = "mocha";
accent = "lavender";
};
# Niri related ( configuration is in modules/niri )
programs.niri.enable = true;
# Bash
programs.zsh.enable = true;
# iVPN
services.ivpn.enable = true;
# Upower
services.upower.enable = true;
# Steam
programs.steam = {
enable = true;
remotePlay.openFirewall = false;
dedicatedServer.openFirewall = false;
};
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam"
"steam-unwrapped"
];
# Fonts
fonts.packages = with pkgs; [
jetbrains-mono
nerd-fonts.jetbrains-mono
];
environment.systemPackages = with pkgs; [
cryptsetup
xfsprogs
];
system.stateVersion = "26.11";
}
+74
View File
@@ -0,0 +1,74 @@
[main]
font=JetBrains Mono NF:size=12
[colors-dark]
cursor=11111b f5e0dc
foreground=cdd6f4
background=1e1e2e
#alpha=0.8
regular0=45475a
regular1=f38ba8
regular2=a6e3a1
regular3=f9e2af
regular4=89b4fa
regular5=f5c2e7
regular6=94e2d5
regular7=bac2de
bright0=585b70
bright1=f38ba8
bright2=a6e3a1
bright3=f9e2af
bright4=89b4fa
bright5=f5c2e7
bright6=94e2d5
bright7=a6adc8
16=fab387
17=f5e0dc
selection-foreground=cdd6f4
selection-background=414356
search-box-no-match=11111b f38ba8
search-box-match=cdd6f4 313244
jump-labels=11111b fab387
urls=89b4fa
[colors-light]
cursor=eff1f5 dc8a78
foreground=4c4f69
background=eff1f5
alpha=0.9
regular0=5c5f77
regular1=d20f39
regular2=40a02b
regular3=df8e1d
regular4=1e66f5
regular5=ea76cb
regular6=179299
regular7=acb0be
bright0=6c6f85
bright1=d20f39
bright2=40a02b
bright3=df8e1d
bright4=1e66f5
bright5=ea76cb
bright6=179299
bright7=bcc0cc
16=fe640b
17=dc8a78
selection-foreground=4c4f69
selection-background=ccced7
search-box-no-match=dce0e8 d20f39
search-box-match=4c4f69 ccd0da
jump-labels=dce0e8 fe640b
urls=1e66f5
@@ -0,0 +1,111 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="35"
height="200"
version="1.1"
id="svg8"
sodipodi:docname="add-workspace-active.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="defs12">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1168"
x="-0.102608"
y="-0.040503159"
width="1.205216"
height="1.0810063">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="3.2065"
id="feGaussianBlur1170" />
</filter>
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1174"
x="-0.147"
y="-0.147"
width="1.294"
height="1.294">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.98"
id="feGaussianBlur1176" />
</filter>
</defs>
<sodipodi:namedview
id="namedview10"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="3.337544"
inkscape:cx="18.876156"
inkscape:cy="88.088726"
inkscape:window-width="1867"
inkscape:window-height="1009"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg8">
<inkscape:grid
type="xygrid"
id="grid340"
originx="0"
originy="0"
spacingy="1"
spacingx="1"
units="px"
visible="true" />
</sodipodi:namedview>
<rect
id="rect612"
width="75"
height="190"
x="5"
y="6"
rx="8"
ry="8"
style="fill:#000000;fill-opacity:1;filter:url(#filter1168);opacity:0.25" />
<rect
id="rect342"
width="75"
height="190"
x="5"
y="5"
rx="8"
ry="8"
style="fill:#006a83;fill-opacity:1" />
<path
d="m 18,95 c -0.554,0 -1,0.446 -1,1 v 4 h -4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 h 4 v 4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 v -4 h 4 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 h -4 v -4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,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,8 z"
color="#000000"
color-rendering="auto"
fill="#ffffff"
image-rendering="auto"
solid-color="#000000"
style="isolation:auto;mix-blend-mode:normal;shape-rendering:auto;fill:#000000;filter:url(#filter1174);opacity:0.15"
id="path1172" />
<path
d="m 18,94 c -0.554,0 -1,0.446 -1,1 v 4 h -4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 h 4 v 4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 v -4 h 4 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 h -4 v -4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,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,8 z"
color="#000000"
color-rendering="auto"
fill="#ffffff"
image-rendering="auto"
solid-color="#000000"
style="isolation:auto;mix-blend-mode:normal;shape-rendering:auto;fill:#eff1f5;fill-opacity:1"
id="path4" />
<path
id="rect607"
style="fill:#ffffff;fill-opacity:1;opacity:0.1"
d="M 13 5 C 8.5680044 5 5 8.5680044 5 13 L 5 14 C 5 9.5680044 8.5680044 6 13 6 L 72 6 C 76.431996 6 80 9.5680044 80 14 L 80 13 C 80 8.5680044 76.431996 5 72 5 L 13 5 z " />
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

@@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="35"
height="200"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="add-workspace-hover.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="4"
inkscape:cx="-81.038405"
inkscape:cy="108.58132"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1366"
inkscape:window-height="709"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true">
<inkscape:grid
type="xygrid"
id="grid3040"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="0,1"
position="20,100"
id="guide3893"
inkscape:locked="false" />
<sodipodi:guide
orientation="1,0"
position="18,190"
id="guide3895"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-852.36218)">
<path
id="rect4694"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.5;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<g
transform="translate(0,-0.9999969)"
id="g3917-7"
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
<path
id="rect4804"
transform="translate(0,852.36218)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,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,8 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

@@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="35"
height="200"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="add-workspace.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="4"
inkscape:cx="-28.526103"
inkscape:cy="75.41215"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1366"
inkscape:window-height="709"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true"
inkscape:document-rotation="0">
<inkscape:grid
type="xygrid"
id="grid3040"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="0,1"
position="20,100"
id="guide3893"
inkscape:locked="false" />
<sodipodi:guide
orientation="1,0"
position="18,190"
id="guide3895"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-852.36218)">
<path
id="rect4694"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.35;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<g
transform="translate(0,-0.9999969)"
id="g3917-7"
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
<path
id="rect4804"
transform="translate(0,852.36218)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.87;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,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,8 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
version="1.1"
id="svg4"
sodipodi:docname="calendar-arrow-left.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="29.5"
inkscape:cx="13.680381"
inkscape:cy="6.1418434"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="M10 3v10L5 8z"
fill="#000000"
opacity="0.54"
id="path2"
style="fill:#e6e6e6" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
version="1.1"
id="svg4"
sodipodi:docname="calendar-arrow-right.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="14.75"
inkscape:cx="8"
inkscape:cy="8"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="M6 3v10l5-5z"
fill="#000000"
opacity="0.54"
id="path2"
style="fill:#e6e6e6" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
version="1.1"
viewBox="0 0 24 24"
id="svg1516"
sodipodi:docname="checkbox-dark.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="defs1520">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1446"
x="-0.05808"
y="-0.05808"
width="1.11616"
height="1.11616">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.484"
id="feGaussianBlur1448" />
</filter>
</defs>
<sodipodi:namedview
id="namedview1518"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="19.666667"
inkscape:cx="15.711864"
inkscape:cy="14.542373"
inkscape:window-width="1835"
inkscape:window-height="977"
inkscape:window-x="102"
inkscape:window-y="102"
inkscape:window-maximized="0"
inkscape:current-layer="svg1516" />
<rect
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
id="rect890"
width="20"
height="20"
x="2"
y="3"
rx="4"
ry="4" />
<rect
style="fill:#589ed7;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
id="rect616"
width="20"
height="20"
x="2"
y="2"
rx="4"
ry="4" />
<path
id="rect340"
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
style="fill:#1e1e2e;fill-opacity:1" />
<path
id="rect885"
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="M 6,2 C 3.7840022,2 2,3.7840022 2,6 V 7 C 2,4.7840022 3.7840022,3 6,3 h 12 c 2.215998,0 4,1.7840022 4,4 V 6 C 22,3.7840022 20.215998,2 18,2 Z" />
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

@@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
</svg>

After

Width:  |  Height:  |  Size: 168 B

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
version="1.1"
viewBox="0 0 24 24"
id="svg439"
sodipodi:docname="checkbox.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="defs443">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1446"
x="-0.05808"
y="-0.05808"
width="1.11616"
height="1.11616">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.484"
id="feGaussianBlur1448" />
</filter>
</defs>
<sodipodi:namedview
id="namedview441"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="19.666667"
inkscape:cx="10.677966"
inkscape:cy="12.762712"
inkscape:window-width="1867"
inkscape:window-height="1009"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg439">
<inkscape:grid
type="xygrid"
id="grid562"
originx="0"
originy="0"
spacingy="1"
spacingx="1"
units="px"
visible="true" />
</sodipodi:namedview>
<rect
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
id="rect890"
width="20"
height="20"
x="2"
y="3"
rx="4"
ry="4" />
<rect
style="opacity:1;fill:#006a83;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
id="rect616"
width="20"
height="20"
x="2"
y="2"
rx="4"
ry="4" />
<path
id="rect340"
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
style="fill:#eff1f5;fill-opacity:1" />
<path
id="rect885"
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="M 6 2 C 3.7840022 2 2 3.7840022 2 6 L 2 7 C 2 4.7840022 3.7840022 3 6 3 L 18 3 C 20.215998 3 22 4.7840022 22 7 L 22 6 C 22 3.7840022 20.215998 2 18 2 L 6 2 z " />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Foreground"
width="26"
height="26"
enable-background="new 0 0 16 16"
version="1.0"
viewBox="0 0 18.909 18.909"
sodipodi:docname="close-active.svg"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
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">
<sodipodi:namedview
id="namedview2"
pagecolor="#ffffff"
bordercolor="#999999"
borderopacity="1"
inkscape:showpageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="30.192308"
inkscape:cx="13.099363"
inkscape:cy="13.099363"
inkscape:window-width="1920"
inkscape:window-height="1005"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="Foreground" />
<defs
id="defs1">
<filter
id="filter839"
x="-0.047999999"
y="-0.047999999"
width="1.096"
height="1.096"
color-interpolation-filters="sRGB">
<feGaussianBlur
stdDeviation="0.32"
id="feGaussianBlur1" />
</filter>
</defs>
<circle
cx="9.4545"
cy="10.182"
r="8"
fill="#000000"
filter="url(#filter839)"
opacity=".1"
stroke-width="0"
id="circle1" />
<circle
cx="9.4545"
cy="9.4545"
r="8"
fill="#d8354a"
stroke-width="0"
id="circle2"
style="fill:#c64343;fill-opacity:1" />
<path
d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z"
fill="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.3606"
style="paint-order:markers stroke fill"
id="path2" />
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Foreground"
width="26"
height="26"
enable-background="new 0 0 16 16"
version="1.0"
viewBox="0 0 18.909 18.909"
sodipodi:docname="close-hover.svg"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
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">
<sodipodi:namedview
id="namedview2"
pagecolor="#ffffff"
bordercolor="#999999"
borderopacity="1"
inkscape:showpageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="30.192308"
inkscape:cx="13.066242"
inkscape:cy="13.066242"
inkscape:window-width="1920"
inkscape:window-height="1005"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="Foreground" />
<defs
id="defs1">
<filter
id="filter839"
x="-0.047999999"
y="-0.047999999"
width="1.096"
height="1.096"
color-interpolation-filters="sRGB">
<feGaussianBlur
stdDeviation="0.32"
id="feGaussianBlur1" />
</filter>
</defs>
<circle
cx="9.4545"
cy="10.182"
r="8"
fill="#000000"
filter="url(#filter839)"
opacity=".1"
stroke-width="0"
id="circle1" />
<circle
cx="9.4545"
cy="9.4545"
r="8"
fill="#ff7a80"
stroke-width="0"
id="circle2"
style="fill:#b2555b;fill-opacity:1;opacity:1" />
<path
d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z"
fill="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.3606"
style="paint-order:markers stroke fill"
id="path2" />
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Foreground"
width="26"
height="26"
enable-background="new 0 0 16 16"
version="1.0"
viewBox="0 0 18.909 18.909"
sodipodi:docname="close.svg"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
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">
<sodipodi:namedview
id="namedview2"
pagecolor="#ffffff"
bordercolor="#999999"
borderopacity="1"
inkscape:showpageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="30.192308"
inkscape:cx="13.033121"
inkscape:cy="13.033121"
inkscape:window-width="1920"
inkscape:window-height="1005"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="Foreground" />
<defs
id="defs1">
<filter
id="filter879"
x="-0.047999999"
y="-0.047999999"
width="1.096"
height="1.096"
color-interpolation-filters="sRGB">
<feGaussianBlur
stdDeviation="0.32"
id="feGaussianBlur1" />
</filter>
</defs>
<circle
cx="9.4545"
cy="10.182"
r="8"
fill="#000000"
filter="url(#filter879)"
opacity=".1"
stroke-width="0"
id="circle1" />
<circle
cx="9.4545"
cy="9.4545"
r="8"
fill="#f75a61"
stroke-width="0"
id="circle2"
style="fill:#f52a65;fill-opacity:1;opacity:1" />
<path
d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z"
fill="#ffffff"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.3606"
style="paint-order:markers stroke fill"
id="path2" />
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="104"
height="104"
version="1.1"
id="svg1"
sodipodi:docname="corner-ripple.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="defs1" />
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.5769231"
inkscape:cx="52.197969"
inkscape:cy="52.13198"
inkscape:window-width="1867"
inkscape:window-height="1009"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg1" />
<g
transform="translate(0 -948.36)"
id="g1"
style="fill:#589ed7;fill-opacity:1">
<circle
id="corner-ripple"
cx="52"
cy="1000.4"
r="48"
fill="#009688"
opacity=".25"
style="fill:#589ed7;fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
version="1.1"
viewBox="0 0 24 24"
id="svg1780"
sodipodi:docname="radiobutton-dark.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="defs1784">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1250"
x="-0.05808"
y="-0.05808"
width="1.11616"
height="1.11616">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.484"
id="feGaussianBlur1252" />
</filter>
</defs>
<sodipodi:namedview
id="namedview1782"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="19.666667"
inkscape:cx="11.59322"
inkscape:cy="12.355932"
inkscape:window-width="1835"
inkscape:window-height="977"
inkscape:window-x="102"
inkscape:window-y="102"
inkscape:window-maximized="0"
inkscape:current-layer="svg1780" />
<circle
id="circle694"
cx="12"
cy="13"
r="10"
style="opacity:0.25;fill:#000000;fill-opacity:1;filter:url(#filter1250)" />
<circle
id="path291"
cx="12"
cy="12"
r="10"
style="fill:#589ed7;fill-opacity:1" />
<circle
id="path675"
cx="12"
cy="12"
r="3"
style="fill:#1e1e2e;stroke-width:1.2;fill-opacity:1" />
<path
id="circle689"
style="opacity:0.1;fill:#ffffff;fill-opacity:1"
d="M 12,2 A 10,10 0 0 0 2,12 10,10 0 0 0 2.0351562,12.5 10,10 0 0 1 12,3 10,10 0 0 1 21.976562,12.341797 10,10 0 0 0 22,12 10,10 0 0 0 12,2 Z" />
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

@@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
</svg>

After

Width:  |  Height:  |  Size: 168 B

@@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
version="1.1"
viewBox="0 0 24 24"
id="svg4"
sodipodi:docname="radiobutton.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1250"
x="-0.05808"
y="-0.05808"
width="1.11616"
height="1.11616">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.484"
id="feGaussianBlur1252" />
</filter>
</defs>
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="19.666667"
inkscape:cx="11.466102"
inkscape:cy="12.508474"
inkscape:window-width="1867"
inkscape:window-height="1009"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4">
<inkscape:grid
type="xygrid"
id="grid237"
originx="0"
originy="0"
spacingy="1"
spacingx="1"
units="px"
visible="true" />
</sodipodi:namedview>
<circle
id="circle694"
cx="12"
cy="13"
r="10"
style="fill:#000000;fill-opacity:1;filter:url(#filter1250);opacity:0.25" />
<circle
id="path291"
cx="12"
cy="12"
r="10"
style="fill:#006a83;fill-opacity:1" />
<circle
id="path675"
cx="12"
cy="12"
r="3"
style="fill:#ffffff;stroke-width:1.2" />
<path
id="circle689"
style="fill:#ffffff;fill-opacity:1;opacity:0.1"
d="M 12 2 A 10 10 0 0 0 2 12 A 10 10 0 0 0 2.0351562 12.5 A 10 10 0 0 1 12 3 A 10 10 0 0 1 21.976562 12.341797 A 10 10 0 0 0 22 12 A 10 10 0 0 0 12 2 z " />
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="48"
height="24"
version="1.1"
id="svg3299"
sodipodi:docname="toggle-off.svg"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
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="defs3303" />
<sodipodi:namedview
id="namedview3301"
pagecolor="#474747"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="5.9"
inkscape:cx="5.4237288"
inkscape:cy="12.542373"
inkscape:window-width="1661"
inkscape:window-height="740"
inkscape:window-x="129"
inkscape:window-y="1210"
inkscape:window-maximized="0"
inkscape:current-layer="svg3299">
<inkscape:grid
type="xygrid"
id="grid3422"
originx="0"
originy="0"
spacingy="1"
spacingx="1"
units="px"
visible="true" />
</sodipodi:namedview>
<rect
transform="scale(-1,1)"
x="-48"
y="-0.019988"
width="48"
height="24"
rx="12"
ry="12"
fill="#ffffff"
opacity="0.45"
stroke-width="0"
style="paint-order:stroke fill markers"
id="rect3295" />
<circle
cx="12"
cy="12"
r="9"
fill="#ffffff"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#1a1b26;fill-opacity:1"
id="circle3297" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

@@ -0,0 +1,94 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="48"
height="24"
version="1.1"
id="svg939"
sodipodi:docname="toggle-on-dark.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="defs943">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter863"
x="-0.14699999"
y="-0.14699999"
width="1.294"
height="1.294">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.1025"
id="feGaussianBlur865" />
</filter>
</defs>
<sodipodi:namedview
id="namedview941"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="16.68772"
inkscape:cx="26.906012"
inkscape:cy="13.243271"
inkscape:window-width="1867"
inkscape:window-height="1009"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg939">
<inkscape:grid
type="xygrid"
id="grid1663"
originx="0"
originy="0"
spacingy="1"
spacingx="1"
units="px"
visible="true" />
</sodipodi:namedview>
<rect
transform="scale(-1,1)"
x="-48"
y="-0.019988"
width="48"
height="24"
rx="12"
ry="12"
fill="#009688"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#589ed7;fill-opacity:1"
id="rect2" />
<circle
cx="36"
cy="13"
r="9"
fill="#ffffff"
stroke-width="0"
style="opacity:0.35;fill:#000000;paint-order:stroke fill markers;filter:url(#filter863)"
id="circle307" />
<circle
cx="36"
cy="12"
r="9"
fill="#ffffff"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#1e1e2e;fill-opacity:1"
id="circle4" />
<path
id="rect876"
style="opacity:0.1;fill:#ffffff;paint-order:stroke fill markers"
d="m 12,-0.01953125 c -6.6479934,0 -12,5.35200665 -12,12.00000025 0,0.171056 0.00665429,0.340494 0.01367188,0.509765 C 0.27938822,6.080891 5.523063,1 12,1 H 36 C 42.476937,1 47.720612,6.080891 47.986328,12.490234 47.993346,12.320963 48,12.151525 48,11.980469 48,5.3324754 42.647993,-0.01953125 36,-0.01953125 Z" />
<path
id="circle1665"
style="paint-order:stroke fill markers;fill:#ffffff;fill-opacity:1;opacity:0.1"
d="M 36 3 A 9 9 0 0 0 27 12 A 9 9 0 0 0 27.035156 12.5 A 9 9 0 0 1 36 4 A 9 9 0 0 1 44.974609 12.359375 A 9 9 0 0 0 45 12 A 9 9 0 0 0 36 3 z " />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="48"
height="24"
version="1.1"
id="svg6"
sodipodi:docname="toggle-on.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="filter863"
x="-0.14699999"
y="-0.14699999"
width="1.294"
height="1.294">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.1025"
id="feGaussianBlur865" />
</filter>
</defs>
<sodipodi:namedview
id="namedview8"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="11.8"
inkscape:cx="22.711864"
inkscape:cy="17.372881"
inkscape:window-width="1835"
inkscape:window-height="977"
inkscape:window-x="102"
inkscape:window-y="102"
inkscape:window-maximized="0"
inkscape:current-layer="svg6">
<inkscape:grid
type="xygrid"
id="grid293"
originx="0"
originy="0"
spacingy="1"
spacingx="1"
units="px"
visible="true" />
</sodipodi:namedview>
<rect
transform="scale(-1,1)"
x="-48"
y="-0.019988"
width="48"
height="24"
rx="12"
ry="12"
fill="#009688"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#006a83;fill-opacity:1"
id="rect2" />
<circle
cx="36"
cy="13"
r="9"
fill="#ffffff"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter863);opacity:0.35"
id="circle307" />
<circle
cx="36"
cy="12"
r="9"
fill="#ffffff"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#eff1f5;fill-opacity:1"
id="circle4" />
<path
id="rect876"
style="paint-order:stroke fill markers;fill:#ffffff;opacity:0.1"
d="M -12 -0.01953125 C -5.3520066 -0.01953125 0 5.3324754 0 11.980469 C 0 12.151525 -0.0066542885 12.320963 -0.013671875 12.490234 C -0.27938822 6.080891 -5.523063 1 -12 1 L -36 1 C -42.476937 1 -47.720612 6.080891 -47.986328 12.490234 C -47.993346 12.320963 -48 12.151525 -48 11.980469 C -48 5.3324754 -42.647993 -0.01953125 -36 -0.01953125 L -12 -0.01953125 z "
transform="scale(-1,1)" />
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

@@ -0,0 +1,6 @@
<svg width="400" height="120" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -932.36)">
<rect x="10" y="942.36" width="380" height="160" rx="18" ry="18" fill="#4d4d4d" stroke-width="0"/>
<path class="ColorScheme-Text" d="m200 964.36c-4.4183 0-8 3.5817-8 8h-16v4h48v-4h-16c0-4.4183-3.5817-8-8-8zm0 4c2.2091 1e-5 4 1.7909 4 4h-8c1e-5 -2.2091 1.7909-4 4-4zm-20 12v32c0 4.4321 3.5679 8.0001 8 8.0001h24c4.4321 0 8-3.568 8-8.0001v-32h-38zm4 4h32v28c0 2.2161-1.7839 4.0001-4 4.0001h-24c-2.2161 0-4-1.784-4-4.0001z" fill="#ececec"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 573 B

File diff suppressed because it is too large Load Diff
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="#FFFFFF" opacity="0.7">
<path d="m10 3v10l-5-5z"/>
</svg>

After

Width:  |  Height:  |  Size: 149 B

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="#FFFFFF" opacity="0.7">
<path d="m6 3v10l5-5z"/>
</svg>

After

Width:  |  Height:  |  Size: 147 B

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="48"
height="48"
version="1.1"
id="svg6"
sodipodi:docname="calendar-today.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" />
<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="6.9532167"
inkscape:cx="-13.087468"
inkscape:cy="15.676198"
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="grid293" />
</sodipodi:namedview>
<g
transform="matrix(2,0,0,2,-939.14001,-1079.92)"
id="g4"
style="fill:#ffffff">
<circle
cx="481.57001"
cy="559.46002"
r="1.5"
color="#000000"
color-rendering="auto"
fill-opacity="0.2"
image-rendering="auto"
shape-rendering="auto"
solid-color="#000000"
style="isolation:auto;mix-blend-mode:normal;paint-order:normal;fill:#ffffff"
id="circle2" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
version="1.1"
viewBox="0 0 24 24"
id="svg1516"
sodipodi:docname="checkbox-dark.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="defs1520">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1446"
x="-0.05808"
y="-0.05808"
width="1.11616"
height="1.11616">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.484"
id="feGaussianBlur1448" />
</filter>
</defs>
<sodipodi:namedview
id="namedview1518"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="13.906433"
inkscape:cx="9.4560553"
inkscape:cy="15.53238"
inkscape:window-width="1867"
inkscape:window-height="1009"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg1516" />
<rect
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
id="rect890"
width="20"
height="20"
x="2"
y="3"
rx="4"
ry="4" />
<rect
style="fill:#589ed7;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
id="rect616"
width="20"
height="20"
x="2"
y="2"
rx="4"
ry="4" />
<path
id="rect340"
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
style="fill:#1a1b26;fill-opacity:1" />
<path
id="rect885"
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="M 6,2 C 3.7840022,2 2,3.7840022 2,6 V 7 C 2,4.7840022 3.7840022,3 6,3 h 12 c 2.215998,0 4,1.7840022 4,4 V 6 C 22,3.7840022 20.215998,2 18,2 Z" />
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

@@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".25"/>
</svg>

After

Width:  |  Height:  |  Size: 168 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">
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".2"/>
</svg>

After

Width:  |  Height:  |  Size: 167 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">
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
</svg>

After

Width:  |  Height:  |  Size: 168 B

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
version="1.1"
viewBox="0 0 24 24"
id="svg439"
sodipodi:docname="checkbox.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="defs443">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1446"
x="-0.05808"
y="-0.05808"
width="1.11616"
height="1.11616">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.484"
id="feGaussianBlur1448" />
</filter>
</defs>
<sodipodi:namedview
id="namedview441"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="19.666667"
inkscape:cx="7.7542372"
inkscape:cy="14.38983"
inkscape:window-width="1867"
inkscape:window-height="1009"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg439">
<inkscape:grid
type="xygrid"
id="grid562"
originx="0"
originy="0"
spacingy="1"
spacingx="1"
units="px"
visible="true" />
</sodipodi:namedview>
<rect
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
id="rect890"
width="20"
height="20"
x="2"
y="3"
rx="4"
ry="4" />
<rect
style="opacity:1;fill:#006a83;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
id="rect616"
width="20"
height="20"
x="2"
y="2"
rx="4"
ry="4" />
<path
id="rect340"
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
style="fill:#e9e9ed;fill-opacity:1" />
<path
id="rect885"
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
d="M 6 2 C 3.7840022 2 2 3.7840022 2 6 L 2 7 C 2 4.7840022 3.7840022 3 6 3 L 18 3 C 20.215998 3 22 4.7840022 22 7 L 22 6 C 22 3.7840022 20.215998 2 18 2 L 6 2 z " />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF">
<circle cx="12" cy="12" r="12" opacity="0.3"/>
<circle cx="12" cy="12" r="4"/>
</svg>

After

Width:  |  Height:  |  Size: 189 B

@@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
height="48"
viewBox="0 0 48 48"
id="svg2"
version="1.1"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="no-events.svg">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs10" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1413"
inkscape:window-height="955"
id="namedview8"
showgrid="true"
inkscape:zoom="4.9166667"
inkscape:cx="-16.677966"
inkscape:cy="15.864407"
inkscape:window-x="46"
inkscape:window-y="71"
inkscape:window-maximized="0"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid4134" />
</sodipodi:namedview>
<path
d="M0 0h48v48H0z"
fill="none"
id="path4" />
<path
d="m 38,6 -2,0 0,-4 -4,0 0,4 -16,0 0,-4 -4,0 0,4 -2,0 C 7.79,6 6.02,7.79 6.02,10 L 6,38 c 0,2.21 1.79,4 4,4 l 28,0 c 2.21,0 4,-1.79 4,-4 L 42,10 C 42,7.79 40.21,6 38,6 Z m 0,32 -28,0 0,-22 28,0 z"
id="path6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccccccccsccsssssccccc"
style="fill:#f5f5f5;fill-opacity:1;opacity:0.54" />
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="#FFFFFF" opacity="0.5">
<path d="M24 44c2.21 0 4-1.79 4-4h-8c0 2.21 1.79 4 4 4zm12-12V22c0-6.15-3.27-11.28-9-12.64V8c0-1.66-1.34-3-3-3s-3 1.34-3 3v1.36c-5.73 1.36-9 6.49-9 12.64v10l-4 4v2h32v-2l-4-4zm-4 2H16V22c0-4.97 3.03-9 8-9s8 4.03 8 9v12z"/>
</svg>

After

Width:  |  Height:  |  Size: 345 B

@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1600"
height="900"
viewBox="0 0 1600 900"
version="1.1"
id="svg13"
sodipodi:docname="noise-texture.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<metadata
id="metadata17">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="698"
id="namedview15"
showgrid="false"
inkscape:zoom="0.26222222"
inkscape:cx="647.80786"
inkscape:cy="422.79535"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg13" />
<defs
id="defs9">
<radialGradient
id="a"
gradientTransform="matrix(1 1 -1 1 0.5 -0.5)">
<stop
stop-color="#455A64"
stop-opacity="0"
offset="0.25"
id="stop2"
style="stop-color:#444444;stop-opacity:0" />
<stop
stop-color="#455A64"
stop-opacity="0.5"
offset="0.75"
id="stop4"
style="stop-color:#444444;stop-opacity:0.50196081" />
<stop
stop-color="#455A64"
stop-opacity="1"
offset="1"
id="stop6"
style="stop-color:#444444;stop-opacity:1" />
</radialGradient>
</defs>
<rect
width="1600"
height="900"
fill="url(#a)"
id="rect11" />
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

@@ -0,0 +1,72 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="32" viewBox="0 0 512 32">
<defs>
<g id="g" fill="#FFFFFF" opacity="0.7">
<circle cx="8" cy="8" r="8" fill="none"/>
<path d="m8 1a7 7 0 0 0 -7 7 7 7 0 0 0 7 7 7 7 0 0 0 7 -7h-3a4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4v-3z"/>
</g>
</defs>
<use xlink:href="#g" transform="translate(0) rotate(0 8 8)"/>
<use xlink:href="#g" transform="translate(16) rotate(5.625 8 8)"/>
<use xlink:href="#g" transform="translate(32) rotate(11.25 8 8)"/>
<use xlink:href="#g" transform="translate(48) rotate(16.875 8 8)"/>
<use xlink:href="#g" transform="translate(64) rotate(22.5 8 8)"/>
<use xlink:href="#g" transform="translate(80) rotate(28.125 8 8)"/>
<use xlink:href="#g" transform="translate(96) rotate(33.75 8 8)"/>
<use xlink:href="#g" transform="translate(112) rotate(39.375 8 8)"/>
<use xlink:href="#g" transform="translate(128) rotate(45 8 8)"/>
<use xlink:href="#g" transform="translate(144) rotate(50.625 8 8)"/>
<use xlink:href="#g" transform="translate(160) rotate(56.25 8 8)"/>
<use xlink:href="#g" transform="translate(176) rotate(61.875 8 8)"/>
<use xlink:href="#g" transform="translate(192) rotate(67.5 8 8)"/>
<use xlink:href="#g" transform="translate(208) rotate(73.125 8 8)"/>
<use xlink:href="#g" transform="translate(224) rotate(78.75 8 8)"/>
<use xlink:href="#g" transform="translate(240) rotate(84.375 8 8)"/>
<use xlink:href="#g" transform="translate(256) rotate(90 8 8)"/>
<use xlink:href="#g" transform="translate(272) rotate(95.625 8 8)"/>
<use xlink:href="#g" transform="translate(288) rotate(101.25 8 8)"/>
<use xlink:href="#g" transform="translate(304) rotate(106.875 8 8)"/>
<use xlink:href="#g" transform="translate(320) rotate(112.5 8 8)"/>
<use xlink:href="#g" transform="translate(336) rotate(118.125 8 8)"/>
<use xlink:href="#g" transform="translate(352) rotate(123.75 8 8)"/>
<use xlink:href="#g" transform="translate(368) rotate(129.375 8 8)"/>
<use xlink:href="#g" transform="translate(384) rotate(135 8 8)"/>
<use xlink:href="#g" transform="translate(400) rotate(140.625 8 8)"/>
<use xlink:href="#g" transform="translate(416) rotate(146.25 8 8)"/>
<use xlink:href="#g" transform="translate(432) rotate(151.875 8 8)"/>
<use xlink:href="#g" transform="translate(448) rotate(157.5 8 8)"/>
<use xlink:href="#g" transform="translate(464) rotate(163.125 8 8)"/>
<use xlink:href="#g" transform="translate(480) rotate(168.75 8 8)"/>
<use xlink:href="#g" transform="translate(496) rotate(174.375 8 8)"/>
<use xlink:href="#g" transform="translate(0 16) rotate(180 8 8)"/>
<use xlink:href="#g" transform="translate(16 16) rotate(185.625 8 8)"/>
<use xlink:href="#g" transform="translate(32 16) rotate(191.25 8 8)"/>
<use xlink:href="#g" transform="translate(48 16) rotate(196.875 8 8)"/>
<use xlink:href="#g" transform="translate(64 16) rotate(202.5 8 8)"/>
<use xlink:href="#g" transform="translate(80 16) rotate(208.125 8 8)"/>
<use xlink:href="#g" transform="translate(96 16) rotate(213.75 8 8)"/>
<use xlink:href="#g" transform="translate(112 16) rotate(219.375 8 8)"/>
<use xlink:href="#g" transform="translate(128 16) rotate(225 8 8)"/>
<use xlink:href="#g" transform="translate(144 16) rotate(230.625 8 8)"/>
<use xlink:href="#g" transform="translate(160 16) rotate(236.25 8 8)"/>
<use xlink:href="#g" transform="translate(176 16) rotate(241.875 8 8)"/>
<use xlink:href="#g" transform="translate(192 16) rotate(247.5 8 8)"/>
<use xlink:href="#g" transform="translate(208 16) rotate(253.125 8 8)"/>
<use xlink:href="#g" transform="translate(224 16) rotate(258.75 8 8)"/>
<use xlink:href="#g" transform="translate(240 16) rotate(264.375 8 8)"/>
<use xlink:href="#g" transform="translate(256 16) rotate(270 8 8)"/>
<use xlink:href="#g" transform="translate(272 16) rotate(275.625 8 8)"/>
<use xlink:href="#g" transform="translate(288 16) rotate(281.25 8 8)"/>
<use xlink:href="#g" transform="translate(304 16) rotate(286.875 8 8)"/>
<use xlink:href="#g" transform="translate(320 16) rotate(292.5 8 8)"/>
<use xlink:href="#g" transform="translate(336 16) rotate(298.125 8 8)"/>
<use xlink:href="#g" transform="translate(352 16) rotate(303.75 8 8)"/>
<use xlink:href="#g" transform="translate(368 16) rotate(309.375 8 8)"/>
<use xlink:href="#g" transform="translate(384 16) rotate(315 8 8)"/>
<use xlink:href="#g" transform="translate(400 16) rotate(320.625 8 8)"/>
<use xlink:href="#g" transform="translate(416 16) rotate(326.25 8 8)"/>
<use xlink:href="#g" transform="translate(432 16) rotate(331.875 8 8)"/>
<use xlink:href="#g" transform="translate(448 16) rotate(337.5 8 8)"/>
<use xlink:href="#g" transform="translate(464 16) rotate(343.125 8 8)"/>
<use xlink:href="#g" transform="translate(480 16) rotate(348.75 8 8)"/>
<use xlink:href="#g" transform="translate(496 16) rotate(354.375 8 8)"/>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="48"
height="24"
version="1.1"
id="svg3299"
sodipodi:docname="toggle-off.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs3303" />
<sodipodi:namedview
id="namedview3301"
pagecolor="#474747"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="5.9"
inkscape:cx="5.4237288"
inkscape:cy="12.542373"
inkscape:window-width="1368"
inkscape:window-height="700"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg3299">
<inkscape:grid
type="xygrid"
id="grid3422" />
</sodipodi:namedview>
<rect
transform="scale(-1,1)"
x="-48"
y="-0.019988"
width="48"
height="24"
rx="12"
ry="12"
fill="#ffffff"
opacity="0.45"
stroke-width="0"
style="paint-order:stroke fill markers"
id="rect3295" />
<circle
cx="12"
cy="12"
r="9"
fill="#ffffff"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#242424;fill-opacity:1"
id="circle3297" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

@@ -0,0 +1,94 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="48"
height="24"
version="1.1"
id="svg939"
sodipodi:docname="toggle-on-dark.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="defs943">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter863"
x="-0.14699999"
y="-0.14699999"
width="1.294"
height="1.294">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.1025"
id="feGaussianBlur865" />
</filter>
</defs>
<sodipodi:namedview
id="namedview941"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="11.8"
inkscape:cx="18.09322"
inkscape:cy="12.288136"
inkscape:window-width="1867"
inkscape:window-height="1009"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg939">
<inkscape:grid
type="xygrid"
id="grid1663"
originx="0"
originy="0"
spacingy="1"
spacingx="1"
units="px"
visible="true" />
</sodipodi:namedview>
<rect
transform="scale(-1,1)"
x="-48"
y="-0.019988"
width="48"
height="24"
rx="12"
ry="12"
fill="#009688"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#589ed7;fill-opacity:1"
id="rect2" />
<circle
cx="36"
cy="13"
r="9"
fill="#ffffff"
stroke-width="0"
style="opacity:0.35;fill:#000000;paint-order:stroke fill markers;filter:url(#filter863)"
id="circle307" />
<circle
cx="36"
cy="12"
r="9"
fill="#ffffff"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#1a1b26;fill-opacity:1"
id="circle4" />
<path
id="rect876"
style="opacity:0.1;fill:#ffffff;paint-order:stroke fill markers"
d="m 12,-0.01953125 c -6.6479934,0 -12,5.35200665 -12,12.00000025 0,0.171056 0.00665429,0.340494 0.01367188,0.509765 C 0.27938822,6.080891 5.523063,1 12,1 H 36 C 42.476937,1 47.720612,6.080891 47.986328,12.490234 47.993346,12.320963 48,12.151525 48,11.980469 48,5.3324754 42.647993,-0.01953125 36,-0.01953125 Z" />
<path
id="circle1665"
style="paint-order:stroke fill markers;fill:#ffffff;fill-opacity:1;opacity:0.1"
d="M 36 3 A 9 9 0 0 0 27 12 A 9 9 0 0 0 27.035156 12.5 A 9 9 0 0 1 36 4 A 9 9 0 0 1 44.974609 12.359375 A 9 9 0 0 0 45 12 A 9 9 0 0 0 36 3 z " />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="48"
height="24"
version="1.1"
id="svg6"
sodipodi:docname="toggle-on.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
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="filter863"
x="-0.14699999"
y="-0.14699999"
width="1.294"
height="1.294">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.1025"
id="feGaussianBlur865" />
</filter>
</defs>
<sodipodi:namedview
id="namedview8"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="11.8"
inkscape:cx="16.991525"
inkscape:cy="16.186441"
inkscape:window-width="1867"
inkscape:window-height="1009"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg6">
<inkscape:grid
type="xygrid"
id="grid293"
originx="0"
originy="0"
spacingy="1"
spacingx="1"
units="px"
visible="true" />
</sodipodi:namedview>
<rect
transform="scale(-1,1)"
x="-48"
y="-0.019988"
width="48"
height="24"
rx="12"
ry="12"
fill="#009688"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#006a83;fill-opacity:1"
id="rect2" />
<circle
cx="36"
cy="13"
r="9"
fill="#ffffff"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter863);opacity:0.35"
id="circle307" />
<circle
cx="36"
cy="12"
r="9"
fill="#ffffff"
stroke-width="0"
style="paint-order:stroke fill markers;fill:#e9e9ed;fill-opacity:1"
id="circle4" />
<path
id="rect876"
style="paint-order:stroke fill markers;fill:#ffffff;opacity:0.1"
d="M -12 -0.01953125 C -5.3520066 -0.01953125 0 5.3324754 0 11.980469 C 0 12.151525 -0.0066542885 12.320963 -0.013671875 12.490234 C -0.27938822 6.080891 -5.523063 1 -12 1 L -36 1 C -42.476937 1 -47.720612 6.080891 -47.986328 12.490234 C -47.993346 12.320963 -48 12.151525 -48 11.980469 C -48 5.3324754 -42.647993 -0.01953125 -36 -0.01953125 L -12 -0.01953125 z "
transform="scale(-1,1)" />
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because it is too large Load Diff
@@ -0,0 +1 @@
assets/no-events.svg
@@ -0,0 +1 @@
assets/no-notifications.svg
@@ -0,0 +1,31 @@
.Leader {
stroke-width: 0.5 !important;
stroke: #535353;
fill: none !important;
}
.Button {
stroke-width: 0.25;
stroke: #ededed;
fill: #ededed;
}
.Ring {
stroke-width: 0.5 !important;
stroke: #535353 !important;
fill: none !important;
}
.Label {
stroke: none !important;
stroke-width: 0.1 !important;
font-size: 0.1 !important;
fill: transparent !important;
}
.TouchStrip,
.TouchRing {
stroke-width: 0.1 !important;
stroke: #ededed !important;
fill: #535353 !important;
}
@@ -0,0 +1 @@
assets/process-working.svg
@@ -0,0 +1,92 @@
# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et:
#
# This file, unlike hacks.rc, contains legitimate cases we need to handle, e.g.
# custom widgets, programs giving us a chance to alter their UI to fit more with
# the theme or stuff that is supposed to look different, like panels.
# TODO: This could really look nicer
style "gimp_spin_scale" {
# Spin background
bg[NORMAL] = @base_color
engine "pixmap" {
image {
function = BOX
state = NORMAL
detail = "spinbutton_up"
overlay_file = "assets/pan-up-alt.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = PRELIGHT
detail = "spinbutton_up"
overlay_file = "assets/pan-up.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = ACTIVE
detail = "spinbutton_up"
overlay_file = "assets/pan-up.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = INSENSITIVE
detail = "spinbutton_up"
overlay_file = "assets/pan-up-alt-disabled.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = NORMAL
detail = "spinbutton_down"
overlay_file = "assets/pan-down-alt.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = PRELIGHT
detail = "spinbutton_down"
overlay_file = "assets/pan-down.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = ACTIVE
detail = "spinbutton_down"
overlay_file = "assets/pan-down.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = INSENSITIVE
detail = "spinbutton_down"
overlay_file = "assets/pan-down-alt-disabled.png"
overlay_stretch = FALSE
}
}
}
style "chrome_gtk_frame" {
ChromeGtkFrame::frame-color = @titlebar_bg_color
ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color
ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color
ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color
ChromeGtkFrame::frame-gradient-size = 0
}
# Disable spin button assets for GimpSpinScale
class "GimpSpinScale" style "gimp_spin_scale"
# Chromium lets us define some colours and settings for better integration
class "ChromeGtkFrame" style "chrome_gtk_frame"
Binary file not shown.

After

Width:  |  Height:  |  Size: 126 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 464 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 517 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 389 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 298 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 423 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 461 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 398 B

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