Add firefox theme

This commit is contained in:
vinceliuice
2022-07-18 14:35:27 +08:00
parent 82d899780f
commit 36e472a8c9
127 changed files with 6259 additions and 3 deletions

View File

@@ -4033,7 +4033,7 @@ decoration {
margin: 8px;
}
.csd decoration {
.background.csd decoration {
border: 1px solid rgba(255, 255, 255, 0.1);
background-clip: border-box;
}
@@ -6056,6 +6056,10 @@ tooltip.background.chromium {
/***********
* Firefox *
***********/
#MozillaGtkWidget decoration {
border: none;
}
#MozillaGtkWidget > widget text {
background-color: #3C3C3C;
}

View File

@@ -6048,6 +6048,10 @@ tooltip.background.chromium {
/***********
* Firefox *
***********/
#MozillaGtkWidget decoration {
border: none;
}
#MozillaGtkWidget > widget text {
background-color: #FFFFFF;
}

View File

@@ -0,0 +1,66 @@
## Colloid Firefox theme
<p align="center">A flat clean theme for Firefox 90+</p>
#### Preview
![01](screenshot.png?raw=true)
## Description
This is a bunch of CSS code to make Firefox look closer to Chrome theme.
## Installation
### Manual installation
1. Go to `about:support` in Firefox.
2. Application Basics > Profile Directory > Open Directory.
3. Copy `chrome` folder Firefox config folder.
4. If you are using Firefox 69+:
1. Go to `about:config` in Firefox.
2. Search for `toolkit.legacyUserProfileCustomizations.stylesheets` and set it to `true`.
5. Restart Firefox.
6. Open Firefox customization panel and:
1. Use *Title bar* option to toggle CSD if is not set by default.
2. Move the new tab button to headerbar.
3. Select light or dark variants on theme switcher.
7. Be happy with your new gnomish Firefox.
## Enabling optional features
Open `userChrome.css` with a text editor and follow instructions to enable extra features. Keep in mind this file might change in future versions and your configuration will be lost. You can copy the @imports you want to enable to a new file named `customChrome` directly in your `chrome` directory if you want it to survive updates. Remember all @imports must be at the top of the file, before other statements.
## Known bugs
### CSD have sharp corners
See upstream [bug](https://bugzilla.mozilla.org/show_bug.cgi?id=1408360).
### Icons color broken
Icons might appear black where they should be white on some systems. I have no idea why, but you can adjust them in the `theme/colors/light.css` or `theme/colors/dark.css` files, look for `--gnome-icons-hack-filter` var and play with css filters.
## Development
If you wanna mess around the styles and change something, you might find these
things useful.
To use the Inspector to debug the UI, open the developer tools (F12) on any
page, go to options, check both of those:
- Enable browser chrome and add-on debugging toolboxes
- Enable remote debugging
Now you can close those tools and press Ctrl+Alt+Shift+I to Inspect the browser
UI.
Also you can inspect any GTK3 application, for example type this into a terminal
and it will run Epiphany with the GTK Inspector, so you can check the CSS styles
of its elements too.
```sh
GTK_DEBUG=interactive epiphany
```
Feel free to use any parts of my code to develop your own themes, I don't force
any specific license on your code.
## Credits
Developed by **Rafael Mardojai** and [contributors](https://github.com/rafaelmardojai/firefox-gnome-theme/graphs/contributors). Based on **[Sai Kurogetsu](https://github.com/kurogetsusai/firefox-gnome-theme)** original work.

View File

@@ -0,0 +1,115 @@
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* Variables that start with --gnome- are added by me and are assigned
* to elements somewhere in this code. The rest of the variables are
* built-in in Firefox, so you need to add an !important if you wanna
* override them. */
@media (prefers-color-scheme: dark) {
:root {
/* Browser area before a page starts loading */
--gnome-browser-before-load-background: #242424;
/* Accent */
--gnome-accent-bg: #3584e4;
--gnome-accent: #78aeed;
/* Toolbars */
--gnome-toolbar-background: #242424;
--gnome-toolbar-color: #ffffff;
--gnome-toolbar-border-color: rgba(255, 255, 255, .15);
--gnome-toolbar-icon-fill: #eeeeec;
--gnome-inactive-toolbar-color: #919190;
--gnome-inactive-toolbar-background: var(--gnome-toolbar-background);
--gnome-inactive-toolbar-border-color: #3F3F3F;
--gnome-inactive-toolbar-icon-fill: #919190;
/* Sidebar */
--gnome-sidebar-background: var(--gnome-toolbar-background);
--gnome-inactive-sidebar-background: var(--gnome-sidebar-background);
/* Menus */
--gnome-menu-background: #383838;
--gnome-menu-border-color: rgba(0, 0, 0, .14);
--gnome-menu-shadow: 0 1px 5px 1px rgba(0,0,0, .09), 0 2px 14px 3px rgba(0,0,0, .05);
--gnome-menu-button-hover-background: var(--gnome-button-background);
--gnome-menu-separator-color: rgba(255, 255, 255, .1);
/* Header bar */
--gnome-headerbar-background: #303030;
--gnome-headerbar-border-color: var(--gnome-toolbar-border-color);
--gnome-inactive-headerbar-background: var(--gnome-inactive-toolbar-background);
--gnome-inactive-headerbar-border-color: var(--gnome-inactive-toolbar-border-color);
/* Buttons */
--gnome-button-background: rgba(255, 255, 255, .1);
--gnome-button-hover-background: rgba(255, 255, 255, .15);
--gnome-button-active-background: rgba(255, 255, 255, .3);
--gnome-button-flat-hover-background: rgba(255, 255, 255, .07);
--gnome-button-flat-active-background: rgba(255, 255, 255, .1);
--gnome-button-suggested-action-background: var(--gnome-accent-bg);
--gnome-button-destructive-action-background: #e01b24;
--gnome-button-close-background: var(--gnome-button-flat-hover-background);
--gnome-button-hover-close-background:var(--gnome-button-hover-background);
--gnome-button-active-close-background: var(--gnome-button-active-background);
/* TitleButtons */
--gnome-titlebutton-min-background: #fdbe04;
--gnome-titlebutton-max-background: #38c76a;
--gnome-titlebutton-close-background: #fd5f51;
--gnome-titlebutton-min-hover-background: #fdbe04;
--gnome-titlebutton-max-hover-background: #38c76a;
--gnome-titlebutton-close-hover-background: #fd5f51;
--gnome-titlebutton-min-active-background: #fdcd43;
--gnome-titlebutton-max-active-background: #6ad48e;
--gnome-titlebutton-close-active-background: #fb857c;
/* Entries */
--gnome-entry-background: rgba(255, 255, 255, .1);
--gnome-entry-color: #ffffff;
--gnome-inactive-entry-color: #d6d6d6;
--gnome-focused-urlbar-border-color: rgba(120, 174, 237, .5); /* Same as --gnome-accent but with opacity*/
/* Switch */
--gnome-switch-background: rgba(255, 255, 255, .15);
--gnome-switch-slider-background: #d2d2d2;
--gnome-switch-active-background: var(--gnome-accent-bg);
--gnome-switch-active-slider-background: #ffffff;
/* Tabs */
--gnome-tabbar-tab-background: #262626;
--gnome-tabbar-tab-border-color: var(--gnome-toolbar-border-color);
--gnome-tabbar-tab-hover-background: #303030;
--gnome-tabbar-tab-active-background: #383838;
--gnome-tabbar-tab-active-background-contrast: #4F4F4F;
--gnome-tabbar-tab-active-hover-background: #424242;
--gnome-inactive-tabbar-tab-background: #1C1C1C;
--gnome-inactive-tabbar-tab-active-background: #242424;
--gnome-tab-button-background: rgba(0, 0, 0, .5);
--gnome-tab-button-hover-background: rgba(0, 0, 0, .6);
--gnome-tabbar-tab-identity-base-opacity: 0;
}
/* Private window colors */
:root {
--gnome-private-accent: #71A1DB;
/* Toolbars */
--gnome-private-toolbar-background: #1C2438;
--gnome-private-inactive-toolbar-background: var(--gnome-private-toolbar-background);
/* Menus */
--gnome-private-menu-background: #252F49;
/* Header bar */
--gnome-private-headerbar-background: #252F49;
--gnome-private-inactive-headerbar-background: var(--gnome-private-toolbar-background);
/* Text color for Firefox Logo in new private tab */
--gnome-private-wordmark: #FBFBFE;
/* New private tab background */
--gnome-private-in-content-page-background: #1C2438;
/* Private browsing info box */
--gnome-private-text-primary-color: #FBFBFE;
}
}

View File

@@ -0,0 +1,114 @@
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* Variables that start with --gnome- are added by me and are assigned
* to elements somewhere in this code. The rest of the variables are
* built-in in Firefox, so you need to add an !important if you wanna
* override them. */
:root {
/* Browser area before a page starts loading */
--gnome-browser-before-load-background: #F7F7F7;
/* Accent */
--gnome-accent-bg: #5b9bf8;
--gnome-accent: #3c84f7;
/* Toolbars */
--gnome-toolbar-background: #f2f2f2;
--gnome-toolbar-color: rgb(46, 52, 54);
--gnome-toolbar-border-color: rgba(0, 0, 0, .15);
--gnome-toolbar-icon-fill: #2e3436;
--gnome-inactive-toolbar-background: #fafafa;
--gnome-inactive-toolbar-color: #d5d0cc;
--gnome-inactive-toolbar-border-color: #DCDCDC;
--gnome-inactive-toolbar-icon-fill: #929595;
/* Sidebar */
--gnome-sidebar-background: var(--gnome-toolbar-background);
--gnome-inactive-sidebar-background: var(--gnome-sidebar-background);
/* Menu */
--gnome-menu-background: #ffffff;
--gnome-menu-border-color: rgba(0, 0, 0, .14);
--gnome-menu-shadow: 0 1px 5px 1px rgba(0,0,0, .09), 0 2px 14px 3px rgba(0,0,0, .05);
--gnome-menu-button-hover-background: var(--gnome-button-background);
--gnome-menu-separator-color: rgba(0, 0, 0, 0.1);
/* Header bar */
--gnome-headerbar-background: #EBEBEB;
--gnome-headerbar-border-color: var(--gnome-toolbar-border-color);
--gnome-inactive-headerbar-background: var(--gnome-inactive-toolbar-background);
--gnome-inactive-headerbar-border-color: var(--gnome-inactive-toolbar-border-color);
/* Buttons */
--gnome-button-background: rgba(0, 0, 0, .08);
--gnome-button-hover-background: rgba(0, 0, 0, .12);
--gnome-button-active-background: rgba(0, 0, 0, .24);
--gnome-button-flat-hover-background: rgba(0, 0, 0, .056);
--gnome-button-flat-active-background: rgba(0, 0, 0, .128);
--gnome-button-suggested-action-background: var(--gnome-accent-bg);
--gnome-button-destructive-action-background: #e01b24;
--gnome-button-close-background: var(--gnome-button-flat-hover-background);
--gnome-button-hover-close-background:var(--gnome-button-hover-background);
--gnome-button-active-close-background: var(--gnome-button-active-background);
/* TitleButtons */
--gnome-titlebutton-min-background: #fdbe04;
--gnome-titlebutton-max-background: #38c76a;
--gnome-titlebutton-close-background: #fd5f51;
--gnome-titlebutton-min-hover-background: #fdbe04;
--gnome-titlebutton-max-hover-background: #38c76a;
--gnome-titlebutton-close-hover-background: #fd5f51;
--gnome-titlebutton-min-active-background: #fdcd43;
--gnome-titlebutton-max-active-background: #6ad48e;
--gnome-titlebutton-close-active-background: #fb857c;
/* Entries */
--gnome-entry-background: rgba(0, 0, 0, .08);
--gnome-entry-color: #303030;
--gnome-inactive-entry-color: #303030;
--gnome-focused-urlbar-border-color: rgba(28, 113, 216, .5);
/* Switch */
--gnome-switch-background: rgba(0, 0, 0, .12);
--gnome-switch-slider-background: #ffffff;
--gnome-switch-active-background: var(--gnome-accent-bg);
--gnome-switch-active-slider-background: #ffffff;
/* Tabs */
--gnome-tabbar-tab-background: #eeeeee;
--gnome-tabbar-tab-border-color: var(--gnome-toolbar-border-color);
--gnome-tabbar-tab-hover-background: #dedede;
--gnome-tabbar-tab-active-background: #ffffff;
--gnome-tabbar-tab-active-background-contrast: #FAFAFA;
--gnome-tabbar-tab-active-hover-background: #fafafa;
--gnome-inactive-tabbar-tab-background: #EFEFEF;
--gnome-inactive-tabbar-tab-active-background: #FAFAFA;
--gnome-tab-button-background: rgba(255, 255, 255, .5);
--gnome-tab-button-hover-background: rgba(255, 255, 255, .6);
--gnome-tabbar-tab-identity-base-opacity: .1;
}
/* Private window colors */
:root {
--gnome-private-accent: #272F42;
/* Toolbars */
--gnome-private-toolbar-background: #EAF0F7;
--gnome-private-inactive-toolbar-background: var(--gnome-private-toolbar-background);
/* Menus */
--gnome-private-menu-background: #D7E3F0;
/* Header bar */
--gnome-private-headerbar-background: #D7E3F0;
--gnome-private-inactive-headerbar-background: var(--gnome-private-toolbar-background);
/* Text color for Firefox Logo in new private tab */
--gnome-private-wordmark: #20123A;
/* New private tab background */
--gnome-private-in-content-page-background: #EAF0F7;
/* Private browsing info box */
--gnome-private-text-primary-color: #15141A;
}

View File

@@ -0,0 +1,7 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#6e6e6e; } .ColorScheme-Highlight { color:#5294e2; }</style>
</defs>
<path d="m7 0c-1.108 0-2 0.892-2 2v1h-2.1543c-1.0228 0-1.8457 0.82293-1.8457 1.8457v3.1543h2c0.554 0 1 0.446 1 1s-0.446 1-1 1h-2v3.1543c0 1.0228 0.82293 1.8457 1.8457 1.8457h3.1543v-2c0-0.554 0.446-1 1-1s1 0.446 1 1v2h3.1543c1.0228 0 1.8457-0.82293 1.8457-1.8457v-2.1543h1c1.108 0 2-0.892 2-2s-0.892-2-2-2h-1v-2.1543c0-1.0228-0.82293-1.8457-1.8457-1.8457h-2.1543v-1c0-1.108-0.892-2-2-2zm0 1c0.554 0 1 0.446 1 1v2h3c0.554 0 1 0.446 1 1v3h2c0.554 0 1 0.446 1 1s-0.446 1-1 1h-2v3c0 0.554-0.446 1-1 1h-2v-1c0-1.108-0.892-2-2-2s-2 0.892-2 2v1h-2c-0.554 0-1-0.446-1-1v-2h1c1.108 0 2-0.892 2-2s-0.892-2-2-2h-1v-2c0-0.554 0.446-1 1-1h3v-2c0-0.554 0.446-1 1-1z" fill="#363636" opacity=".35"/>
<rect transform="rotate(45)" x="1.3137" y="-.5" width="20" height="1" rx="0" ry="0" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".86" stroke-width="2.2361"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<metadata>
<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:Work>
</rdf:RDF>
</metadata>
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#6e6e6e; } .ColorScheme-Highlight { color:#5294e2; }</style>
</defs>
<path d="m7 0c-1.108 0-2 0.892-2 2v1h-2.1543c-1.0228 0-1.8457 0.82293-1.8457 1.8457v2.1543 1h2c0.554 0 1 0.446 1 1s-0.446 1-1 1h-2v1 2.1543c0 1.0228 0.82293 1.8457 1.8457 1.8457h2.1543 1v-2c0-0.554 0.446-1 1-1s1 0.446 1 1v2h1 2.1543c1.0228 0 1.8457-0.82293 1.8457-1.8457v-2.1543h1c1.108 0 2-0.892 2-2s-0.892-2-2-2h-1v-2.1543c0-1.0228-0.82293-1.8457-1.8457-1.8457h-2.1543v-1c0-1.108-0.892-2-2-2zm0 1c0.554 0 1 0.446 1 1v2h1 2c0.554 0 1 0.446 1 1v2 1h2c0.554 0 1 0.446 1 1s-0.446 1-1 1h-2v1 2c0 0.554-0.446 1-1 1h-2v-1c0-1.108-0.892-2-2-2s-2 0.892-2 2v1h-2c-0.554 0-1-0.446-1-1v-2h1c1.108 0 2-0.892 2-2s-0.892-2-2-2h-1v-2c0-0.554 0.446-1 1-1h2 1v-2c0-0.554 0.446-1 1-1z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m11.02 0.53711a1.0001 1.0001 0 0 0-0.58984 0.19336c-0.89811 0.65868-1.4296 1.7085-1.4297 2.8223 0.00118 1.3259 0.86654 2.3529 2 2.9434v1.1797a7 7 0 0 1 1 0.58008v-2.2559c-1.1632-0.23743-1.9989-1.2601-2-2.4473 9.8e-5 -0.7962 0.37943-1.5447 1.0215-2.0156-4e-3 0.036332-0.021484 0.068046-0.021484 0.10547v2c0 0.554 0.446 1 1 1h1c0.554 0 1-0.446 1-1v-2c0-0.037422-0.017524-0.069136-0.021484-0.10547 0.64204 0.47088 1.0214 1.2194 1.0215 2.0156-1.29e-4 1.1879-0.83612 2.2116-2 2.4492v3.0996a7 7 0 0 1 1 1.2949v-3.9004c1.134-0.59095 1.9999-1.6166 2-2.9434-1.38e-4 -1.1138-0.53157-2.1636-1.4297-2.8223a1.0001 1.0001 0 0 0-1.5859 0.91602c0.01271 0.11643 0.014165 0.1478 0.015625 0.16797v1.8281h-1v-1.8281c0.0015-0.020168 0.002895-0.051534 0.015625-0.16797a1.0001 1.0001 0 0 0-0.99609-1.1094zm-3.0195 7.4629a6 6 0 0 0-6 6h-2v1h16v-1h-2a6 6 0 0 0-6-6zm0 1a5 5 0 0 1 5 5h-1a4 4 0 0 0-4-4 4 4 0 0 0-0.060547 0 4 4 0 0 0-3.9395 4h-1a5 5 0 0 1 5-5zm-0.052734 2a3 3 0 0 1 0.0019532 0 3 3 0 0 1 0.050781 0 3 3 0 0 1 3 3h-6a3 3 0 0 1 2.9473-3z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
viewBox="0 0 4.2333 4.2333"
id="svg10"
sodipodi:docname="audio-muted-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs14" />
<sodipodi:namedview
id="namedview12"
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="7.9661017"
inkscape:cy="8"
inkscape:window-width="960"
inkscape:window-height="600"
inkscape:window-x="25"
inkscape:window-y="59"
inkscape:window-maximized="0"
inkscape:current-layer="svg10" />
<g
transform="matrix(0.26458125,0,0,0.26458125,0,-1.2677146e-4)"
fill="#363636"
opacity="0.35"
id="g404">
<rect
y="6"
width="5"
height="4"
ry="1"
fill-rule="evenodd"
id="rect392"
x="0" />
<path
d="M 6,3 3,6 v 4 l 3,3 z"
id="path394" />
<g
fill-rule="evenodd"
id="g402">
<path
d="M 13.139,1.428 C 12.594,1 12,1.652 12.455,2.16 A 8,8 0 0 1 15,8 8,8 0 0 1 12.446,13.852 C 12,14.323 12.626,15 13.123,14.58 A 9,9 0 0 0 16,8 9,9 0 0 0 13.139,1.428 Z"
id="path396" />
<path
d="M 10.775,2.889 C 10.188,2.354 9.576,3.114 10.091,3.621 A 6,6 0 0 1 12,8 6,6 0 0 1 10.084,12.389 c -0.469,0.446 0.173,1.146 0.68,0.728 A 7,7 0 0 0 13,8 7,7 0 0 0 10.775,2.889 Z"
id="path398" />
<path
d="M 8.41,4.35 C 7.89,3.856 7.255,4.57 7.727,5.08 A 4,4 0 0 1 9,8 4,4 0 0 1 7.723,10.926 c -0.473,0.43 0.14,1.152 0.68,0.73 A 5,5 0 0 0 10,8 5,5 0 0 0 8.41,4.35 Z"
id="path400" />
</g>
</g>
<rect
transform="rotate(45)"
x="0.34758037"
y="-0.13229063"
width="5.291625"
height="0.26458126"
rx="0.13229063"
ry="0.13229063"
fill="#363636"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0.127811"
style="paint-order:markers stroke fill"
id="rect406" />
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
id="svg10"
sodipodi:docname="audio-playing-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs14" />
<sodipodi:namedview
id="namedview12"
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="7.9661017"
inkscape:cy="8"
inkscape:window-width="960"
inkscape:window-height="600"
inkscape:window-x="25"
inkscape:window-y="59"
inkscape:window-maximized="0"
inkscape:current-layer="svg10" />
<g
transform="translate(0,-4.7914e-4)"
fill="#363636"
id="g14">
<rect
y="6"
width="5"
height="4"
ry="1"
fill-rule="evenodd"
id="rect2"
x="0" />
<path
d="M 6,3 3,6 v 4 l 3,3 z"
id="path4" />
<g
fill-rule="evenodd"
id="g12">
<path
d="M 13.139,1.428 C 12.594,1 12,1.652 12.455,2.16 A 8,8 0 0 1 15,8 8,8 0 0 1 12.446,13.852 C 12,14.323 12.626,15 13.123,14.58 A 9,9 0 0 0 16,8 9,9 0 0 0 13.139,1.428 Z"
id="path6" />
<path
d="M 10.775,2.889 C 10.188,2.354 9.576,3.114 10.091,3.621 A 6,6 0 0 1 12,8 6,6 0 0 1 10.084,12.389 c -0.469,0.446 0.173,1.146 0.68,0.728 A 7,7 0 0 0 13,8 7,7 0 0 0 10.775,2.889 Z"
id="path8" />
<path
d="M 8.41,4.35 C 7.89,3.856 7.255,4.57 7.727,5.08 A 4,4 0 0 1 9,8 4,4 0 0 1 7.723,10.926 c -0.473,0.43 0.14,1.152 0.68,0.73 A 5,5 0 0 0 10,8 5,5 0 0 0 8.41,4.35 Z"
id="path10" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m7.9062 1a7 7 0 0 0-6.9062 7 7 7 0 0 0 7 7 7 7 0 0 0 6.9277-6h-1.0117a6 6 0 0 1-5.916 5 6 6 0 0 1-6-6 6 6 0 0 1 6-6h2l-1.8281 1.8281 0.70703 0.70703 2.8281-2.8281-0.70703-0.70703h-3a7 7 0 0 0-0.09375 0zm-1.4238 4a0.50005 0.50005 0 0 0-0.48242 0.5v5a0.50005 0.50005 0 0 0 0.76562 0.42383l4-2.5a0.50005 0.50005 0 0 0 0-0.84766l-4-2.5a0.50005 0.50005 0 0 0-0.2832-0.076172z" fill="#363636" opacity=".35" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".86" stroke-width="2"/>
<rect transform="rotate(45)" x="1.3137" y="-.5" width="20" height="1" rx="0" ry="0" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 709 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m7.9062 1a7 7 0 0 0-6.9062 7 7 7 0 0 0 7 7 7 7 0 0 0 6.9277-6h-1.0117a6 6 0 0 1-5.916 5 6 6 0 0 1-6-6 6 6 0 0 1 6-6h2l-1.8281 1.8281 0.70703 0.70703 2.8281-2.8281-0.70703-0.70703h-3a7 7 0 0 0-0.09375 0zm-1.4238 4a0.50005 0.50005 0 0 0-0.48242 0.5v5a0.50005 0.50005 0 0 0 0.76562 0.42383l4-2.5a0.50005 0.50005 0 0 0 0-0.84766l-4-2.5a0.50005 0.50005 0 0 0-0.2832-0.076172z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".86" stroke-width="2"/>
</svg>

After

Width:  |  Height:  |  Size: 593 B

View File

@@ -0,0 +1,9 @@
<svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<path class="ColorScheme-Text" d="m3 1c-1.108 0-2 0.892-2 2v10c0 1.108 0.892 2 2 2h5.7617a4.5 4.5 0 0 1-0.49805-1h-5.2637c-0.554 0-1-0.446-1-1v-8c0-0.554 0.446-1 1-1h10c0.554 0 1 0.446 1 1v3.2637a4.5 4.5 0 0 1 1 0.49609v-5.7598c0-1.108-0.892-2-2-2h-10z" fill="currentColor"/>
<path class="ColorScheme-Text" d="m14.975 10.025c-1.3668-1.3668-3.5829-1.3668-4.9497 0-1.3668 1.3668-1.3668 3.5829 0 4.9497 1.3668 1.3668 3.5829 1.3668 4.9497 0 1.3668-1.3668 1.3668-3.5829 0-4.9497zm-1.0607 0.35355 0.70711 0.70711-1.4142 1.4142 1.4142 1.4142-0.70711 0.70711-1.4142-1.4142-1.4142 1.4142-0.70711-0.70711 1.4142-1.4142-1.4142-1.4142 0.70711-0.70711 1.4142 1.4142z" fill="#ff8080"/>
</svg>

After

Width:  |  Height:  |  Size: 883 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m4.8008 0s-0.43146-0.012793-0.87695 0.22852c-0.44549 0.24131-0.92383 0.89765-0.92383 1.6387v12.133a1.0001 1.0001 0 0 0 1.5449 0.83789l3.4551-2.2461 3.4551 2.2461a1.0001 1.0001 0 0 0 1.5449-0.83789v-12.133s0.01489-0.40654-0.19141-0.85352c-0.2063-0.44698-0.84826-1.0137-1.6094-1.0137h-6.3984zm0 1h6.3984c0.8 0 0.80078 0.86719 0.80078 0.86719v12.133l-4-2.5996-4 2.5996v-12.133c0-0.86667 0.80078-0.86719 0.80078-0.86719z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill="#363636" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="14"
width="14"
version="1.1"
id="svg442"
sodipodi:docname="bullet-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs446" />
<sodipodi:namedview
id="namedview444"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="16.857143"
inkscape:cx="6.9703389"
inkscape:cy="6.9999999"
inkscape:window-width="960"
inkscape:window-height="600"
inkscape:window-x="25"
inkscape:window-y="59"
inkscape:window-maximized="0"
inkscape:current-layer="svg442" />
<g
style="display:inline;fill:#333333"
id="g440">
<path
d="M388 342c-2.207 0-4 1.793-4 4s1.793 4 4 4c2.208 0 4-1.793 4-4s-1.792-4-4-4z"
transform="translate(-381 -339)"
fill="context-fill"
stroke="context-stroke"
fill-opacity="context-fill-opacity"
stroke-opacity="context-stroke-opacity"
id="path438"
style="fill:#333333" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<metadata>
<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:Work>
</rdf:RDF>
</metadata>
<g fill="#363636" stroke-linecap="round" stroke-linejoin="round">
<path d="m3 1c-1.108 0-2 0.892-2 2v10c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-10c0-1.108-0.892-2-2-2h-10zm0 1h10c0.554 0 1 0.446 1 1v10c0 0.554-0.446 1-1 1h-10c-0.554 0-1-0.446-1-1v-10c0-0.554 0.446-1 1-1z"/>
<path d="m6 9c-0.554 0-1 0.446-1 1v1c0 0.554 0.446 1 1 1h4c0.554 0 1-0.446 1-1v-1c0-0.554-0.446-1-1-1zm0 1h4v1h-4z"/>
<path d="m5 7v1h5v2h1v-2c0-0.554-0.446-1-1-1z"/>
<rect transform="rotate(-30)" x="2.1603" y="7.5981" width="5" height="1" rx="0" ry="0" stroke-width=".91287"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,5 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb">
<rect y="6.1719e-7" width="16" height="16" color="#000000" fill="none"/>
<path d="m3 1c-1.108 0-2 0.892-2 2v10c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-10c0-1.108-0.892-2-2-2h-10zm8.2773 3.8438c0.25562 0 0.51116 0.097101 0.70703 0.29297 0.39174 0.39174 0.39174 1.0223 0 1.4141l-4.2422 4.2422c-0.39173 0.39173-0.99323 0.42083-1.3496 0.064453l-0.064453-0.064453-2.1855-2.1836c-0.35633-0.35637-0.32729-0.95983 0.064453-1.3516 0.39173-0.39173 0.99323-0.41888 1.3496-0.0625l1.4785 1.4766 3.5352-3.5352c0.19587-0.19587 0.45141-0.29297 0.70703-0.29297z" color="#000000" fill="#474747" style="paint-order:fill markers stroke"/>
<rect transform="rotate(45)" x="8.1066" y="1.1569" width="3" height="1" fill-opacity="0"/>
</svg>

After

Width:  |  Height:  |  Size: 857 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
<path d="M3.5 1A2.506 2.506 0 0 0 1 3.5v9C1 13.876 2.124 15 3.5 15h9c1.376 0 2.5-1.124 2.5-2.5v-9C15 2.124 13.876 1 12.5 1zm0 1h9c.84 0 1.5.66 1.5 1.5v9c0 .84-.66 1.5-1.5 1.5h-9c-.84 0-1.5-.66-1.5-1.5v-9C2 2.66 2.66 2 3.5 2z" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;shape-padding:0;isolation:auto;mix-blend-mode:normal;marker:none" color="#000" font-weight="400" font-family="sans-serif" white-space="normal" overflow="visible" fill="#474747"/>
</svg>

After

Width:  |  Height:  |  Size: 833 B

View File

@@ -0,0 +1,12 @@
<svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<g transform="translate(-.20339 -.13559)">
<path d="m9.6176 6.7214c-0.12118-0.12118-0.25154-0.22665-0.38947-0.31763l-0.73473 0.73473c0.14934 0.07242 0.2917 0.16462 0.41709 0.29001 0.59372 0.59372 0.59372 1.5276 0 2.1213l-2.1213 2.1213c-0.59372 0.59372-1.5276 0.59372-2.1213 0-0.59372-0.59372-0.59372-1.5276 0-2.1213l0.60491-0.60491c-0.13649-0.39092-0.21105-0.79819-0.20578-1.2084l-1.1062 1.1062c-0.97323 0.97323-0.97323 2.5623 0 3.5355 0.97323 0.97323 2.5623 0.97323 3.5355 0l2.1213-2.1213c0.97323-0.97323 0.97323-2.5623 0-3.5355z" style="fill:currentColor" class="ColorScheme-Text"/>
<path d="m6.7892 9.5498c0.12118 0.12118 0.25154 0.22665 0.38948 0.31763l0.73473-0.73473c-0.14934-0.07241-0.29166-0.16466-0.41705-0.29006-0.59372-0.59372-0.59372-1.5276 0-2.1213l2.1213-2.1213c0.59372-0.59372 1.5276-0.59372 2.1213 0 0.59372 0.59372 0.59372 1.5276 0 2.1213l-0.60491 0.60491c0.13649 0.39092 0.21105 0.79819 0.20578 1.2084l1.1062-1.1062c0.97323-0.97323 0.97323-2.5623 0-3.5355-0.97323-0.97323-2.5623-0.97323-3.5355 0l-2.1213 2.1213c-0.97323 0.97323-0.97323 2.5623 0 3.5355z" style="fill:currentColor" class="ColorScheme-Text"/>
</g>
<path d="m8 0a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 1a7 7 0 0 1 7 7 7 7 0 0 1-7 7 7 7 0 0 1-7-7 7 7 0 0 1 7-7z" style="fill:currentColor" class="ColorScheme-Text"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m2 0c-1.108 0-2 0.892-2 2v8c0 1.108 0.892 2 2 2h7c1.108 0 2-0.892 2-2v-8c0-1.108-0.892-2-2-2h-7zm0 1h7c0.554 0 1 0.446 1 1v8c0 0.554-0.446 1-1 1h-7c-0.554 0-1-0.446-1-1v-8c0-0.554 0.446-1 1-1z" fill="#363636"/>
<path d="m12 4v1h1c0.554 0 1 0.446 1 1v8c0 0.554-0.446 1-1 1h-7c-0.554 0-1-0.446-1-1v-1h-1v1c0 1.108 0.892 2 2 2h7c1.108 0 2-0.892 2-2v-8c0-1.108-0.892-2-2-2h-1z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 511 B

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m13.418 3.01a1.99 1.99 0 0 0-0.55 0.65 7.27 7.27 0 0 1-0.206 0.375c-0.076 0.136-0.168 0.296-0.275 0.494a10.953 10.953 0 0 1-1.14 1.712c-4e-3 4e-3 -0.32 0.365-0.669 0.677-1.953-0.838-5.151-2.203-5.46-2.281-0.459-0.116-0.897 0.21-0.916 0.223l-0.202 0.152 0.216 0.13 4.708 2.858-4.708 2.857-0.216 0.13 0.202 0.152c0.019 0.014 0.457 0.338 0.917 0.223 0.305-0.076 3.506-1.443 5.459-2.282 0.35 0.315 0.664 0.675 0.667 0.678 6e-3 7e-3 0.579 0.678 1.142 1.714 0.107 0.197 0.199 0.359 0.277 0.494 0.085 0.152 0.154 0.271 0.205 0.373 0.099 0.195 0.305 0.473 0.549 0.652a1.627 1.627 0 0 0 2.27-0.349c0.204-0.28 0.312-0.61 0.312-0.956 0-0.512-0.245-1.002-0.657-1.31a1.568 1.568 0 0 0-0.57-0.268c-0.154-0.056-0.27-0.074-0.394-0.095-0.184-0.032-0.392-0.067-0.81-0.234-0.813-0.326-1.493-0.93-1.504-0.943-0.198-0.164-0.391-0.454-0.561-0.836 0.17-0.383 0.363-0.672 0.565-0.843 7e-3 -4e-3 0.685-0.608 1.5-0.935 0.418-0.168 0.626-0.204 0.81-0.234 0.123-0.02 0.24-0.041 0.378-0.09 0.207-0.05 0.41-0.145 0.59-0.275 0.41-0.308 0.653-0.796 0.653-1.308a1.6 1.6 0 0 0-0.312-0.956 1.625 1.625 0 0 0-2.27-0.35m1.066 0.617a0.705 0.705 0 0 1 0.595 0.691 0.706 0.706 0 0 1-0.287 0.568 0.693 0.693 0 0 1-0.522 0.127 0.69 0.69 0 0 1-0.457-0.279 0.702 0.702 0 0 1 0.671-1.107m-4.69 4.374m4.998 3.117a0.7 0.7 0 0 1-0.308 1.256 0.693 0.693 0 0 1-0.522-0.127 0.705 0.705 0 0 1-0.15-0.98 0.7 0.7 0 0 1 0.98-0.15" fill="#363636"/>
<path d="m3 1c-1.108 0-2 0.892-2 2v10c0 1.108 0.892 2 2 2h7c1.108 0 2-0.892 2-2v-1h-1v1c0 0.554-0.446 1-1 1h-7c-0.554 0-1-0.446-1-1v-10c0-0.554 0.446-1 1-1h7c0.554 0 1 0.446 1 1v1h1v-1c0-1.108-0.892-2-2-2h-7z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="rotate(45 7.7071 8.7071)" fill="#363636">
<path d="m6 3a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5zm0 1a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4z"/>
<rect x="10" y="7.5" width="7" height="1" stroke-width=".93541"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 377 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m8 0c-1.1046 0-2 0.89543-2 2h-1-0.93945-0.060547v0.0058594c-1.113 0.032581-2 0.93345-2 2.0547v8.8789c0 1.142 0.91853 2.0605 2.0605 2.0605h7.8789c1.142 0 2.0605-0.91853 2.0605-2.0605v-8.8789c0-1.142-0.91853-2.0605-2.0605-2.0605h-0.93945-1c0-0.138-0.00525-0.27625-0.03125-0.40625-0.19615-0.93036-1.0179-1.5956-1.9688-1.5938zm-0.011719 1c0.0039062-2.289e-5 0.0078126-2.289e-5 0.011719 0 0.414 0 0.75425 0.266 0.90625 0.625 0.056891 0.11716 0.088816 0.24486 0.09375 0.375-6.1e-5 0.88813-1.0716 1.3352-1.7031 0.71094-0.63157-0.62426-0.19666-1.7005 0.69141-1.7109zm-3.9883 2h1 1v1s-1 0-1 1h6c0-0.75-0.56275-0.953-0.84375-1h-0.15625v-1h1 1c0.554 0 1 0.446 1 1v9c0 0.554-0.446 1-1 1h-8c-0.554 0-1-0.446-1-1v-9c0-0.554 0.446-1 1-1z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 860 B

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; } .ColorScheme-Text { color:#363636; }</style>
</defs>
<path d="m7.5 0a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5 7.5 7.5 0 0 0 7.5-7.5 7.5 7.5 0 0 0-7.5-7.5zm0 1a6.5 6.5 0 0 1 6.5 6.5 6.5 6.5 0 0 1-6.5 6.5 6.5 6.5 0 0 1-6.5-6.5 6.5 6.5 0 0 1 6.5-6.5zm0 3c-0.277 0-0.5 0.223-0.5 0.5v4.793l-1.2676-1.2676c-0.19587-0.19587-0.51116-0.19587-0.70703 0s-0.19587 0.51116 0 0.70703l2.1211 2.1211c0.047012 0.047012 0.10324 0.084075 0.16602 0.10938 0.12034 0.048967 0.25466 0.048967 0.375 0 0.062778-0.0253 0.119-0.062363 0.16602-0.10938l2.1211-2.1211c0.19587-0.19587 0.19587-0.51116 0-0.70703s-0.51116-0.19587-0.70703 0l-1.2676 1.2676v-4.793c0-0.277-0.223-0.5-0.5-0.5z" style="fill:currentColor" class="ColorScheme-Text"/>
</svg>

After

Width:  |  Height:  |  Size: 916 B

View File

@@ -0,0 +1,7 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path d="m8 0c-2.216 0-4 1.784-4 4v2h1v-2c0-1.662 1.338-3 3-3s3 1.338 3 3v2h1v-2c0-2.216-1.784-4-4-4z" style="fill:currentColor" class="ColorScheme-Text"/>
<path d="m4 6c-1.108 0-2 0.892-2 2v5c0 1.108 0.892 2 2 2h8c1.108 0 2-0.892 2-2v-5c0-1.108-0.892-2-2-2h-8zm0 1h8c0.554 0 1 0.446 1 1v5c0 0.554-0.446 1-1 1h-8c-0.554 0-1-0.446-1-1v-5c0-0.554 0.446-1 1-1z" style="fill:currentColor" class="ColorScheme-Text"/>
</svg>

After

Width:  |  Height:  |  Size: 612 B

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; } .ColorScheme-Text { color:#363636; }</style>
</defs>
<path d="m2 2c-1.108 0-2 0.892-2 2v9c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-8c0-1.108-0.892-2-2-2h-2-5.6289c-0.57985-0.0229-0.60474 0.076886-1.0391-0.35742-0.43381-0.43381-0.61297-0.64213-1.332-0.64258h-2zm0 1h2c0.31116-1.7e-6 0.52033 1.383e-4 0.99805 0.4707 0.47877 0.47161 0.6388 0.5293 1 0.5293h6.002 2c0.554 0 1 0.446 1 1v1h-14v-2c0-0.554 0.446-1 1-1zm-1 4h14v6c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-6z" style="fill:currentColor" class="ColorScheme-Text"/>
</svg>

After

Width:  |  Height:  |  Size: 730 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<g style="fill:currentColor" class="ColorScheme-Text">
<path d="m8 0a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 1a7 7 0 0 1 7 7 7 7 0 0 1-7 7 7 7 0 0 1-7-7 7 7 0 0 1 7-7z"/>
<rect x="8" y="2" width="1" height="7" ry=".5"/>
<rect transform="rotate(90)" x="8" y="-9" width="1" height="6" ry=".5"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 523 B

View File

@@ -0,0 +1,11 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path d="m8 0a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 1a7 7 0 0 1 7 7 7 7 0 0 1-7 7 7 7 0 0 1-7-7 7 7 0 0 1 7-7z" color="#363636" fill="#363636"/>
<rect transform="scale(-1)" x="-8.5" y="-4" width="1" height="4" rx=".5" ry=".5" color="#363636" fill="#363636" stroke-width=".8165"/>
<rect transform="scale(-1)" x="-8.5" y="-16" width="1" height="4" rx=".5" ry=".5" color="#363636" fill="#363636" stroke-width=".8165"/>
<rect transform="rotate(-90)" x="-8.5" y="12" width="1" height="4" rx=".5" ry=".5" color="#363636" fill="#363636" stroke-width=".8165"/>
<rect transform="rotate(-90)" x="-8.5" width="1" height="4" rx=".5" ry=".5" color="#363636" fill="#363636" stroke-width=".8165"/>
<path d="m7.9492 5a3 3 0 0 0-2.9492 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-0.050781 0zm0.0019531 1a2 2 0 0 1 0.048828 0 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 1.9512-2z" fill="#363636" stroke-width="0" style="paint-order:stroke fill markers"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m4.8418 1.8416c-0.12781 0-0.25558 0.04855-0.35352 0.14648-0.19587 0.19587-0.19587 0.51116 0 0.70703l5.3047 5.3047-5.3047 5.3047c-0.19587 0.19587-0.19587 0.51116 0 0.70703 0.19587 0.19587 0.51116 0.19587 0.70703 0l5.6582-5.6582c0.19587-0.19587 0.19587-0.51116 0-0.70703l-5.6582-5.6582c-0.097934-0.097934-0.22571-0.14648-0.35352-0.14648z" fill="#333" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8091"/>
</svg>

After

Width:  |  Height:  |  Size: 515 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m10.159 1.8416c0.12781 0 0.25558 0.04855 0.35352 0.14648 0.19587 0.19587 0.19587 0.51116 0 0.70703l-5.3047 5.3047 5.3047 5.3047c0.19587 0.19587 0.19587 0.51116 0 0.70703-0.19587 0.19587-0.51116 0.19587-0.70703 0l-5.6582-5.6582c-0.19587-0.19587-0.19587-0.51116 0-0.70703l5.6582-5.6582c0.09793-0.097934 0.22571-0.14648 0.35352-0.14648z" fill="#333" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8091"/>
</svg>

After

Width:  |  Height:  |  Size: 513 B

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m12 15c1.108 0 2-0.892 2-2v-10c0-1.108-0.892-2-2-2h-8c-1.108 0-2 0.892-2 2v5.6797a4.3293 4.3293 0 0 1 1-0.2832v-5.3965c0-0.554 0.446-1 1-1h8c0.554 0 1 0.446 1 1v10c0 0.554-0.446 1-1 1h-4.2109a4.3293 4.3293 0 0 1-0.47461 1h4.6855z" fill="#363636"/>
<path d="m7 12.5a3.5 3.5 0 0 1-3.5 3.5 3.5 3.5 0 0 1-3.5-3.5 3.5 3.5 0 0 1 3.5-3.5 3.5 3.5 0 0 1 3.5 3.5zm-1.0859 0-2.5-2.5-0.70703 0.70703 1.293 1.293h-3v1h3l-1.293 1.293 0.70703 0.70703 2.5-2.5z" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 583 B

View File

@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
id="svg12"
sodipodi:docname="info-symbolic-light.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs16" />
<sodipodi:namedview
id="namedview14"
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="0.26366694"
inkscape:cy="6.9991587"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg12">
<inkscape:grid
type="xygrid"
id="grid292" />
</sodipodi:namedview>
<path
d="M 8,0 A 8,8 0 0 0 0,8 8,8 0 0 0 8,16 8,8 0 0 0 16,8 8,8 0 0 0 8,0 Z M 8,1 A 7,7 0 0 1 15,8 7,7 0 0 1 8,15 7,7 0 0 1 1,8 7,7 0 0 1 8,1 Z"
id="path2"
style="color:#363636;fill:#cccccc;fill-opacity:1" />
<circle
cx="8"
cy="12"
r="1"
id="circle6"
style="color:#363636;fill:#cccccc;fill-opacity:1" />
<rect
id="rect346"
width="2"
height="7"
x="7"
y="3"
rx="1"
ry="1"
style="fill:#cccccc;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
id="svg12"
sodipodi:docname="info-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs16" />
<sodipodi:namedview
id="namedview14"
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="0.26366694"
inkscape:cy="6.9991587"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg12">
<inkscape:grid
type="xygrid"
id="grid292" />
</sodipodi:namedview>
<path
d="M 8,0 A 8,8 0 0 0 0,8 8,8 0 0 0 8,16 8,8 0 0 0 16,8 8,8 0 0 0 8,0 Z M 8,1 A 7,7 0 0 1 15,8 7,7 0 0 1 8,15 7,7 0 0 1 1,8 7,7 0 0 1 8,1 Z"
id="path2"
style="color:#363636;fill:#333333;fill-opacity:1" />
<circle
cx="8"
cy="12"
r="1"
id="circle6"
style="color:#363636;fill:#333333;fill-opacity:1" />
<rect
id="rect346"
width="2"
height="7"
x="7"
y="3"
rx="1"
ry="1"
style="fill:#333333;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,302 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16px"
height="16px"
version="1.1"
viewBox="0 0 16 16"
id="svg111"
sodipodi:docname="key-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs115" />
<sodipodi:namedview
id="namedview113"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="10.429825"
inkscape:cx="-9.3481914"
inkscape:cy="8.4373419"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg111">
<inkscape:grid
type="xygrid"
id="grid300" />
</sodipodi:namedview>
<filter
id="a"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix2" />
</filter>
<mask
id="b">
<g
filter="url(#a)"
id="g7">
<path
d="m0 0h16v16h-16z"
fill-opacity=".3"
id="path5" />
</g>
</mask>
<clipPath
id="c">
<path
d="m0 0h1024v800h-1024z"
id="path10" />
</clipPath>
<mask
id="d">
<g
filter="url(#a)"
id="g15">
<path
d="m0 0h16v16h-16z"
fill-opacity=".05"
id="path13" />
</g>
</mask>
<clipPath
id="e">
<path
d="m0 0h1024v800h-1024z"
id="path18" />
</clipPath>
<mask
id="f">
<g
filter="url(#a)"
id="g23">
<path
d="m0 0h16v16h-16z"
fill-opacity=".05"
id="path21" />
</g>
</mask>
<clipPath
id="g">
<path
d="m0 0h1024v800h-1024z"
id="path26" />
</clipPath>
<mask
id="h">
<g
filter="url(#a)"
id="g31">
<path
d="m0 0h16v16h-16z"
fill-opacity=".05"
id="path29" />
</g>
</mask>
<clipPath
id="i">
<path
d="m0 0h1024v800h-1024z"
id="path34" />
</clipPath>
<mask
id="j">
<g
filter="url(#a)"
id="g39">
<path
d="m0 0h16v16h-16z"
fill-opacity=".05"
id="path37" />
</g>
</mask>
<clipPath
id="k">
<path
d="m0 0h1024v800h-1024z"
id="path42" />
</clipPath>
<mask
id="l">
<g
filter="url(#a)"
id="g47">
<path
d="m0 0h16v16h-16z"
fill-opacity=".05"
id="path45" />
</g>
</mask>
<clipPath
id="m">
<path
d="m0 0h1024v800h-1024z"
id="path50" />
</clipPath>
<mask
id="n">
<g
filter="url(#a)"
id="g55">
<path
d="m0 0h16v16h-16z"
fill-opacity=".05"
id="path53" />
</g>
</mask>
<clipPath
id="o">
<path
d="m0 0h1024v800h-1024z"
id="path58" />
</clipPath>
<mask
id="p">
<g
filter="url(#a)"
id="g63">
<path
d="m0 0h16v16h-16z"
fill-opacity=".3"
id="path61" />
</g>
</mask>
<clipPath
id="q">
<path
d="m0 0h1024v800h-1024z"
id="path66" />
</clipPath>
<mask
id="r">
<g
filter="url(#a)"
id="g71">
<path
d="m0 0h16v16h-16z"
fill-opacity=".5"
id="path69" />
</g>
</mask>
<clipPath
id="s">
<path
d="m0 0h1024v800h-1024z"
id="path74" />
</clipPath>
<mask
id="t">
<g
filter="url(#a)"
id="g79">
<path
d="m0 0h16v16h-16z"
fill-opacity=".4"
id="path77" />
</g>
</mask>
<clipPath
id="u">
<path
d="m0 0h1024v800h-1024z"
id="path82" />
</clipPath>
<mask
id="v">
<g
filter="url(#a)"
id="g87">
<path
d="m0 0h16v16h-16z"
fill-opacity=".4"
id="path85" />
</g>
</mask>
<clipPath
id="w">
<path
d="m0 0h1024v800h-1024z"
id="path90" />
</clipPath>
<mask
id="x">
<g
filter="url(#a)"
id="g95">
<path
d="m0 0h16v16h-16z"
fill-opacity=".5"
id="path93" />
</g>
</mask>
<clipPath
id="y">
<path
d="m0 0h1024v800h-1024z"
id="path98" />
</clipPath>
<mask
id="z">
<g
filter="url(#a)"
id="g103">
<path
d="m0 0h16v16h-16z"
fill-opacity=".5"
id="path101" />
</g>
</mask>
<clipPath
id="A">
<path
d="m0 0h1024v800h-1024z"
id="path106" />
</clipPath>
<rect
id="rect507"
width="8"
height="1"
x="8"
y="7"
rx="0.5"
ry="0.5"
style="fill:#333333" />
<rect
id="rect568"
width="1"
height="5"
x="11"
y="7"
rx="0.5"
ry="0.5"
style="fill:#333333" />
<rect
id="rect570"
width="1"
height="5"
x="13"
y="7"
rx="0.5"
ry="0.5"
style="fill:#333333" />
<path
id="path410"
d="M 4.5 3 A 4.5 4.5 0 0 0 0 7.5 A 4.5 4.5 0 0 0 4.5 12 A 4.5 4.5 0 0 0 9 7.5 A 4.5 4.5 0 0 0 4.5 3 z M 4.5 4 A 3.5 3.5 0 0 1 8 7.5 A 3.5 3.5 0 0 1 4.5 11 A 3.5 3.5 0 0 1 1 7.5 A 3.5 3.5 0 0 1 4.5 4 z "
style="fill:#333333" />
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 4.2333 4.2333" xmlns="http://www.w3.org/2000/svg">
<rect x=".52916" y=".26458" width=".26458" height="3.7042" rx=".13229" ry=".13229" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width=".57157" style="paint-order:markers stroke fill"/>
<rect x="1.3229" y=".79374" width=".26458" height="3.1749" rx=".13229" ry=".13229" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width=".52916" style="paint-order:markers stroke fill"/>
<rect x="2.1167" y=".52916" width=".26458" height="3.4396" rx=".13229" ry=".13229" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width=".55078" style="paint-order:markers stroke fill"/>
<rect transform="rotate(-15)" x="2.5415" y="1.6454" width=".26458" height="3.175" rx=".13229" ry=".13229" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width=".52917" style="paint-order:markers stroke fill"/>
</svg>

After

Width:  |  Height:  |  Size: 976 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path class="ColorScheme-Text" d="m2 2c-1.108 0-2 0.892-2 2v8c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-8c0-1.108-0.892-2-2-2zm0 1h12c0.48888 0 0.87448 0.35406 0.96289 0.81641l-6.4238 5.1152c-0.30559 0.24335-0.77254 0.24335-1.0781 0l-6.4238-5.1152c0.088406-0.46235 0.47401-0.81641 0.96289-0.81641zm-1 2.0488 3.7051 2.9512-3.7051 2.9512v-5.9023zm14 0v5.9023l-3.7051-2.9512 3.7051-2.9512zm-9.502 3.584 1.1699 0.93164c0.73087 0.58201 1.9332 0.58201 2.6641 0l1.1699-0.93164 4.4609 3.5508c-0.08841 0.46235-0.47401 0.81641-0.96289 0.81641h-12c-0.48888 0-0.87448-0.35406-0.96289-0.81641l4.4609-3.5508z" color="#363636" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 722 B

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m8 0c-1.662 0-3 1.338-3 3v6c0 1.662 1.338 3 3 3s3-1.338 3-3v-6c0-1.662-1.338-3-3-3zm0 1c1.108 0 2 0.892 2 2v6c0 1.108-0.892 2-2 2s-2-0.892-2-2v-6c0-1.108 0.892-2 2-2z" fill="#363636" stroke-width="1.0954"/>
<path class="ColorScheme-Text" d="m3.5 7c-0.277 0-0.5 0.223-0.5 0.5v1.5c0 2.6008 1.967 4.7248 4.5 4.9746v1.0254h-2c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h5c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5h-2v-1.0254c2.533-0.24983 4.5-2.3738 4.5-4.9746v-1.5c0-0.277-0.223-0.5-0.5-0.5-0.277 0-0.5 0.223-0.5 0.5v1.5c0 2.216-1.784 4-4 4-2.216 0-4-1.784-4-4v-1.5c0-0.277-0.223-0.5-0.5-0.5z" color="#ffffff" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 724 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m8 1a1 1 0 0 0-0.994 1.1 4.988 4.988 0 0 0-4.006 4.9v4.5l-2 2v0.5h14v-0.5l-2-2v-4.5a4.987 4.987 0 0 0-4.006-4.9 1 1 0 0 0-0.994-1.1zm0 2a4 4 0 0 1 4 4v4.922l1 1.078h-10l1-1.078v-4.922a4 4 0 0 1 4-4zm-1.73 12a2 2 0 0 0 1.73 1 2 2 0 0 0 1.729-1z" fill="#363636" stroke-linecap="round" stroke-width="3"/>
</svg>

After

Width:  |  Height:  |  Size: 397 B

View File

@@ -0,0 +1,9 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<path class="ColorScheme-Text" d="m2 2c-1.108 0-2 0.892-2 2v9c0 1.108 0.892 2 2 2h7.6777a4.5 4.5 0 0 1-0.91602-1h-6.7617c-0.554 0-1-0.446-1-1v-6h14v0.75977a4.5 4.5 0 0 1 1 0.91406v-3.6738c0-1.108-0.892-2-2-2h-7.6289c-0.57985-0.0229-0.6047 0.076884-1.0391-0.35742-0.43381-0.43381-0.613-0.64213-1.332-0.64258h-2zm0 1h2c0.31116-1.7e-6 0.52033 1.414e-4 0.99805 0.4707 0.47877 0.47161 0.6388 0.5293 1 0.5293h8.002c0.554 0 1 0.446 1 1v1h-14v-2c0-0.554 0.446-1 1-1z" fill="currentColor"/>
<path d="m12.5 8a3.5 3.5 0 0 0-3.5 3.5 3.5 3.5 0 0 0 3.5 3.5 3.5 3.5 0 0 0 3.5-3.5 3.5 3.5 0 0 0-3.5-3.5zm0 1.0859 2.5 2.5-0.70703 0.70703-1.293-1.293v3h-1v-3l-1.293 1.293-0.70703-0.70703 2.5-2.5z" fill="currentColor" class="ColorScheme-Text"/>
</svg>

After

Width:  |  Height:  |  Size: 941 B

View File

@@ -0,0 +1,7 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#333" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.1909">
<rect x="2" y="4" width="12" height="1" ry=".5"/>
<rect x="2" y="8" width="12" height="1" ry=".5"/>
<rect x="2" y="12" width="12" height="1" ry=".5"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 334 B

View File

@@ -0,0 +1,7 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<circle cx="2" cy="8" r="1" color="#363636"/>
<circle cx="8" cy="8" r="1" color="#363636"/>
<circle cx="14" cy="8" r="1" color="#363636"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 253 B

View File

@@ -0,0 +1,3 @@
<svg width="4.2333mm" height="4.2333mm" version="1.1" viewBox="0 0 4.2333 4.2333" xmlns="http://www.w3.org/2000/svg">
<path d="m1.0563 0c-0.28858 0-0.52917 0.24059-0.52917 0.52917v3.176c0 0.28858 0.24059 0.5271 0.52917 0.5271h2.3833c0.28858 0 0.52917-0.23852 0.52917-0.5271v-1.9632l-1.7441-1.742zm0.00103 0.26458h1.0583v1.0583c0 0.29316 0.23601 0.52917 0.52917 0.52917h1.0583v1.8521c0 0.14658-0.118 0.26458-0.26458 0.26458h-2.3812c-0.14658 0-0.26458-0.118-0.26458-0.26458v-3.175c0-0.14658 0.118-0.26458 0.26458-0.26458zm1.3229 0.26458 1.0583 1.0583h-0.79375c-0.14658 0-0.26458-0.118-0.26458-0.26458z" fill="#363636" stroke-linecap="square" stroke-width=".52917" style="paint-order:fill markers stroke"/>
</svg>

After

Width:  |  Height:  |  Size: 712 B

View File

@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
id="svg3368"
sodipodi:docname="pan-down-symbolic-light.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs3372" />
<sodipodi:namedview
id="namedview3370"
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="7.9661017"
inkscape:cy="8"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg3368" />
<path
d="m 14.158421,5.1709052 c 0,-0.12781 -0.04855,-0.25558 -0.14648,-0.35352 -0.19587,-0.19587 -0.51116,-0.19587 -0.70703,0 L 8.0002119,10.122085 2.6955104,4.8173852 c -0.195869,-0.19587 -0.511159,-0.19587 -0.707029,0 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 5.6582004,5.6581998 c 0.1958701,0.19587 0.5111601,0.19587 0.7070297,0 L 14.011911,5.5244152 c 0.09793,-0.09793 0.14648,-0.22571 0.14648,-0.35352 z"
fill="#333333"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.8091"
id="path3085"
style="fill:#ffffff" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
id="svg3226"
sodipodi:docname="pan-down-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs3230" />
<sodipodi:namedview
id="namedview3228"
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="7.8644068"
inkscape:cy="8"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg3226" />
<path
d="m 14.158421,5.1709052 c 0,-0.12781 -0.04855,-0.25558 -0.14648,-0.35352 -0.19587,-0.19587 -0.51116,-0.19587 -0.70703,0 L 8.0002111,10.122085 2.6955114,4.8173852 c -0.19587,-0.1958701 -0.51116,-0.1958701 -0.70703,0 -0.19587,0.19587 -0.19587,0.51116 0,0.7070299 l 5.6581997,5.6581999 c 0.19587,0.19587 0.51116,0.19587 0.70703,0 L 14.011911,5.5244152 c 0.09793,-0.097934 0.14648,-0.22571 0.14648,-0.35352 z"
fill="#333333"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.8091"
id="path3085" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
id="svg3652"
sodipodi:docname="pan-end-symbolic-light.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs3656" />
<sodipodi:namedview
id="namedview3654"
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="7.9661017"
inkscape:cy="8"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg3652" />
<path
d="m 5.170905,1.8415788 c -0.12781,0 -0.25558,0.04855 -0.35352,0.14648 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 5.3047,5.3046999 -5.3047,5.3047003 c -0.19587,0.19587 -0.19587,0.51116 0,0.70703 0.19587,0.19587 0.51116,0.19587 0.70703,0 l 5.6582,-5.6582003 c 0.19587,-0.19587 0.19587,-0.5111599 0,-0.7070299 l -5.6582,-5.6582 c -0.097934,-0.097934 -0.22571,-0.14648 -0.35352,-0.14648 z"
fill="#333333"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.8091"
id="path3085"
style="fill:#ffffff" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
id="svg3510"
sodipodi:docname="pan-end-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs3514" />
<sodipodi:namedview
id="namedview3512"
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="7.9661017"
inkscape:cy="8"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg3510" />
<path
d="m 5.1709052,1.8415786 c -0.12781,0 -0.25558,0.04855 -0.35352,0.14648 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 5.3046998,5.3047 -5.3046998,5.3047004 c -0.19587,0.19587 -0.19587,0.51116 0,0.70703 0.19587,0.19587 0.51116,0.19587 0.70703,0 L 11.182615,8.3533186 c 0.19587,-0.19587 0.19587,-0.51116 0,-0.70703 l -5.6581998,-5.6582 c -0.097934,-0.097934 -0.22571,-0.14648 -0.35352,-0.14648 z"
fill="#333333"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.8091"
id="path3085" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
id="svg3794"
sodipodi:docname="pan-start-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs3798" />
<sodipodi:namedview
id="namedview3796"
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="7.9661017"
inkscape:cy="8"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg3794" />
<path
d="m 10.829095,1.8415788 c 0.12781,0 0.25558,0.04855 0.35352,0.14648 0.19587,0.19587 0.19587,0.51116 0,0.70703 l -5.3046998,5.3047 5.3046998,5.3047002 c 0.19587,0.19587 0.19587,0.51116 0,0.70703 -0.19587,0.19587 -0.51116,0.19587 -0.70703,0 L 4.8173851,8.3533188 c -0.19587,-0.19587 -0.19587,-0.51116 0,-0.70703 l 5.6581999,-5.6582 c 0.09793,-0.097934 0.22571,-0.14648 0.35352,-0.14648 z"
fill="#333333"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.8091"
id="path3085" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
id="svg3936"
sodipodi:docname="pan-up-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs3940" />
<sodipodi:namedview
id="namedview3938"
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="7.9661017"
inkscape:cy="8"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg3936" />
<path
d="m 1.8415788,10.829095 c 0,0.12781 0.04855,0.25558 0.14648,0.35352 0.19587,0.19587 0.51116,0.19587 0.70703,0 l 5.3047,-5.3047 5.3047002,5.3047 c 0.19587,0.19587 0.51116,0.19587 0.70703,0 0.19587,-0.19587 0.19587,-0.51116 0,-0.70703 l -5.6582002,-5.6582 c -0.19587,-0.19587 -0.51116,-0.19587 -0.70703,0 l -5.6582,5.6582 c -0.09793,0.09793 -0.14648,0.22571 -0.14648,0.35352 z"
fill="#333333"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.8091"
id="path3085" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,8 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<path d="m1.5 4c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h2.5879a1.5 1.5 0 0 1-0.087891-0.5 1.5 1.5 0 0 1 0.085938-0.5h-2.5859zm5.4121 0a1.5 1.5 0 0 1 0.087891 0.5 1.5 1.5 0 0 1-0.085938 0.5h7.5859c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5h-7.5879z" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.3664"/>
<path d="m1.5 11c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h7.5879a1.5 1.5 0 0 1-0.087891-0.5 1.5 1.5 0 0 1 0.085938-0.5h-7.5859zm10.412 0a1.5 1.5 0 0 1 0.087891 0.5 1.5 1.5 0 0 1-0.085938 0.5h2.5859c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5h-2.5879z" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.3664"/>
<path d="m5.5 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5zm0 1a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5z" stroke-linecap="square" stroke-width="2"/>
<path d="m10.5 9a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5zm0 1a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5z" stroke-linecap="square" stroke-width="2"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path class="ColorScheme-Text" d="m6.127 0.25972c-0.064351-0.008882-0.13038-0.004251-0.19727 0.013672-0.26756 0.071693-0.42521 0.34377-0.35352 0.61133l0.13672 0.50977a7 7 0 0 0-1.1719 0.5293c-0.013468 0.00627-0.027897 0.0061-0.041016 0.013672-0.01342 0.00775-0.020785 0.02055-0.033203 0.029297a7 7 0 0 0-1.0449 0.74805l-0.37109-0.37109c-0.19587-0.19587-0.51116-0.19587-0.70703 0s-0.19587 0.51116 0 0.70703l0.36914 0.36914a7 7 0 0 0-0.77539 1.0801 7 7 0 0 0-0.54883 1.2109l-0.50391-0.13477c-0.26756-0.071693-0.53964 0.085954-0.61133 0.35352s0.085954 0.53964 0.35352 0.61133l0.50586 0.13672a7 7 0 0 0-0.00195 2.6465l-0.50391 0.13477c-0.26756 0.071693-0.42521 0.34377-0.35352 0.61133 0.071693 0.26756 0.34377 0.42521 0.61133 0.35352l0.50977-0.13672a7 7 0 0 0 1.3203 2.291l-0.37109 0.37109c-0.19587 0.19587-0.19587 0.51116 0 0.70703s0.51116 0.19587 0.70703 0l0.36914-0.36914a7 7 0 0 0 1.0801 0.77539 7 7 0 0 0 1.2109 0.54883l-0.13477 0.50391c-0.071693 0.26756 0.085954 0.53964 0.35352 0.61133 0.26756 0.07169 0.53964-0.08595 0.61133-0.35352l0.13672-0.50586a7 7 0 0 0 2.6465 2e-3l0.13477 0.50391c0.071693 0.26756 0.34377 0.42521 0.61133 0.35352 0.26756-0.07169 0.42521-0.34377 0.35352-0.61133l-0.13672-0.50976a7 7 0 0 0 2.291-1.3203l0.37109 0.37109c0.19587 0.19587 0.51116 0.19587 0.70703 0s0.19587-0.51116 0-0.70703l-0.36914-0.36914a7 7 0 0 0 0.77539-1.0801 7 7 0 0 0 0.54883-1.2109l0.50391 0.13477c0.26756 0.07169 0.53964-0.08595 0.61133-0.35352 0.07169-0.26756-0.08595-0.53963-0.35352-0.61133l-0.50586-0.13672a7 7 0 0 0 0.12695-1.2949c5.42e-4 -0.00958 0.0059-0.017622 0.0059-0.027344 0-0.012518-0.0069-0.022874-0.0078-0.035156a7 7 0 0 0-0.12305-1.2891l0.50391-0.13477c0.26756-0.071693 0.42521-0.34377 0.35352-0.61133s-0.34377-0.42521-0.61133-0.35352l-0.50976 0.13672a7 7 0 0 0-1.3203-2.291l0.37109-0.37109c0.19587-0.19587 0.19587-0.51116 0-0.70703s-0.51116-0.19587-0.70703 0l-0.36914 0.36914a7 7 0 0 0-1.0801-0.77539 7 7 0 0 0-1.2109-0.54883l0.13477-0.50391c0.07169-0.26756-0.08595-0.53964-0.35352-0.61133-0.26762-0.07174-0.53969 0.085907-0.61139 0.35347l-0.13672 0.50586a7 7 0 0 0-2.6465-0.00195l-0.13477-0.50391c-0.05377-0.20067-0.22101-0.34054-0.41406-0.36719zm1.5898 1.7461a6 6 0 0 1 3.2832 0.79883 6 6 0 0 1 2.9727 4.6953h-4.0391a2 2 0 0 0-1.9336-1.5 2 2 0 0 0-0.5332 0.074219l-2.0215-3.5a6 6 0 0 1 2.2715-0.56836zm-3.1367 1.0723 2.0195 3.4961a2 2 0 0 0-0.59961 1.4258 2 2 0 0 0 0.59766 1.4258l-2.0195 3.498a6 6 0 0 1-1.7734-7.9238 6 6 0 0 1 1.7754-1.9219zm3.4199 3.9219a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1zm1.9355 1.5h4.0371a6 6 0 0 1-0.77734 2.5 6 6 0 0 1-7.75 2.4238l2.0195-3.4961a2 2 0 0 0 0.53516 0.072266 2 2 0 0 0 1.9355-1.5z" color="#5d656b" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
version="1.1"
id="svg4832"
sodipodi:docname="preferences-system-time-symbolic-light.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs4836" />
<sodipodi:namedview
id="namedview4834"
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="7.9661017"
inkscape:cy="8"
inkscape:window-width="960"
inkscape:window-height="600"
inkscape:window-x="25"
inkscape:window-y="59"
inkscape:window-maximized="0"
inkscape:current-layer="svg4832" />
<path
d="M 8,0 A 8,8 0 0 0 0,8 8,8 0 0 0 8,16 8,8 0 0 0 16,8 8,8 0 0 0 8,0 Z M 8,1 A 7,7 0 0 1 15,8 7,7 0 0 1 8,15 7,7 0 0 1 1,8 7,7 0 0 1 8,1 Z"
id="path4824"
style="fill:#e6e6e6" />
<rect
x="8"
y="2"
width="1"
height="7"
ry="0.5"
id="rect4826"
style="fill:#e6e6e6" />
<rect
transform="rotate(90)"
x="8"
y="-9"
width="1"
height="6"
ry="0.5"
id="rect4828"
style="fill:#e6e6e6" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,7 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g class="ColorScheme-Text" color="#363636" fill="currentColor">
<path d="m8 0a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 1a7 7 0 0 1 7 7 7 7 0 0 1-7 7 7 7 0 0 1-7-7 7 7 0 0 1 7-7z"/>
<rect x="8" y="2" width="1" height="7" ry=".5"/>
<rect transform="rotate(90)" x="8" y="-9" width="1" height="6" ry=".5"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 420 B

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<path class="ColorScheme-Text" d="m2 3c-1.108 0-2 0.892-2 2v6c0 1.108 0.892 2 2 2h2v-1h-2c-0.554 0-1-0.446-1-1v-6c0-0.554 0.446-1 1-1h12c0.554 0 1 0.446 1 1v6c0 0.554-0.446 1-1 1h-2v1h2c1.108 0 2-0.892 2-2v-6c0-1.108-0.892-2-2-2z" color="#363636"/>
<path class="ColorScheme-Text" d="m5 0c-1.108 0-2.0366 0.8926-2 2v2h1v-2c0-0.554 0.446-1 1-1h6c0.554 0 1.0418 0.44758 1 1v2h1v-2c0-1.108-0.892-2-2-2z" color="#363636"/>
<rect class="ColorScheme-Text" x="5" y="10" width="6" height="1" color="#363636"/>
<rect class="ColorScheme-Text" x="5" y="12" width="6" height="1" color="#363636"/>
<path class="ColorScheme-Text" d="m5 7c-1.108 0-2 0.892-2 2v5c0 1.108 0.892 2 2 2h6c1.108 0 2-0.892 2-2v-5c0-1.108-0.892-2-2-2zm0 1h6c0.554 0 1 0.446 1 1v5c0 0.554-0.446 1-1 1h-6c-0.554 0-1-0.446-1-1v-5c0-0.554 0.446-1 1-1z" color="#363636"/>
<circle class="ColorScheme-Text" cx="13.5" cy="5.5" r=".5" color="#363636"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(.5 -.5)" fill="#333" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.1483">
<rect transform="rotate(45)" x="3.8137" y=".20711" width="15" height="1" ry=".5"/>
<rect transform="rotate(135)" x="-6.7929" y="-11.814" width="15" height="1" ry=".5"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 380 B

View File

@@ -0,0 +1,182 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="17"
height="16"
viewBox="0 0 17 16"
fill="none"
version="1.1"
id="svg6132"
sodipodi:docname="process-working-symbolic-black.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview6134"
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="8.440678"
inkscape:cy="8"
inkscape:window-width="960"
inkscape:window-height="600"
inkscape:window-x="25"
inkscape:window-y="34"
inkscape:window-maximized="0"
inkscape:current-layer="svg6132" />
<defs
id="defs6130">
<pattern
id="pattern0"
patternContentUnits="objectBoundingBox"
width="1"
height="1">
<use
xlink:href="#image0_605_8"
transform="scale(0.0714286)"
id="use6126" />
</pattern>
<image
id="image0_605_8"
width="14"
height="14"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAF3SURBVHgBVZJBTsMwEEVjJ2lpoYpUVXSbdbaIfa7DKYLECbgAB+AkIIFUsSBQZQssGgWJQJ0mtc2fdIJMpNeJ3fn+33aE53kGCGC5/nuE6KeUtfYB9d73/ZXWOpdO81CtI7I8LkEBXkiEupZOg9N/GMNFAA3WGD6BFcizLNt6HJUazeCAapz6Bq7AGQg5me+5jQNORJq/BefcLNM0DWiBwN0Ti/qIPCa3a/BIIqKu68N28PPN9hIiCdFwYBLPhTHmJkkS0batKIpCxHH8d5LvTiwNOvADnsHlYrH4KMvSuKmWy2Xv+Ar2TAPXGq4buOVwu6NT5FTGMehzU+gv8En3RSLUDUTkOgWn4CSKIsn9/nw+lwHHaoHilWu4Ue3gHuLCj/EeYY9kRPdnqqqydCCKxdsBuO0ANJquYEzOSilaYDqbzWhOBOzUwEWhuX/nBLQfiW+TXEdhGB6hR/N1NAH2RI3ksGPBnk+3/+jZddR13Zj/s5PJxP4C9v3NuV90MtwAAAAASUVORK5CYII=" />
</defs>
<rect
x="7.3635931"
y="1.0000049"
width="1.2727425"
height="4.4536157"
rx="0.63635927"
ry="0.63621706"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4201" />
<rect
x="7.3635931"
y="10.54639"
width="1.2727425"
height="4.4536157"
rx="0.63635927"
ry="0.63621706"
opacity="0.4"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4203" />
<rect
transform="matrix(0.8660738,0.49991616,-0.50008381,0.86597701,0,0)"
x="10.288762"
y="-4.0808816"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.05"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4205" />
<rect
transform="matrix(0.8660738,0.49991616,-0.50008381,0.86597701,0,0)"
x="10.288762"
y="5.4660001"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4207" />
<rect
transform="matrix(0.50008384,0.86597699,-0.86607378,0.49991619,0,0)"
x="10.289461"
y="-9.9379177"
width="1.2725292"
height="4.4543624"
rx="0.63625264"
ry="0.63632375"
opacity="0.1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4209" />
<rect
transform="matrix(0.50008384,0.86597699,-0.86607378,0.49991619,0,0)"
x="10.289461"
y="-0.3899329"
width="1.2725292"
height="4.4543624"
rx="0.63625264"
ry="0.63632375"
opacity="0.6"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4211" />
<rect
transform="rotate(90)"
x="7.3482637"
y="-15"
width="1.2724581"
height="4.4546113"
rx="0.63621706"
ry="0.63635927"
opacity="0.15"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4213" />
<rect
transform="rotate(90)"
x="7.3482637"
y="-5.4546113"
width="1.2724581"
height="4.4546113"
rx="0.63621706"
ry="0.63635927"
opacity="0.7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4215" />
<rect
transform="matrix(-0.50008381,0.86597701,-0.8660738,-0.49991616,0,0)"
x="2.2917297"
y="-17.93675"
width="1.2725292"
height="4.4543619"
rx="0.63625264"
ry="0.63632375"
opacity="0.2"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4217" />
<rect
transform="matrix(-0.50008381,0.86597701,-0.8660738,-0.49991616,0,0)"
x="2.2917297"
y="-8.3887653"
width="1.2725292"
height="4.4543619"
rx="0.63625264"
ry="0.63632375"
opacity="0.8"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4219" />
<rect
transform="matrix(-0.8660738,0.49991616,-0.50008381,-0.86597701,0,0)"
x="-3.56458"
y="-17.912498"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.3"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4221" />
<rect
transform="matrix(-0.8660738,0.49991616,-0.50008381,-0.86597701,0,0)"
x="-3.56458"
y="-8.3896513"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.9"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4223" />
</svg>

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@@ -0,0 +1,186 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
version="1.1"
id="svg4400"
sodipodi:docname="process-working-symbolic-light.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview4402"
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="7.9661017"
inkscape:cy="8"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg4400" />
<defs
id="defs4398">
<pattern
id="pattern0"
patternContentUnits="objectBoundingBox"
width="1"
height="1">
<use
xlink:href="#image0_605_19"
transform="scale(0.0714286)"
id="use4394" />
</pattern>
<image
id="image0_605_19"
width="14"
height="14"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHJSURBVHgBZVJLagJBEJ3unoxDFLILKC6yVnDhbQTvootcIFfJBbIIISQkIFkkoln4ISqOH6LOdM+380p6giQFRVX31Kv3qqZZp9PJGEzDKFowpJZJj5YkiZzP5y/T6fQJsbdarT54XnwC0icgTR4EwWqz2Xyu1+s+gQAe8Lw4rzQN8jPLsiwFaLBYLN48z+sB9AGVAc8lnoJ/6WBSyuVsNntcLpf3k8nkDVeqXq8z++98OVOegOlhNBrdNpvNXrvd1t1uV4CVkdR/M+UHsH0Nh8ObVqv1WqvVGACiUqmw7XbLSGpANSQBHiNPyY3M60aj8QxpNuYU5XJZQLZAE26jaGekZggEihF9xPdSqXRXrVbd8XicFQoFy/d9q1gsatwzAu4BSuh3ISr4HkAP2+w7jnMVx7E8wIQQmeu6NEaGo3UEGpYQIB+AHc6ebduUn4dheAkGC8CDUkrDGTWgB0CyDkbyt4kHgKjZGSQWwXoBlhJygXpaKKffIVGkOOcKFwFyWlZI8+KbiKKokKbpORQkNCPAEoypjUJJs5kozZwRLQx36MfPAHLA6iJP8W7pYShiVGa+EEwRLckUaAAY2EieAxZipiVqzKt/AFRdZrrYGKEYAAAAAElFTkSuQmCC" />
</defs>
<g
id="g1262"
style="opacity:0.5;fill:#cccccc">
<rect
x="7.3635931"
y="1.0000049"
width="1.2727425"
height="4.4536157"
rx="0.63635927"
ry="0.63621706"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4201" />
<rect
x="7.3635931"
y="10.54639"
width="1.2727425"
height="4.4536157"
rx="0.63635927"
ry="0.63621706"
opacity="0.4"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4203" />
<rect
transform="matrix(0.8660738,0.49991616,-0.50008381,0.86597701,0,0)"
x="10.288762"
y="-4.0808816"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.05"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4205" />
<rect
transform="matrix(0.8660738,0.49991616,-0.50008381,0.86597701,0,0)"
x="10.288762"
y="5.4660001"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.5"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4207" />
<rect
transform="matrix(0.50008384,0.86597699,-0.86607378,0.49991619,0,0)"
x="10.289461"
y="-9.9379177"
width="1.2725292"
height="4.4543624"
rx="0.63625264"
ry="0.63632375"
opacity="0.1"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4209" />
<rect
transform="matrix(0.50008384,0.86597699,-0.86607378,0.49991619,0,0)"
x="10.289461"
y="-0.3899329"
width="1.2725292"
height="4.4543624"
rx="0.63625264"
ry="0.63632375"
opacity="0.6"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4211" />
<rect
transform="rotate(90)"
x="7.3482637"
y="-15"
width="1.2724581"
height="4.4546113"
rx="0.63621706"
ry="0.63635927"
opacity="0.15"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4213" />
<rect
transform="rotate(90)"
x="7.3482637"
y="-5.4546113"
width="1.2724581"
height="4.4546113"
rx="0.63621706"
ry="0.63635927"
opacity="0.7"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4215" />
<rect
transform="matrix(-0.50008381,0.86597701,-0.8660738,-0.49991616,0,0)"
x="2.2917297"
y="-17.93675"
width="1.2725292"
height="4.4543619"
rx="0.63625264"
ry="0.63632375"
opacity="0.2"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4217" />
<rect
transform="matrix(-0.50008381,0.86597701,-0.8660738,-0.49991616,0,0)"
x="2.2917297"
y="-8.3887653"
width="1.2725292"
height="4.4543619"
rx="0.63625264"
ry="0.63632375"
opacity="0.8"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4219" />
<rect
transform="matrix(-0.8660738,0.49991616,-0.50008381,-0.86597701,0,0)"
x="-3.56458"
y="-17.912498"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.3"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4221" />
<rect
transform="matrix(-0.8660738,0.49991616,-0.50008381,-0.86597701,0,0)"
x="-3.56458"
y="-8.3896513"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.9"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4223" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -0,0 +1,186 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
version="1.1"
id="svg4400"
sodipodi:docname="process-working-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview4402"
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="7.9661017"
inkscape:cy="8"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg4400" />
<defs
id="defs4398">
<pattern
id="pattern0"
patternContentUnits="objectBoundingBox"
width="1"
height="1">
<use
xlink:href="#image0_605_19"
transform="scale(0.0714286)"
id="use4394" />
</pattern>
<image
id="image0_605_19"
width="14"
height="14"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHJSURBVHgBZVJLagJBEJ3unoxDFLILKC6yVnDhbQTvootcIFfJBbIIISQkIFkkoln4ISqOH6LOdM+380p6giQFRVX31Kv3qqZZp9PJGEzDKFowpJZJj5YkiZzP5y/T6fQJsbdarT54XnwC0icgTR4EwWqz2Xyu1+s+gQAe8Lw4rzQN8jPLsiwFaLBYLN48z+sB9AGVAc8lnoJ/6WBSyuVsNntcLpf3k8nkDVeqXq8z++98OVOegOlhNBrdNpvNXrvd1t1uV4CVkdR/M+UHsH0Nh8ObVqv1WqvVGACiUqmw7XbLSGpANSQBHiNPyY3M60aj8QxpNuYU5XJZQLZAE26jaGekZggEihF9xPdSqXRXrVbd8XicFQoFy/d9q1gsatwzAu4BSuh3ISr4HkAP2+w7jnMVx7E8wIQQmeu6NEaGo3UEGpYQIB+AHc6ebduUn4dheAkGC8CDUkrDGTWgB0CyDkbyt4kHgKjZGSQWwXoBlhJygXpaKKffIVGkOOcKFwFyWlZI8+KbiKKokKbpORQkNCPAEoypjUJJs5kozZwRLQx36MfPAHLA6iJP8W7pYShiVGa+EEwRLckUaAAY2EieAxZipiVqzKt/AFRdZrrYGKEYAAAAAElFTkSuQmCC" />
</defs>
<g
id="g1262"
style="opacity:0.5">
<rect
x="7.3635931"
y="1.0000049"
width="1.2727425"
height="4.4536157"
rx="0.63635927"
ry="0.63621706"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4201" />
<rect
x="7.3635931"
y="10.54639"
width="1.2727425"
height="4.4536157"
rx="0.63635927"
ry="0.63621706"
opacity="0.4"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4203" />
<rect
transform="matrix(0.8660738,0.49991616,-0.50008381,0.86597701,0,0)"
x="10.288762"
y="-4.0808816"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.05"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4205" />
<rect
transform="matrix(0.8660738,0.49991616,-0.50008381,0.86597701,0,0)"
x="10.288762"
y="5.4660001"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.5"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4207" />
<rect
transform="matrix(0.50008384,0.86597699,-0.86607378,0.49991619,0,0)"
x="10.289461"
y="-9.9379177"
width="1.2725292"
height="4.4543624"
rx="0.63625264"
ry="0.63632375"
opacity="0.1"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4209" />
<rect
transform="matrix(0.50008384,0.86597699,-0.86607378,0.49991619,0,0)"
x="10.289461"
y="-0.3899329"
width="1.2725292"
height="4.4543624"
rx="0.63625264"
ry="0.63632375"
opacity="0.6"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4211" />
<rect
transform="rotate(90)"
x="7.3482637"
y="-15"
width="1.2724581"
height="4.4546113"
rx="0.63621706"
ry="0.63635927"
opacity="0.15"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4213" />
<rect
transform="rotate(90)"
x="7.3482637"
y="-5.4546113"
width="1.2724581"
height="4.4546113"
rx="0.63621706"
ry="0.63635927"
opacity="0.7"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4215" />
<rect
transform="matrix(-0.50008381,0.86597701,-0.8660738,-0.49991616,0,0)"
x="2.2917297"
y="-17.93675"
width="1.2725292"
height="4.4543619"
rx="0.63625264"
ry="0.63632375"
opacity="0.2"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4217" />
<rect
transform="matrix(-0.50008381,0.86597701,-0.8660738,-0.49991616,0,0)"
x="2.2917297"
y="-8.3887653"
width="1.2725292"
height="4.4543619"
rx="0.63625264"
ry="0.63632375"
opacity="0.8"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4219" />
<rect
transform="matrix(-0.8660738,0.49991616,-0.50008381,-0.86597701,0,0)"
x="-3.56458"
y="-17.912498"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.3"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4221" />
<rect
transform="matrix(-0.8660738,0.49991616,-0.50008381,-0.86597701,0,0)"
x="-3.56458"
y="-8.3896513"
width="1.2726713"
height="4.4538646"
rx="0.63632375"
ry="0.63625264"
opacity="0.9"
style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke-width:2.4049;paint-order:fill markers stroke"
id="rect4223" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m8.0039 1c-3.86 0-7.0039 3.1439-7.0039 7.0039 0 3.86 3.1439 7.0059 7.0039 7.0059 3.86 0 7.0059-3.1459 7.0059-7.0059 0-3.86-3.1459-7.0039-7.0059-7.0039zm-0.0039062 5c1.104 0 2 0.896 2 2s-0.896 2-2 2-2-0.896-2-2 0.896-2 2-2z" color="#bebebe" fill="#474747" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
</svg>

After

Width:  |  Height:  |  Size: 745 B

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
<path d="M8 1C4.142 1 1 4.142 1 8s3.142 7 7 7 7-3.142 7-7-3.142-7-7-7zm0 1c3.316 0 6 2.684 6 6s-2.684 6-6 6-6-2.684-6-6 2.684-6 6-6z" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;shape-padding:0;isolation:auto;mix-blend-mode:normal;marker:none" color="#bebebe" font-weight="400" font-family="Andale Mono" white-space="normal" overflow="visible" fill="#474747"/>
</svg>

After

Width:  |  Height:  |  Size: 745 B

View File

@@ -0,0 +1,12 @@
<svg width="4.2333mm" height="4.2333mm" version="1.1" viewBox="0 0 4.2333 4.2333" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<path d="m0.26459 0.52917c0-0.29316 0.23601-0.52917 0.52917-0.52917h2.6458c0.29316 0 0.52917 0.23601 0.52917 0.52917v3.175c0 0.29316-0.23601 0.52917-0.52917 0.52917h-2.6458c-0.29316 0-0.52917-0.23601-0.52917-0.52917zm0.26458 0v3.175c0 0.14658 0.118 0.26458 0.26458 0.26458h2.6458c0.14658 0 0.26458-0.118 0.26458-0.26458v-3.175c0-0.14658-0.118-0.26458-0.26458-0.26458h-2.6458c-0.14658 0-0.26458 0.118-0.26458 0.26458z" color="#363636" stroke-width=".26458"/>
<g stroke-linecap="square">
<g stroke-width=".5657">
<rect x="1.0583" y="1.0583" width="2.1167" height=".26458" ry=".13229"/>
<rect x="1.0583" y="1.8521" width="2.1167" height=".26458" ry=".13229"/>
</g>
<rect x="1.0583" y="2.6458" width="1.2095" height=".26458" ry=".13229" stroke-width=".42763"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 933 B

View File

@@ -0,0 +1,7 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path class="ColorScheme-Text" d="m2 2c-1.108 0-2 0.892-2 2v9c0 1.108 0.892 2 2 2h7.6777a4.5 4.5 0 0 1-0.91602-1h-6.7617c-0.554 0-1-0.446-1-1v-6h14v0.75977a4.5 4.5 0 0 1 1 0.91406v-3.6738c0-1.108-0.892-2-2-2h-7.6289c-0.57985-0.0229-0.6047 0.076884-1.0391-0.35742-0.43381-0.43381-0.613-0.64213-1.332-0.64258h-2zm0 1h2c0.31116-1.7e-6 0.52033 1.414e-4 0.99805 0.4707 0.47877 0.47161 0.6388 0.5293 1 0.5293h8.002c0.554 0 1 0.446 1 1v1h-14v-2c0-0.554 0.446-1 1-1z" fill="currentColor" />
<path d="M 12.5,15 A 3.5,-3.5 0 0 1 9,11.5 3.5,-3.5 0 0 1 12.5,8 3.5,-3.5 0 0 1 16,11.5 3.5,-3.5 0 0 1 12.5,15 Z m 0,-1.0859 2.5,-2.5 -0.70703,-0.70703 -1.293,1.293 v -3 h -1 v 3 l -1.293,-1.293 -0.70703,0.70703 2.5,2.5 z" fill="currentColor" class="ColorScheme-Text" />
</svg>

After

Width:  |  Height:  |  Size: 960 B

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path d="m3 2c-1.108 0-2 0.892-2 2v4a7 7 0 0 0 7 7 7 7 0 0 0 7-7v-4c0-1.108-0.892-2-2-2h-10zm0 1h10c0.554 0 1 0.446 1 1v4a6 6 0 0 1-6 6 6 6 0 0 1-6-6v-4c0-0.554 0.446-1 1-1zm0.75781 2.5488c-0.12781 0-0.25558 0.050503-0.35352 0.14844-0.19587 0.19587-0.19587 0.51116 0 0.70703l4.2422 4.2422c0.19587 0.19587 0.51116 0.19587 0.70703 0l4.2422-4.2422c0.19587-0.19587 0.19587-0.51116 0-0.70703s-0.51116-0.19587-0.70703 0l-3.8887 3.8887-3.8887-3.8887c-0.097934-0.097934-0.22571-0.14844-0.35352-0.14844z" fill="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0755"/>
</svg>

After

Width:  |  Height:  |  Size: 778 B

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path d="m3 2c-1.108 0-2 0.892-2 2v4a7 7 0 0 0 7 7 7 7 0 0 0 7-7v-4c0-1.108-0.892-2-2-2h-10zm0 1h10c0.554 0 1 0.446 1 1v4a6 6 0 0 1-6 6 6 6 0 0 1-6-6v-4c0-0.554 0.446-1 1-1zm0.75781 2.5488c-0.12781 0-0.25558 0.050503-0.35352 0.14844-0.19587 0.19587-0.19587 0.51116 0 0.70703l4.2422 4.2422c0.19587 0.19587 0.51116 0.19587 0.70703 0l4.2422-4.2422c0.19587-0.19587 0.19587-0.51116 0-0.70703-0.19587-0.19587-0.51116-0.19587-0.70703 0l-3.8887 3.8887-3.8887-3.8887c-0.097934-0.097934-0.22571-0.14844-0.35352-0.14844z" fill="#333" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0755"/>
</svg>

After

Width:  |  Height:  |  Size: 793 B

View File

@@ -0,0 +1,10 @@
<svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<path d="m3 1c-1.1075 0-2 0.89253-2 2v6c0 1.1075 0.89253 2 2 2v-1c-0.554 0-1-0.446-1-1v-5c0-0.554 0.446-1 1-1h7c0.554 0 1 0.446 1 1h1v-1c0-1.1075-0.89253-2-2-2h-7zm8 7v1c0 0.554-0.446 1-1 1h-4v1h4c1.1075 0 2-0.89253 2-2v-1h-1z" fill="#363636" opacity=".35" style="paint-order:stroke fill markers"/>
<path d="m6 5c-1.1075 0-2 0.89253-2 2v6c0 1.1075 0.89253 2 2 2h7c1.1075 0 2-0.89253 2-2v-6c0-1.1075-0.89253-2-2-2zm0 2h7c0.554 0 1 0.446 1 1v5c0 0.554-0.446 1-1 1h-7c-0.554 0-1-0.446-1-1v-5c0-0.554 0.446-1 1-1z" fill="#363636" opacity=".35" style="paint-order:stroke fill markers"/>
<rect transform="rotate(45)" x="1.3137" y="-.5" width="20" height="1" rx="0" ry="0" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 895 B

View File

@@ -0,0 +1,9 @@
<svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<path d="m3 1c-1.1075 0-2 0.89253-2 2v6c0 1.1075 0.89253 2 2 2v-1c-0.554 0-1-0.446-1-1v-5c0-0.554 0.446-1 1-1h7c0.554 0 1 0.446 1 1h1v-1c0-1.1075-0.89253-2-2-2h-7zm8 7v1c0 0.554-0.446 1-1 1h-4v1h4c1.1075 0 2-0.89253 2-2v-1h-1z" fill="#363636" style="paint-order:stroke fill markers"/>
<path d="m6 5c-1.1075 0-2 0.89253-2 2v6c0 1.1075 0.89253 2 2 2h7c1.1075 0 2-0.89253 2-2v-6c0-1.1075-0.89253-2-2-2zm0 2h7c0.554 0 1 0.446 1 1v5c0 0.554-0.446 1-1 1h-7c-0.554 0-1-0.446-1-1v-5c0-0.554 0.446-1 1-1z" fill="#363636" style="paint-order:stroke fill markers"/>
</svg>

After

Width:  |  Height:  |  Size: 765 B

View File

@@ -0,0 +1 @@
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg"><g fill="#363636"><path d="M11 12h5v1h-5z"/><path d="M13 10h1v5h-1zM13 8h1v1h-1zM1 8h1v1H1zM13 4h1v1h-1zM1 4h1v1H1zM13 2h1v1h-1zM1 2h1v1H1zM1 10h1v1H1zM1 12h1v1H1zM3 12h1v1H3zM5 12h1v1H5zM7 12h1v1H7zM3 2h1v1H3zM5 2h1v1H5zM7 2h1v1H7zM11 2h1v1h-1zM9 12h1v1H9zM9 2h1v1H9zM13 6h1v1h-1zM1 6h1v1H1z"/></g></svg>

After

Width:  |  Height:  |  Size: 368 B

View File

@@ -0,0 +1,8 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path class="ColorScheme-Text" d="m8 0c-2.216 0-4 1.784-4 4v2h1v-2c0-1.662 1.338-3 3-3s3 1.338 3 3v2h1v-2c0-2.216-1.784-4-4-4z" fill="currentColor" opacity=".35"/>
<path class="ColorScheme-Text" d="m4 6c-1.108 0-2 0.892-2 2v5c0 1.108 0.892 2 2 2h8c1.108 0 2-0.892 2-2v-5c0-1.108-0.892-2-2-2h-8zm0 1h8c0.554 0 1 0.446 1 1v5c0 0.554-0.446 1-1 1h-8c-0.554 0-1-0.446-1-1v-5c0-0.554 0.446-1 1-1z" fill="currentColor" opacity=".35"/>
<rect transform="rotate(45)" x="1.3137" y="-.5" width="20" height="1" rx="0" ry="0" class="ColorScheme-Text" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 760 B

View File

@@ -0,0 +1,8 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
</defs>
<path class="ColorScheme-Text" d="m8 0c-2.216 0-4 1.784-4 4v2h1v-2c0-1.662 1.338-3 3-3s3 1.338 3 3v2h1v-2c0-2.216-1.784-4-4-4z" color="#363636" fill="currentColor"/>
<path class="ColorScheme-Text" d="m4 6c-1.108 0-2 0.892-2 2v5c0 1.108 0.892 2 2 2h3.2676a5.5 5.5 0 0 1-0.6543-1h-2.6133c-0.554 0-1-0.446-1-1v-5c0-0.554 0.446-1 1-1h4.3574a5.5 5.5 0 0 1 3.1426-1h-7.5zm7.5 0a5.5 5.5 0 0 1 0.025391 0.0019531v-0.0019531h-0.025391z" color="#363636" fill="currentColor"/>
<path d="m11.5 7a4.5 4.5 0 0 0-4.5 4.5 4.5 4.5 0 0 0 4.5 4.5 4.5 4.5 0 0 0 4.5-4.5 4.5 4.5 0 0 0-4.5-4.5zm0 1c0.277 0 0.5 0.223 0.5 0.5v4c0 0.277-0.223 0.5-0.5 0.5s-0.5-0.223-0.5-0.5v-4c0-0.277 0.223-0.5 0.5-0.5zm0 6a0.5 0.5 0 0 1 0.5 0.5 0.5 0.5 0 0 1-0.5 0.5 0.5 0.5 0 0 1-0.5-0.5 0.5 0.5 0 0 1 0.5-0.5z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.6" style="paint-order:stroke fill markers"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="16px"
viewBox="0 0 16 16"
width="16px"
version="1.1"
id="svg572"
sodipodi:docname="select-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="defs576" />
<sodipodi:namedview
id="namedview574"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
inkscape:zoom="7.375"
inkscape:cx="-0.88135593"
inkscape:cy="10.305085"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg572">
<inkscape:grid
type="xygrid"
id="grid1219" />
</sodipodi:namedview>
<path
d="M 14.010407,3.4038095 6.2322351,11.181975 1.9895944,6.9393337 1.2824805,7.6464476 6.2322351,12.596188 14.717517,4.1109066 Z"
fill="context-fill"
stroke="context-stroke"
fill-opacity="context-fill-opacity"
stroke-opacity="context-stroke-opacity"
id="path570"
style="fill:#333333"
sodipodi:nodetypes="ccccccc" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<title>Gnome Symbolic Icons</title>
<path d="m8.0601 0.84236a0.50005 0.50005 0 0 0-0.52052 0.27575l-2.0383 4.1518-4.575 0.67561a0.50005 0.50005 0 0 0-0.27448 0.85273l3.3195 3.2204-0.77068 4.5601a0.50005 0.50005 0 0 0 0.7266 0.52653l4.0884-2.1632 4.0985 2.1425a0.50005 0.50005 0 0 0 0.72395-0.5286l-0.79268-4.5563 3.3038-3.2357a0.50005 0.50005 0 0 0-0.27869-0.85219l-4.5782-0.65453-2.0566-4.1425a0.50005 0.50005 0 0 0-0.37554-0.27241zm-0.070268 1.6258 1.7242 3.47a0.50005 0.50005 0 0 0 0.37711 0.27265l3.8361 0.54683-2.7687 2.7114a0.50005 0.50005 0 0 0-0.14319 0.44393l0.66377 3.8159-3.4341-1.7945a0.50005 0.50005 0 0 0-0.46488 0.0015l-3.4258 1.8115 0.64729-3.8205a0.50005 0.50005 0 0 0-0.14487-0.44227l-2.7802-2.699 3.8311-0.56494a0.50005 0.50005 0 0 0 0.37583-0.27581z" color="#000000" color-rendering="auto" dominant-baseline="auto" enable-background="accumulate" fill="#333" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<title>Gnome Symbolic Icons</title>
<path d="m8.0601 0.84236c-0.21498-0.030874-0.42531 0.080549-0.52052 0.27575l-2.0383 4.1518-4.575 0.67561c-0.40881 0.061502-0.57065 0.56431-0.27448 0.85273l3.3195 3.2204-0.77068 4.5601c-0.070098 0.40901 0.35975 0.7205 0.7266 0.52653l4.0884-2.1632 4.0985 2.1425c0.36709 0.19143 0.7945-0.12065 0.72395-0.5286l-0.79268-4.5563 3.3038-3.2357c0.29592-0.28985 0.13131-0.7932-0.27869-0.85219l-4.5782-0.65453-2.0566-4.1425c-0.072934-0.14689-0.21326-0.24868-0.37554-0.27241z" color="#000000" color-rendering="auto" dominant-baseline="auto" enable-background="accumulate" fill="#ff7f2a" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(3.7795)" fill="#363636">
<path d="m0.57929 2.1627c0.017081-0.00191 0.03514-5.465e-4 0.05271 0.00465l0.76119 0.22531c0.070279 0.020789 0.11019 0.094051 0.0894 0.16433-0.020789 0.070279-0.094568 0.11019-0.16485 0.0894l-0.43408-0.12867a1.3229 1.3229 0 0 0 1.2599 0.92191 1.3229 1.3229 0 0 0 1.296-1.0583h0.26923a1.5875 1.5875 0 0 1-1.5653 1.3229 1.5875 1.5875 0 0 1-1.5064-1.0878l-0.14108 0.47646c-0.020789 0.07028-0.094052 0.11019-0.16433 0.0894-0.07028-0.020789-0.11019-0.094052-0.0894-0.16433l0.22531-0.76119c0.015592-0.052709 0.060378-0.088322 0.11162-0.094051z"/>
<path d="m3.654 2.0707c-0.017081 0.00191-0.03514 5.464e-4 -0.05271-0.00465l-0.76119-0.22531c-0.07028-0.020789-0.11019-0.094051-0.0894-0.16433 0.020789-0.070279 0.094568-0.11019 0.16485-0.0894l0.43408 0.12867a1.3229 1.3229 0 0 0-1.2599-0.92191 1.3229 1.3229 0 0 0-1.296 1.0583h-0.26923a1.5875 1.5875 0 0 1 1.5653-1.3229 1.5875 1.5875 0 0 1 1.5064 1.0878l0.14108-0.47646c0.020789-0.07028 0.094052-0.11019 0.16433-0.0894 0.07028 0.020789 0.11019 0.094052 0.0894 0.16433l-0.22531 0.76119c-0.015592 0.052709-0.060378 0.088322-0.11162 0.094051z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,4 @@
<svg width="16.009" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<rect x="1" y="8" width="13" height="1" ry="0" fill="#333" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0817"/>
<rect transform="rotate(90)" x="2" y="-8" width="13" height="1" ry="0" fill="#333" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0817"/>
</svg>

After

Width:  |  Height:  |  Size: 375 B

View File

@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 16 16"
width="16"
height="16"
fill="context-fill"
fill-opacity="context-fill-opacity"
version="1.1"
id="svg4312"
sodipodi:docname="tab-sync-symbolic-light.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="namedview4314"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="22.305085"
inkscape:cy="0.13559322"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg4312" />
<defs
id="defs4306">
<style
id="current-color-scheme"
type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<path
d="m2 2c-1.108 0-2 0.892-2 2v8c0 1.108 0.892 2 2 2h6.7617c-0.20691-0.31135-0.37421-0.64727-0.49805-1h-6.2637c-0.554 0-1-0.446-1-1l5e-5 -5h14v0.75977c0.37755 0.25248 0.7147 0.56065 1 0.91406v-4.6738c0-1.108-0.892-2-2-2h-12zm0 1h12c0.554 0 1 0.446 1 1v2h-7v-1h-7v-1c0-0.554 0.446-1 1-1z"
id="path4308"
style="fill:#e6e6e6" />
<path
d="m12.5 8.0215c-1.933 0-3.5 1.567-3.5 3.5 0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5c0-1.933-1.567-3.5-3.5-3.5zm-0.013672 0.97852a2.5 2.5 0 0 1 1.8848 0.8418l-0.89844 0.51953a1.5 1.5 0 0 0-1.7227-0.16016 1.5 1.5 0 0 0-0.72461 1.5723l-0.89453 0.51758a2.5 2.5 0 0 1 1.1191-2.957 2.5 2.5 0 0 1 1.2363-0.33398zm2.3828 1.709a2.5 2.5 0 0 1-1.1191 2.957 2.5 2.5 0 0 1-3.1211-0.50781l0.89844-0.51953a1.5 1.5 0 0 0 1.7227 0.16016 1.5 1.5 0 0 0 0.72461-1.5723l0.89453-0.51758z"
id="path4310"
style="fill:#e6e6e6" />
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 16 16"
width="16"
height="16"
fill="context-fill"
fill-opacity="context-fill-opacity"
version="1.1"
id="svg4312"
sodipodi:docname="tab-sync-symbolic.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
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="namedview4314"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="22.305085"
inkscape:cy="0.13559322"
inkscape:window-width="1280"
inkscape:window-height="650"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg4312" />
<defs
id="defs4306">
<style
id="current-color-scheme"
type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<path
d="m2 2c-1.108 0-2 0.892-2 2v8c0 1.108 0.892 2 2 2h6.7617c-0.20691-0.31135-0.37421-0.64727-0.49805-1h-6.2637c-0.554 0-1-0.446-1-1l5e-5 -5h14v0.75977c0.37755 0.25248 0.7147 0.56065 1 0.91406v-4.6738c0-1.108-0.892-2-2-2h-12zm0 1h12c0.554 0 1 0.446 1 1v2h-7v-1h-7v-1c0-0.554 0.446-1 1-1z"
id="path4308"
style="fill:#333333" />
<path
d="m12.5 8.0215c-1.933 0-3.5 1.567-3.5 3.5 0 1.933 1.567 3.5 3.5 3.5s3.5-1.567 3.5-3.5c0-1.933-1.567-3.5-3.5-3.5zm-0.013672 0.97852a2.5 2.5 0 0 1 1.8848 0.8418l-0.89844 0.51953a1.5 1.5 0 0 0-1.7227-0.16016 1.5 1.5 0 0 0-0.72461 1.5723l-0.89453 0.51758a2.5 2.5 0 0 1 1.1191-2.957 2.5 2.5 0 0 1 1.2363-0.33398zm2.3828 1.709a2.5 2.5 0 0 1-1.1191 2.957 2.5 2.5 0 0 1-3.1211-0.50781l0.89844-0.51953a1.5 1.5 0 0 0 1.7227 0.16016 1.5 1.5 0 0 0 0.72461-1.5723l0.89453-0.51758z"
id="path4310"
style="fill:#333333" />
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,11 @@
<svg width="4.2333mm" height="4.2333mm" version="1.1" viewBox="0 0 4.2333 4.2333" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -3.3407e-5)" fill="#333333">
<path d="m3.7042 0.52917c0.29316 0 0.52917 0.23601 0.52917 0.52917v2.3812c0 0.29316-0.23601 0.52917-0.52917 0.52917h-3.175c-0.29316 0-0.52917-0.23601-0.52917-0.52917v-2.3812c0-0.29316 0.23601-0.52917 0.52917-0.52917zm0 0.26458h-3.175c-0.14658 0-0.26458 0.118-0.26458 0.26458v2.3812c0 0.14658 0.118 0.26458 0.26458 0.26458h3.175c0.14658 0 0.26458-0.118 0.26458-0.26458v-2.3812c0-0.14658-0.118-0.26458-0.26458-0.26458z" color="#363636" stroke-width=".26458"/>
<rect transform="scale(-1,1)" x="-2.6458" y=".79375" width=".26458" height="2.9104" ry="0" color="#363636" stroke-width=".26458"/>
<g stroke-linecap="round" stroke-linejoin="round" stroke-width=".52917">
<rect x="2.9104" y="1.0583" width=".79375" height=".26458"/>
<rect x="2.9104" y="1.5875" width=".79375" height=".26458"/>
<rect x="2.9104" y="2.1167" width=".79375" height=".26458"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,11 @@
<svg width="4.2333mm" height="4.2333mm" version="1.1" viewBox="0 0 4.2333 4.2333" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<path d="m0.52917 0.52917c-0.29316 0-0.52917 0.23601-0.52917 0.52917v2.3812c0 0.29316 0.23601 0.52917 0.52917 0.52917h3.175c0.29316 0 0.52917-0.23601 0.52917-0.52917v-2.3812c0-0.29316-0.23601-0.52917-0.52917-0.52917zm0 0.26458h3.175c0.14658 0 0.26458 0.118 0.26458 0.26458v2.3812c0 0.14658-0.118 0.26458-0.26458 0.26458h-3.175c-0.14658 0-0.26458-0.118-0.26458-0.26458v-2.3812c0-0.14658 0.118-0.26458 0.26458-0.26458z" color="#363636" stroke-width=".26458"/>
<rect x="1.5875" y=".79375" width=".26458" height="2.9104" ry="0" color="#363636" stroke-width=".26458"/>
<g stroke-linecap="round" stroke-linejoin="round" stroke-width=".52917">
<rect transform="scale(-1,1)" x="-1.3229" y="1.0583" width=".79375" height=".26458"/>
<rect transform="scale(-1,1)" x="-1.3229" y="1.5875" width=".79375" height=".26458" stroke-width=".52917"/>
<rect transform="scale(-1,1)" x="-1.3229" y="2.1167" width=".79375" height=".26458"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,10 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#363636; }</style>
<linearGradient id="linearGradient845" x1="-28.142" x2="-17.493" y1="7.9999" y2="7.9999" gradientTransform="translate(30.395 .10979)" gradientUnits="userSpaceOnUse">
<stop stop-color="#005ed6" offset="0"/>
<stop stop-color="#730aeb" offset="1"/>
</linearGradient>
</defs>
<path d="m8 0.35156a1.0001 1.0001 0 0 0-0.37109 0.072266l-5 2a1.0001 1.0001 0 0 0-0.62891 0.92773v7c0 0.91667 0.49969 1.6132 1.0547 2.2012s1.2307 1.0936 1.8945 1.5312c1.3276 0.87537 2.6328 1.4727 2.6328 1.4727a1.0001 1.0001 0 0 0 0.83594 0s1.3052-0.59728 2.6328-1.4727c0.66379-0.43769 1.3395-0.9433 1.8945-1.5312 0.555-0.58795 1.0547-1.2845 1.0547-2.2012v-7a1.0001 1.0001 0 0 0-0.62891-0.92773l-5-2a1.0001 1.0001 0 0 0-0.37109-0.072266zm0 1 5 2v7c0 2-5 4.2969-5 4.2969z" fill="url(#linearGradient845)"/>
</svg>

After

Width:  |  Height:  |  Size: 977 B

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" fill="none" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path d="m8 0.35156a1.0001 1.0001 0 0 0-0.37109 0.072266l-5 2a1.0001 1.0001 0 0 0-0.62891 0.92773v7c0 0.91667 0.49969 1.6132 1.0547 2.2012s1.2307 1.0936 1.8945 1.5312c1.3276 0.87537 2.6328 1.4727 2.6328 1.4727a1.0001 1.0001 0 0 0 0.83594 0s1.3052-0.59728 2.6328-1.4727c0.66379-0.43769 1.3395-0.9433 1.8945-1.5312 0.555-0.58795 1.0547-1.2845 1.0547-2.2012v-7a1.0001 1.0001 0 0 0-0.62891-0.92773l-5-2a1.0001 1.0001 0 0 0-0.37109-0.072266zm0 1 5 2v7c0 2-5 4.2969-5 4.2969v-13.297z" fill="#333333"/>
</svg>

After

Width:  |  Height:  |  Size: 614 B

View File

@@ -0,0 +1,3 @@
<svg width="16.023" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path class="ColorScheme-Text" d="m8 1.0059c-0.12781 0-0.25558 0.04855-0.35352 0.14648l-7.0703 7.0723c-0.19587 0.19587-0.19587 0.51116 0 0.70703s0.51116 0.19587 0.70703 0l0.7168-0.7168v5.7852c0 1.108 0.892 2 2 2h8c1.108 0 2-0.892 2-2v-5.7852l0.7168 0.7168c0.19587 0.19587 0.51116 0.19587 0.70703 0s0.19587-0.51116 0-0.70703l-7.0703-7.0723c-0.097934-0.097934-0.22571-0.14648-0.35352-0.14648zm0 1.209 5 5v6.7852c0 0.554-0.446 1-1 1h-2v-3c0-1.108-0.892-2-2-2s-2 0.892-2 2v3h-2c-0.554 0-1-0.446-1-1v-6.7852z" color="#363636" fill="#333"/>
</svg>

After

Width:  |  Height:  |  Size: 625 B

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16.001" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(-.90463 0 0 .83333 15.237 1.3333)" fill="#fff">
<path transform="matrix(1.1054 0 0 1.2 -.84343 -1.6)" d="m7.998 2.0391c-3.7698 0.00458-7.0701 2.3668-8.0078 5.7305-0.043852 0.15695-0.043852 0.32157 0 0.47852 0.38076 1.3513 1.1472 2.5362 2.168 3.4746l0.71094-0.71094c-0.87634-0.81542-1.5396-1.8343-1.8691-3.0039 0.82085-2.9444 3.7001-5.0038 7-5.0078 0.86333 5.345e-4 1.694 0.14902 2.4707 0.41016l0.75977-0.75977c-1-0.39229-2.0938-0.61063-3.2305-0.61133h-0.00195zm5.8457 2.2402-0.71094 0.71094c0.87533 0.81512 1.5379 1.8332 1.8672 3.002-0.82085 2.9444-3.7001 5.0038-7 5.0078-0.86243-5.24e-4 -1.6928-0.1476-2.4688-0.4082l-0.75781 0.75781c0.9991 0.3917 2.0912 0.61064 3.2266 0.61133h0.00195c3.7698-0.0046 7.0701-2.3668 8.0078-5.7305 0.04422-0.15757 0.04422-0.3229 0-0.48047-0.38039-1.35-1.1468-2.5331-2.166-3.4707zm-5.8438 0.7207c-1.6569 0-3 1.3431-3 3 0.00115 0.26196 0.03661 0.52264 0.10547 0.77539l3.6718-3.6718c-0.25347-0.06837-0.51481-0.10317-0.77734-0.10352zm2.8945 2.2285-3.6679 3.6679c0.25221 0.06803 0.51222 0.10283 0.77344 0.10352 1.6569 0 3-1.3431 3-3-0.0015-0.26065-0.03695-0.51999-0.10547-0.77148z" fill="#fff"/>
</g>
<rect transform="matrix(-.70711 -.70711 -.70711 .70711 0 0)" x="-19.314" y="-.49958" width="16" height="1" ry="0" fill="#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,6 @@
<svg width="16" height="16.001" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(-.90463 0 0 .83333 15.237 1.3333)" fill="#363636">
<path transform="matrix(1.1054 0 0 1.2 -.84343 -1.6)" d="m7.998 2.0391c-3.7698 0.00458-7.0701 2.3668-8.0078 5.7305-0.043852 0.15695-0.043852 0.32157 0 0.47852 0.38076 1.3513 1.1472 2.5362 2.168 3.4746l0.71094-0.71094c-0.87634-0.81542-1.5396-1.8343-1.8691-3.0039 0.82085-2.9444 3.7001-5.0038 7-5.0078 0.86333 5.345e-4 1.694 0.14902 2.4707 0.41016l0.75977-0.75977c-1-0.39229-2.0938-0.61063-3.2305-0.61133h-0.00195zm5.8457 2.2402-0.71094 0.71094c0.87533 0.81512 1.5379 1.8332 1.8672 3.002-0.82085 2.9444-3.7001 5.0038-7 5.0078-0.86243-5.24e-4 -1.6928-0.1476-2.4688-0.4082l-0.75781 0.75781c0.9991 0.3917 2.0912 0.61064 3.2266 0.61133h0.00195c3.7698-0.0046 7.0701-2.3668 8.0078-5.7305 0.04422-0.15757 0.04422-0.3229 0-0.48047-0.38039-1.35-1.1468-2.5331-2.166-3.4707zm-5.8438 0.7207c-1.6569 0-3 1.3431-3 3 0.00115 0.26196 0.03661 0.52264 0.10547 0.77539l3.6718-3.6718c-0.25347-0.06837-0.51481-0.10317-0.77734-0.10352zm2.8945 2.2285-3.6679 3.6679c0.25221 0.06803 0.51222 0.10283 0.77344 0.10352 1.6569 0 3-1.3431 3-3-0.0015-0.26065-0.03695-0.51999-0.10547-0.77148z" fill="#363636"/>
</g>
<rect transform="matrix(-.70711 -.70711 -.70711 .70711 0 0)" x="-19.314" y="-.49958" width="16" height="1" ry="0" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m3 1c-1.108 0-2 0.892-2 2v3h1v-3c0-0.554 0.446-1 1-1h3v-1h-3zm7 0v1h3c0.554 0 1 0.446 1 1v3h1v-3c0-1.108-0.892-2-2-2h-3zm-9 9v3c0 1.108 0.892 2 2 2h3v-1h-3c-0.554 0-1-0.446-1-1v-3h-1zm13 0v3c0 0.554-0.446 1-1 1h-3v1h3c1.108 0 2-0.892 2-2v-3h-1z" fill="#333" stroke-linecap="square" stroke-width="2"/>
</svg>

After

Width:  |  Height:  |  Size: 396 B

View File

@@ -0,0 +1,8 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g class="ColorScheme-Text" color="#363636" fill="#333">
<path d="m8 0a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 1a7 7 0 0 1 7 7 7 7 0 0 1-7 7 7 7 0 0 1-7-7 7 7 0 0 1 7-7z"/>
<circle cx="4" cy="8" r="1"/>
<circle cx="8" cy="8" r="1"/>
<circle cx="12" cy="8" r="1"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 383 B

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m14 1.0003-0.99989-1e-7 -1e-6 2.9997-2.9997 1e-7v0.99989h3.9995l-1e-6 -0.99989z" fill="#363636"/>
<path d="m7.9062 1a7 7 0 0 0-6.9062 7 7 7 0 0 0 7 7 7 7 0 0 0 7-7 7 7 0 0 0-0.072266-1h-1.0117a6 6 0 0 1 0.083984 1 6 6 0 0 1-6 6 6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 5.1953 3h0.80469v-0.60352a7 7 0 0 0-6-3.3965 7 7 0 0 0-0.09375 0z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" style="paint-order:stroke fill markers"/>
</svg>

After

Width:  |  Height:  |  Size: 574 B

View File

@@ -0,0 +1,4 @@
<svg width="16.014" height="16.01" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m7 16v-7h-7v1h5.293l-5.293 5.293v0.70703h0.70703l5.293-5.293v5.293h1z" fill="#333" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8708"/>
<path d="m9 0v7h7v-1h-5.293l5.293-5.293v-0.70703h-0.70703l-5.293 5.293v-5.293h-1z" fill="#333" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8708"/>
</svg>

After

Width:  |  Height:  |  Size: 423 B

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<title>Gnome Symbolic Icons</title>
<path d="m4.5352 3.9355c-0.15337 1e-7 -0.30631 0.05826-0.42383 0.17578-0.23504 0.23504-0.23504 0.61261 0 0.84766l3.041 3.041-3.041 3.041c-0.23504 0.23504-0.23504 0.61261 0 0.84766 0.23504 0.23504 0.61261 0.23504 0.84766 0l3.041-3.041 3.041 3.041c0.23504 0.23504 0.61261 0.23504 0.84766 0 0.23504-0.23504 0.23504-0.61261 0-0.84766l-3.041-3.041 3.041-3.041c0.23504-0.23504 0.23504-0.61261 0-0.84766s-0.61261-0.23504-0.84766 0l-3.041 3.041-3.041-3.041c-0.11752-0.11752-0.27046-0.17578-0.42383-0.17578z" fill="#fff" stroke-linecap="square" stroke-width="2.0153"/>
</svg>

After

Width:  |  Height:  |  Size: 707 B

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<title>Gnome Symbolic Icons</title>
<path d="m11.889 4.1109c-0.19587-0.19587-0.51124-0.19587-0.70711 0l-3.182 3.182-3.182-3.182c-0.19587-0.19587-0.51124-0.19587-0.70711 0s-0.19587 0.51124 0 0.70711l3.182 3.182-3.182 3.182c-0.19587 0.19587-0.19587 0.51124 0 0.70711 0.19587 0.19587 0.51124 0.19587 0.70711 0l3.182-3.182 3.182 3.182c0.19587 0.19587 0.51124 0.19587 0.70711 0 0.19587-0.19587 0.19587-0.51124 0-0.70711l-3.182-3.182 3.182-3.182c0.19587-0.19587 0.19587-0.51124 0-0.70711z" fill="#333333" stroke-linecap="square" stroke-width="2" style="paint-order:stroke fill markers"/>
</svg>

After

Width:  |  Height:  |  Size: 693 B

View File

@@ -0,0 +1,3 @@
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg">
<path d="M4 4v8h8V4zm1 1h6v6H5z" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;shape-padding:0;isolation:auto;mix-blend-mode:normal" color="#000" font-weight="400" font-family="sans-serif" white-space="normal" overflow="visible" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 628 B

View File

@@ -0,0 +1,3 @@
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg">
<path d="M4 10v1h8v-1z" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;shape-padding:0;isolation:auto;mix-blend-mode:normal" color="#000" font-weight="400" font-family="sans-serif" white-space="normal" overflow="visible" fill="#363636"/>
</svg>

After

Width:  |  Height:  |  Size: 619 B

View File

@@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" fill="context-fill" fill-opacity="context-fill-opacity">
<defs>
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
color:#363636;
}</style>
</defs>
<path d="m3 1c-1.108 0-2 0.892-2 2v10c0 1.108 0.892 2 2 2h5.7617a4.5 4.5 0 0 1-0.49805-1h-5.2637c-0.554 0-1-0.446-1-1v-8c0-0.554 0.446-1 1-1h10c0.554 0 1 0.446 1 1v3.2637a4.5 4.5 0 0 1 1 0.49609v-5.7598c0-1.108-0.892-2-2-2h-10z" class="ColorScheme-Text" fill="currentColor"/>
<path class="ColorScheme-Text" d="m12.5 9c-1.933 0-3.5 1.567-3.5 3.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm-0.5 1h1v2h2v1h-2v2h-1v-2h-2v-1h2z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 734 B

View File

@@ -0,0 +1,5 @@
<svg width="16" height="16" enable-background="new" version="1.1" xmlns="http://www.w3.org/2000/svg">
<title>Gnome Symbolic Icons</title>
<path d="m4 6v6h6v-6zm1 1h4v4h-4z" color="#000000" color-rendering="auto" dominant-baseline="auto" enable-background="accumulate" fill="#363636" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
<path d="m6 4v1h5v5h1v-6z" color="#000000" color-rendering="auto" dominant-baseline="auto" enable-background="accumulate" fill="#363636" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m7 5v3h-3v1h3v3h1v-3h3v-1h-3v-3z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1851"/>
<path d="M 7.4628906,1 A 7.5,7.5 0 0 0 0,8.5 7.5,7.5 0 0 0 7.5,16 7.5,7.5 0 0 0 15,8.5 7.5,7.5 0 0 0 7.5,1 7.5,7.5 0 0 0 7.4628906,1 Z M 7.5,2 A 6.5,6.5 0 0 1 14,8.5 6.5,6.5 0 0 1 7.5,15 6.5,6.5 0 0 1 1,8.5 6.5,6.5 0 0 1 7.5,2 Z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0016"/>
</svg>

After

Width:  |  Height:  |  Size: 532 B

View File

@@ -0,0 +1,4 @@
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="m7.4629 1a7.5 7.5 0 0 0-7.4629 7.5 7.5 7.5 0 0 0 7.5 7.5 7.5 7.5 0 0 0 7.5-7.5 7.5 7.5 0 0 0-7.5-7.5 7.5 7.5 0 0 0-0.037109 0zm0.037109 1a6.5 6.5 0 0 1 6.5 6.5 6.5 6.5 0 0 1-6.5 6.5 6.5 6.5 0 0 1-6.5-6.5 6.5 6.5 0 0 1 6.5-6.5z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0016"/>
<path d="m4 8h7v1h-7z" fill="#363636" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0016"/>
</svg>

After

Width:  |  Height:  |  Size: 519 B

View File

@@ -0,0 +1,9 @@
/* about:newtab */
@-moz-document url("about:newtab"), url("about:home") {
body {
--newtab-background-color: var(--gnome-browser-before-load-background) !important;
--newtab-background-color-secondary: var(--gnome-menu-background) !important;
--newtab-primary-action-background: var(--gnome-accent) !important;
}
}

View File

@@ -0,0 +1,16 @@
/* about:privatebrowsing */
@-moz-document url("about:privatebrowsing") {
html.private {
--in-content-page-background: var(--gnome-private-in-content-page-background) !important;
/* Used by headings in promo boxes Firefox shows (like an ad for Firefox Focus) */
--in-content-text-color: var(--gnome-private-text-primary-color) !important;
}
.wordmark {
fill: var(--gnome-private-wordmark) !important;
}
.showPrivate {
color: var(--gnome-private-text-primary-color);
}
}

View File

@@ -0,0 +1,286 @@
/* Buttons Issues/Glitches fixes */
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
/* Fix notification dropmarker */
.popup-notification-dropmarker dropmarker {
display: none !important;
}
.popup-notification-dropmarker > .button-box > hbox {
display: -moz-box !important;
}
.panel-footer button.popup-notification-dropmarker {
padding: 0 1px 0 4px !important;
}
/* Fix hover background */
.toolbarbutton-badge-stack:not(#hack), .toolbarbutton-icon:not(#hack), .toolbarbutton-text:not(#hack) {
background: transparent !important;
}
/* Fix button box */
.panel-footer.panel-footer-menulike > button > .button-box {
display: -moz-box !important;
}
/* menulist */
#label-box:not([native]) {
font-weight: 400 !important;
}
/* Overrides: Make the back button the same as other buttons */
:root:not([uidensity=compact]) #back-button {
border-radius: var(--toolbarbutton-border-radius) !important;
}
:root:not([uidensity=compact]) #back-button > .toolbarbutton-icon {
background-color: unset !important;
border: unset !important;
width: calc(2 * var(--toolbarbutton-inner-padding) + 16px) !important;
height: calc(2 * var(--toolbarbutton-inner-padding) + 16px) !important;
padding: var(--toolbarbutton-inner-padding) !important;
border-radius: var(--toolbarbutton-border-radius);
box-shadow: none !important;
}
:root:not([uidensity=compact]) #back-button:not([disabled]):not([open]):hover > .toolbarbutton-icon {
background-color: var(--toolbarbutton-hover-background) !important;
box-shadow: unset;
border-color: unset;
}
:root:not([uidensity=compact]) #back-button[open] > .toolbarbutton-icon,
:root:not([uidensity=compact]) #back-button:not([disabled]):hover:active > .toolbarbutton-icon {
background-color: var(--toolbarbutton-active-background) !important;
border-color: unset;
}
/* Remove the header bar buttons' hover styles */
#nav-bar {
--toolbarbutton-active-background: transparent !important;
--toolbarbutton-hover-background: transparent !important;
}
/* Glitch customizing: Cut / Copy / Paste buttons' icons
* :not(#hack) is there just to elevate rule priority */
:root[customizing] #nav-bar > hbox toolbaritem toolbarbutton image:not(#hack) {
opacity: 1 !important;
}
/* Glitch customizing: Reload and Cut / Copy / Paste buttons */
:root:-moz-window-inactive[customizing] #nav-bar #stop-reload-button toolbarbutton,
:root:-moz-window-inactive[customizing] #nav-bar #edit-controls toolbarbutton {
background-image: var(--gnome-inactive-button-background);
box-shadow: var(--gnome-inactive-button-box-shadow);
}
/* Glitch customizing: Reload and Cut / Copy / Paste buttons' icons */
:root:-moz-window-inactive[customizing] #nav-bar #stop-reload-button image.toolbarbutton-icon,
:root:-moz-window-inactive[customizing] #nav-bar #edit-controls image.toolbarbutton-icon {
opacity: .7 !important;
}
/* Glitch: Overflow and Burger buttons
* :not(#hack) is there just to elevate rule priority */
:root[customizing] #nav-bar > toolbarbutton[disabled]:not(#hack),
:root[customizing] #nav-bar > toolbaritem > toolbarbutton[disabled]:not(#hack) {
opacity: .5 !important;
}
/* Glitch: Overflow button's icon */
:root[customizing] #nav-bar toolbarbutton:not(#urlbar-zoom-button)[disabled] image {
fill-opacity: var(--toolbarbutton-icon-fill-opacity) !important;
}
/* Bookmark buttons */
#nav-bar toolbarbutton.bookmark-item {
width: auto !important;
}
#nav-bar toolbarbutton.bookmark-item .toolbarbutton-icon {
margin-left: 6px;
}
#nav-bar toolbarbutton.bookmark-item .toolbarbutton-text {
padding-right: 6px;
}
/* Remove Burger button's left separator */
#PanelUI-button {
border: 0 !important;
margin: 0 !important;
padding-inline-start: 0 !important;
}
/* Space main menu button from other headerbar buttons
#nav-bar #PanelUI-menu-button:not(#hack) {
margin-left: 10px !important;
}*/
/* Fix library animation */
#library-animatable-box {
--library-button-height: 46px !important;
--library-icon-x: 1716px !important;
/*--library-icon-x: 1715.9833984375px !important;*/
}
#library-button[animate] > .toolbarbutton-icon {
fill: transparent !important;
}
/* Fix toolbars close icons */
.close-icon:not(.tab-close-button) .toolbarbutton-icon {
height: 16px !important;
width: 16px !important;
margin: 6px !important;
padding: 0 !important;
}
button.close {
margin: 0 !important;
}
/* */
#appMenu-popup .panel-banner-item[notificationid="update-restart"]::after {
display: none !important;
}
/* Identity site popover buttons */
.identity-popup-preferences-button:not(#hack) {
list-style-image: url("chrome://browser/skin/settings.svg") !important;
}
#tracking-protection-preferences-button > .toolbarbutton-text {
padding-inline-end: 0 !important;
}
.protections-popup-footer-button-label {
margin-inline-start: 3px !important;
}
/* Fix findbar buttons issues */
.findbar-container .findbar-find-previous image,
.findbar-container .findbar-find-next image {
margin: 6px !important;
opacity: 1 !important;
}
.findbar-container toolbarbutton:focus {
outline: 0 !important;
}
/* Sidebar header button reset font size */
#sidebar-header {
font-size: 1em !important;
}
/* Sidebar header button arrow opacity */
#sidebar-switcher-arrow {
opacity: 1 !important;
}
/* Sidebar history view */
#viewButton {
margin: 0 !important;
margin-inline-start: 6px !important;
}
/* Menulist */
#identity-popup-popup-menulist {
margin-right: 0 !important;
}
/* Auto complete popup button*/
.autocomplete-richlistitem[type="loginsFooter"] {
margin: 4px 4px 0 4px !important;
}
/* Identity popup tracking protection button */
.tracking-protection-button {
margin-inline-end: 0 !important;
}
/* Identity popup delete permission button */
.identity-popup-permission-remove-button {
opacity: 1 !important;
}
/* Identity popup expander button */
#identity-popup-security {
-moz-box-align: center;
}
#identity-popup-security-expander {
width: 34px !important;
}
#identity-popup-security-expander .button-icon {
margin: 0 !important;
}
/* Protections popup */
#protections-popup-info-button {
margin: 0 !important;
margin-inline-end: 0 !important;
}
.protections-popup-footer-icon {
display: none !important;
}
.protections-popup-footer-button-label {
margin-inline-start: 0 !important;
}
#protections-popup-footer-protection-type-label {
margin-inline-end: 0 !important;
margin-block: 0 !important;
}
/* Close button */
.close-icon:not(.tab-close-button) .toolbarbutton-icon {
outline: 0 !important;
}
/* Downloads button */
#downloads-indicator-progress-inner {
background: conic-gradient(var(--gnome-toolbar-icon-fill) var(--download-progress-pcent), transparent var(--download-progress-pcent)) !important;
}
#downloads-indicator-progress-outer,
#downloads-indicator-start-image,
#downloads-indicator-finish-image {
border: 0 !important;
padding: 0 !important;
border-radius: 100% !important;
}
#downloads-indicator-progress-outer,
#downloads-indicator-start-image {
background: var(--gnome-toolbar-border-color) !important;
}
#downloads-indicator-finish-image {
background: var(--gnome-toolbar-icon-fill) !important;
}
#downloads-button .toolbarbutton-animatable-box {
top: 8px !important;
left: 8px !important;
}
#downloads-button .toolbarbutton-animatable-box,
#downloads-button .toolbarbutton-animatable-image,
#downloads-indicator-progress-inner {
height: 16px !important;
width: 16px !important;
}
#downloads-button .toolbarbutton-animatable-image {
--anim-steps: 1 !important;
transform: none !important;
list-style-image: none !important;
}
/* Stop/Reload button */
#stop-reload-button .toolbarbutton-animatable-image:not(#hack) {
--anim-steps: 1 !important;
transform: none !important;
list-style-image: none !important;
display: none !important;
}
#stop-reload-button .toolbarbutton-icon {
margin-top: -2px !important;
}
/* Panel banner */
#appMenu-popup .panel-banner-item {
margin: 0 0 6px !important;
}
#appMenu-popup .panel-banner-item > .toolbarbutton-text {
margin-inline: 0 !important;
}
/* User menu */
#fxa-toolbar-menu-button .toolbarbutton-badge-stack {
padding: 0 !important;
}
#fxa-avatar-image {
min-height: 24px !important;
width: 24px !important;
}

View File

@@ -0,0 +1,321 @@
/* Buttons */
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
/* Hide buttons separator */
#nav-bar .toolbaritem-combined-buttons separator {
display: none !important;
}
#appMenu-popup .toolbaritem-combined-buttons toolbarseparator {
border: 0 !important;
}
/* Buttons */
menulist,
#nav-bar toolbarbutton:not(#urlbar-zoom-button):not(.subviewbutton),
.subviewbutton.panel-subview-footer,
.panel-footer button,
#downloadsPanel-mainView .download-state .downloadButton,
#appMenu-popup .panel-banner-item,
#appMenu-popup .toolbaritem-combined-buttons toolbarbutton:not(#appMenu-fxa-label),
#context-navigation menuitem,
.identity-popup-preferences-button:not(#hack),
.findbar-container toolbarbutton,
#sidebar-switcher-target,
#viewButton,
.close-icon:not(.tab-close-button),
button.close,
.menulist-label-box,
.expander-down, .expander-up,
.notification-button,
#identity-popup-security-expander,
#protections-popup-info-button,
#PanelUI-panic-view-button,
.tracking-protection-button,
.dialog-button,
.autocomplete-richlistitem[type="loginsFooter"],
.dialog-button-box button,
.searchbar-engine-one-off-item,
.permission-popup-permission-remove-button,
.button.connect-device,
#item-choose button,
#editBMPanel_newFolderButton {
-moz-appearance: none !important;
background: var(--gnome-button-background) !important;
border-radius: 6px !important;
border: 0 !important;
padding: 0 1px !important;
height: 34px !important;
max-height: 34px !important;
min-height: 34px !important;
min-width: 34px !important;
color: var(--gnome-toolbar-color) !important;
outline: 0 !important;
font: menu !important;
-moz-box-align: center !important;
}
.subviewbutton-iconic {
-moz-box-pack: center !important;
}
/* Flat Buttons */
#nav-bar toolbarbutton:not(#urlbar-zoom-button):not(.subviewbutton),
.close-icon:not(.tab-close-button),
button.close,
#protections-popup-info-button,
.permission-popup-permission-remove-button {
background: transparent !important;
}
/* Buttons with margins */
#nav-bar toolbarbutton:not(#urlbar-zoom-button):not(.subviewbutton),
.notification-button,
.subviewbutton.panel-subview-footer:not(:only-of-type),
.panel-footer button:not(:only-of-type) {
margin: 0 3px !important;
}
.close-icon:not(.tab-close-button) {
margin-left: 6px !important;
}
/* Text buttons */
menulist,
.subviewbutton.panel-subview-footer,
.panel-footer button,
#appMenu-popup .panel-banner-item,
#appMenu-popup #appMenu-zoomReset-button2:not(#hack),
#tracking-protection-preferences-button:not(#hack),
.findbar-container toolbarbutton.findbar-button,
.notification-button,
#PanelUI-panic-view-button,
.tracking-protection-button,
.dialog-button,
.autocomplete-richlistitem[type="loginsFooter"],
.dialog-button-box button,
.toolbaritem-combined-buttons:is(:not([cui-areatype="toolbar"]), [overflowedItem="true"]) > #appMenu-fxa-label2:not(#hack),
.button.connect-device,
#item-choose button,
#editBMPanel_newFolderButton {
padding: 2px 16px !important;
}
.subviewbutton.panel-subview-footer label,
.panel-footer button,
#appMenu-popup .panel-banner-item .toolbarbutton-text,
#appMenu-popup #appMenu-zoomReset-button2:not(#hack),
#tracking-protection-preferences-button:not(#hack),
.findbar-container toolbarbutton.findbar-button,
.notification-button,
#PanelUI-panic-view-button,
.tracking-protection-button,
.dialog-button,
.autocomplete-richlistitem[type="loginsFooter"],
.dialog-button-box button,
.button.connect-device,
#item-choose button {
text-align: center !important;
}
/* Drop down buttons */
#sidebar-switcher-target,
#viewButton {
padding: 2px 16px !important;
position: relative;
}
#sidebar-switcher-arrow,
#viewButton .button-menu-dropmarker { /* Arrow position, type b */
transform: translate(6px, 0)
}
.menulist-label-box {
padding: 2px 26px 2px 16px !important;
position: relative;
}
.menulist-label-box:after { /* Arrow position */
position: absolute !important;
right: 8px !important;
top: 8px !important;
}
.menulist-label-box:after { /* Create arrow if icon tag no exist */
content: "";
}
/* Hover buttons */
menulist:hover,
.subviewbutton.panel-subview-footer:hover,
.panel-footer button:hover,
#downloadsPanel-mainView .download-state .downloadButton:hover,
#appMenu-popup .panel-banner-item:hover,
#appMenu-popup .toolbaritem-combined-buttons toolbarbutton:not(#appMenu-fxa-label):not([disabled="true"]):hover,
#context-navigation menuitem:not([disabled="true"]):hover,
.identity-popup-preferences-button:not(#hack):hover,
.findbar-container toolbarbutton:hover,
.findbar-closebutton .toolbarbutton-icon:hover,
#sidebar-switcher-target:hover,
#viewButton:hover,
menulist:hover .menulist-label-box,
.expander-down:hover, .expander-up:hover,
.notification-button:hover,
#identity-popup-security-expander:hover,
.tracking-protection-button:hover,
.dialog-button:hover,
.autocomplete-richlistitem[type="loginsFooter"]:hover,
.dialog-button-box button:not([disabled="true"]):hover,
.searchbar-engine-one-off-item:hover,
.button.connect-device:hover,
#editBMPanel_newFolderButton:hover {
outline: 0 !important;
background: var(--gnome-button-hover-background) !important;
}
/* Hover flat buttons */
#nav-bar toolbarbutton:not(#urlbar-zoom-button):not(.subviewbutton):not([open]):not([disabled="true"]):not([checked]):hover,
.close-icon:not(.tab-close-button):hover,
button.close:hover,
#protections-popup-info-button:hover,
.permission-popup-permission-remove-button:hover,
#item-choose button:hover {
outline: 0 !important;
background: var(--gnome-button-flat-hover-background) !important;
}
/* Active buttons */
menulist[open],
.subviewbutton.panel-subview-footer:active,
.panel-footer button:active,
#downloadsPanel-mainView .download-state .downloadButton:active,
#appMenu-popup .panel-banner-item:active,
#appMenu-popup .toolbaritem-combined-buttons toolbarbutton:not([disabled="true"]):not(#appMenu-fxa-label):active,
#context-navigation menuitem:active:not([disabled="true"]),
.identity-popup-preferences-button:not(#hack):active,
.findbar-container toolbarbutton[checked],
.findbar-container toolbarbutton:active,
#sidebar-switcher-target:active, #sidebar-switcher-target.active,
#viewButton[open],
menulist[open] .menulist-label-box,
.expander-down:active, .expander-up:active,
.notification-button:active,
#identity-popup-security-expander:active,
.tracking-protection-button:active,
.dialog-button:active,
.autocomplete-richlistitem[type="loginsFooter"]:active,
.dialog-button-box button:not([disabled="true"]):active,
.button.connect-device:active,
#editBMPanel_newFolderButton:active {
background: var(--gnome-button-active-background) !important;
}
/* Active flat buttons */
#nav-bar toolbarbutton:not(#urlbar-zoom-button):not(.subviewbutton):not([disabled="true"]):not(#hack):active,
#nav-bar toolbarbutton:not(#urlbar-zoom-button):not(.subviewbutton):not(.subviewbutton):not([disabled="true"])[open],
#nav-bar toolbarbutton:not(#urlbar-zoom-button):not(.subviewbutton):not([disabled="true"])[checked],
.close-icon:not(.tab-close-button):active,
button.close:active,
#protections-popup-info-button:not(#hack):active,
#protections-popup-info-button:not(#hack)[checked],
.permission-popup-permission-remove-button:active,
#item-choose button:active {
background: var(--gnome-button-flat-active-background) !important;
}
/* Disabled buttons */
#nav-bar toolbarbutton:not(#urlbar-zoom-button)[disabled="true"],
#appMenu-popup .toolbaritem-combined-buttons toolbarbutton[disabled="true"],
#context-navigation menuitem[disabled="true"],
.dialog-button-box button[disabled="true"] {
opacity: .5 !important;
}
/* Inactive window buttons */
#nav-bar toolbarbutton:not(#urlbar-zoom-button):not(.subviewbutton):-moz-window-inactive,
.findbar-container toolbarbutton:-moz-window-inactive,
#sidebar-switcher-target:-moz-window-inactive,
#viewButton:-moz-window-inactive,
.notification-button:-moz-window-inactive {
background: var(--gnome-inactive-button-background) !important;
box-shadow: var(--gnome-inactive-button-box-shadow) !important;
border-color: var(--gnome-inactive-button-border-color) !important;
}
/* Circle buttons */
#downloadsPanel-mainView .download-state .downloadButton,
.permission-popup-permission-remove-button:not(#hack) {
border-radius: 100% !important;
}
/* Combined buttons */
#nav-bar .toolbaritem-combined-buttons toolbarbutton:not(:last-of-type):not(#hack),
#appMenu-popup .toolbaritem-combined-buttons toolbarbutton:not(:last-of-type):not(#appMenu-zoomEnlarge-button),
#context-navigation menuitem:not(:last-of-type),
.findbar-container toolbarbutton.findbar-find-previous,
.findbar-button:not(:last-of-type),
.search-panel-one-offs .searchbar-engine-one-off-item:not(:last-child) {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-right-width: 0 !important;
margin-right: 0 !important;
}
#nav-bar .toolbaritem-combined-buttons toolbarbutton:not(:first-of-type):not(#hack),
#appMenu-popup .toolbaritem-combined-buttons toolbarbutton:not(:first-of-type):not(#appMenu-fullscreen-button),
#context-navigation menuitem:not(:first-of-type),
.findbar-container toolbarbutton.findbar-find-previous,
.findbar-container toolbarbutton.findbar-find-next,
.findbar-button:not(:first-of-type),
.search-panel-one-offs .searchbar-engine-one-off-item:not(:first-child) {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
margin-left: 0 !important;
}
#nav-bar .toolbaritem-combined-buttons {
margin-left: 0 !important;
margin-right: 0 !important;
}
/* Opaque buttons */
#appMenu-popup .panel-banner-item[notificationid="update-restart"],
button.popup-notification-primary-button,
#editBookmarkPanelDoneButton,
#tracking-action-block,
.button.connect-device,
#editBookmarkPanelRemoveButton,
#PanelUI-panic-view-button {
color: white !important;
font-weight: bold !important;
}
/* Buttons with suggested action */
#appMenu-popup .panel-banner-item[notificationid="update-restart"],
button.popup-notification-primary-button:not(#hack),
#editBookmarkPanelDoneButton,
#tracking-action-block,
.button.connect-device {
background-color: var(--gnome-button-suggested-action-background) !important;
}
/* Buttons with destructive action */
#editBookmarkPanelRemoveButton,
#PanelUI-panic-view-button {
background-color: var(--gnome-button-destructive-action-background) !important;
}
/* Opaque buttons hover */
#appMenu-popup .panel-banner-item[notificationid="update-restart"]:hover,
button.popup-notification-primary-button:hover,
#editBookmarkPanelDoneButton:hover,
#tracking-action-block:hover,
.button.connect-device:hover,
#editBookmarkPanelRemoveButton:hover,
#PanelUI-panic-view-button:hover {
background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .1)) !important;
}
/* Opaque buttons active */
#appMenu-popup .panel-banner-item[notificationid="update-restart"]:active,
button.popup-notification-primary-button:active,
#editBookmarkPanelDoneButton:active,
#tracking-action-block:active,
.button.connect-device:active,
#editBookmarkPanelRemoveButton:active,
#PanelUI-panic-view-button:active {
background-image: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)) !important;
}

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