Switch to new svg icons for item types

This commit is contained in:
Tom Najdek 2023-10-06 14:08:44 +02:00 committed by Dan Stillman
parent 61f9d65552
commit 03d10f7de7
402 changed files with 3255 additions and 25 deletions

View file

@ -31,7 +31,7 @@ const LibraryTree = require('./libraryTree');
const VirtualizedTable = require('components/virtualized-table');
const { renderCell, formatColumnName } = VirtualizedTable;
const Icons = require('components/icons');
const { getDOMElement } = Icons;
const { getDOMElement, getCSSIcon } = Icons;
const { COLUMNS } = require("zotero/itemTreeColumns");
const { Cc, Ci, Cu } = require('chrome');
Cu.import("resource://gre/modules/osfile.jsm");
@ -1367,7 +1367,7 @@ var ItemTree = class ItemTree extends LibraryTree {
if (sortField == 'hasAttachment') {
// PDFs at the top
const order = ['pdf', 'snapshot', 'other', 'none'];
const order = ['pdf', 'snapshot', 'epub', 'other', 'none'];
fieldA = order.indexOf(fieldA.type || 'none') + (fieldA.exists ? 0 : 4);
fieldB = order.indexOf(fieldB.type || 'none') + (fieldB.exists ? 0 : 4);
return fieldA - fieldB;
@ -2767,27 +2767,28 @@ var ItemTree = class ItemTree extends LibraryTree {
let ariaLabel;
// If the item has a child attachment
if (type !== null && type != 'none') {
icon = getCSSIcon('icon-item-type');
if (type == 'pdf') {
icon = getDOMElement('IconTreeitemAttachmentPDF');
icon.dataset.itemType = 'attachmentPDF';
ariaLabel = Zotero.getString('pane.item.attachments.hasPDF');
if (!exists) {
icon.classList.add('icon-missing-file');
}
}
else if (type == 'snapshot') {
//icon = getDOMElement('IconTreeitemAttachmentSnapshot');
icon = exists ? getDOMElement('IconBulletBlue') : getDOMElement('IconBulletBlueEmpty');
icon.dataset.itemType = 'attachmentSnapshot';
ariaLabel = Zotero.getString('pane.item.attachments.hasSnapshot');
}
else if (type == 'epub') {
icon.dataset.itemType = 'attachmentEPUB';
ariaLabel = Zotero.getString('pane.item.attachments.hasEPUB');
}
else {
//icon = getDOMElement('IconTreeitem');
icon = exists ? getDOMElement('IconBulletBlue') : getDOMElement('IconBulletBlueEmpty');
icon.dataset.itemType = 'attachmentFile';
ariaLabel = Zotero.getString('pane.item.attachments.has');
}
icon.classList.add('cell-icon');
//if (!exists) {
// icon.classList.add('icon-missing-file');
//}
if (!exists) {
icon.classList.add('icon-missing-file');
}
}
//else if (type == 'none') {
// if (item.getField('url') || item.getField('DOI')) {
@ -3785,7 +3786,7 @@ var ItemTree = class ItemTree extends LibraryTree {
if (itemType == 'attachment') {
var linkMode = item.attachmentLinkMode;
if (item.attachmentContentType == 'application/pdf' && item.isFileAttachment()) {
if (item.isPDFAttachment()) {
if (linkMode == Zotero.Attachments.LINK_MODE_LINKED_FILE) {
itemType += 'PDFLink';
}
@ -3793,6 +3794,9 @@ var ItemTree = class ItemTree extends LibraryTree {
itemType += 'PDF';
}
}
else if (item.isEPUBAttachment()) {
itemType += 'EPUB';
}
else if (linkMode == Zotero.Attachments.LINK_MODE_IMPORTED_FILE) {
itemType += "File";
}
@ -3806,15 +3810,10 @@ var ItemTree = class ItemTree extends LibraryTree {
itemType += "WebLink";
}
}
let iconClsName = "IconTreeitem" + Zotero.Utilities.capitalize(itemType);
if (!Icons[iconClsName]) {
iconClsName = "IconTreeitem";
}
var icon = getDOMElement(iconClsName);
if (!icon) {
Zotero.debug('Could not find tree icon for "' + itemType + '"');
return document.createElement('span');
}
let icon = getCSSIcon('icon-item-type');
icon.dataset.itemType = itemType;
return icon;
}

View file

@ -3757,6 +3757,9 @@ Zotero.Item.prototype.getBestAttachmentState = async function () {
else if (item.isSnapshotAttachment()) {
type = 'snapshot';
}
else if (item.isEPUBAttachment()) {
type = 'epub';
}
else {
type = 'other';
}

View file

@ -446,6 +446,7 @@ pane.item.attachments.count.plural = %S attachments:
pane.item.attachments.has = Has attachment
pane.item.attachments.hasPDF = Has PDF attachment
pane.item.attachments.hasSnapshot = Has snapshot
pane.item.attachments.hasEPUB = Has EPUB attachment
pane.item.attachments.hasLink = Has link
pane.item.attachments.select = Select a File
pane.item.attachments.PDF.installTools.title = PDF Tools Not Installed

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M14 2V14H2V2H14ZM15 1H1V15H15V1Z" fill="white"/>
<path opacity="0.51" d="M3 3H13V13L10.5 10L8.5 11.5L6 8L3 13V3Z" fill="#66ADFF"/>
<path opacity="0.85" d="M3 13L6 8L8.5 11.5L10.5 10L13 13H3Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 335 B

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M14 2V14H2V2H14ZM15 1H1V15H15V1Z" fill="white"/>
<path opacity="0.51" d="M3 3H13V13L10.5 10L8.5 11.5L6 8L3 13V3Z" fill="#66ADFF"/>
<path opacity="0.85" d="M3 13L6 8L8.5 11.5L10.5 10L13 13H3Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 335 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.34" d="M8 4H1V6H8V4Z" fill="#39BF68"/>
<path opacity="0.85" d="M8 4V6H1V4H8ZM9 3H0V7H9V3Z" fill="#39BF68"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M14 2H15C15.2652 2 15.5196 2.10536 15.7071 2.29289C15.8946 2.48043 16 2.73478 16 3V15C16 15.2652 15.8946 15.5196 15.7071 15.7071C15.5196 15.8946 15.2652 16 15 16H5C4.73481 15.9999 4.48049 15.8945 4.293 15.707L2.293 13.707C2.10545 13.5195 2.00006 13.2652 2 13V7H3V13H4V7H5V13H13V1H5V3H4V1H3V3H2V1C2 0.734784 2.10536 0.48043 2.29289 0.292893C2.48043 0.105357 2.73478 0 3 0H13C13.2652 0 13.5196 0.105357 13.7071 0.292893C13.8946 0.48043 14 0.734784 14 1V2ZM14 2V13C14 13.2652 13.8946 13.5196 13.7071 13.7071C13.5196 13.8946 13.2652 14 13 14H4L5 15H15V3L14 2Z" fill="white"/>
<path opacity="0.24" d="M14 2V13C14 13.5523 13.5523 14 13 14H4L5 15H15V3L14 2Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 958 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.34" d="M8 4H1V6H8V4Z" fill="#39BF68"/>
<path opacity="0.85" d="M8 4V6H1V4H8ZM9 3H0V7H9V3Z" fill="#39BF68"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M14 2H15C15.2652 2 15.5196 2.10536 15.7071 2.29289C15.8946 2.48043 16 2.73478 16 3V15C16 15.2652 15.8946 15.5196 15.7071 15.7071C15.5196 15.8946 15.2652 16 15 16H5C4.73481 15.9999 4.48049 15.8945 4.293 15.707L2.293 13.707C2.10545 13.5195 2.00006 13.2652 2 13V7H3V13H4V7H5V13H13V1H5V3H4V1H3V3H2V1C2 0.734784 2.10536 0.48043 2.29289 0.292893C2.48043 0.105357 2.73478 0 3 0H13C13.2652 0 13.5196 0.105357 13.7071 0.292893C13.8946 0.48043 14 0.734784 14 1V2ZM14 2V13C14 13.2652 13.8946 13.5196 13.7071 13.7071C13.5196 13.8946 13.2652 14 13 14H4L5 15H15V3L14 2Z" fill="white"/>
<path opacity="0.24" d="M14 2V13C14 13.5523 13.5523 14 13 14H4L5 15H15V3L14 2Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 958 B

View file

@ -0,0 +1,5 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M10 1.70697V5H13.293L10 1.70697Z" fill="white"/>
<path opacity="0.6" d="M6 14H3V1H9V6H14V10H15V5.293L9.707 0L2 0V15H6V14ZM10 1.707L13.293 5H10V1.707Z" fill="white"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,5 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M10 1.70697V4.49997H12.793L10 1.70697Z" fill="white"/>
<path opacity="0.6" d="M6 14H2.5V1H9V5.5H13.5V10H14.5V4.793L9.707 0H1.5V15H6V14ZM10 1.707L12.793 4.5H10V1.707Z" fill="white"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,10 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M11 1.70703V4H13.293L11 1.70703Z" fill="white"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
<path opacity="0.36" d="M7 4H1V6H7V4Z" fill="#DB2C3A"/>
<path opacity="0.9" d="M7 4V6H1V4H7ZM8 3H0V7H8V3Z" fill="#DB2C3A"/>
<g opacity="0.6">
<path d="M4 14H6V15H3V7H4V14Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 3V1H10V5H14V10H15V4.293L10.707 0H3V3H4ZM13.293 4L11 1.707V4H13.293Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,10 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M10.5 1.70703V4.50003H13.293L10.5 1.70703Z" fill="white"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
<path opacity="0.36" d="M7 4H1V6H7V4Z" fill="#DB2C3A"/>
<path opacity="0.9" d="M7 4V6H1V4H7ZM8 3H0V7H8V3Z" fill="#DB2C3A"/>
<g opacity="0.6">
<path d="M4 14H6V15H3V7H4V14Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 3V1H9.5V5.5H14V10H15V4.793L10.207 0H3V3H4ZM13.293 4.5L10.5 1.707V4.5H13.293Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M12 1.70703V4H14.293L12 1.70703Z" fill="white"/>
<path opacity="0.36" d="M8 4H1V6H8V4Z" fill="#DB2C3A"/>
<path opacity="0.9" d="M8 4V6H1V4H8ZM9 3H0V7H9V3Z" fill="#DB2C3A"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M3 0H11.707L16 4.293V16H3V7H4V15H15V5H11V1H4V3H3V0ZM14.293 4L12 1.707V4H14.293Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 459 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M11.5 1.70703V4.50003H14.293L11.5 1.70703Z" fill="white"/>
<path opacity="0.36" d="M8 4H1V6H8V4Z" fill="#DB2C3A"/>
<path opacity="0.9" d="M8 4V6H1V4H8ZM9 3H0V7H9V3Z" fill="#DB2C3A"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M3 0H11.207L16 4.793V16H3V7H4V15H15V5.5H10.5V1H4V3H3V0ZM14.293 4.5L11.5 1.707V4.5H14.293Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 479 B

View file

@ -0,0 +1,12 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M1 2H14V5H1V2ZM2 3H3V4H2V3ZM4 3H5V4H4V3ZM7 3H6V4H7V3Z" fill="white"/>
<path opacity="0.85" d="M3 3H2V4H3V3Z" fill="#E24940"/>
<path opacity="0.85" d="M5 3H4V4H5V3Z" fill="#E0A32A"/>
<path opacity="0.85" d="M7 3H6V4H7V3Z" fill="#28AD31"/>
<path opacity="0.4" d="M5 10H3V12H5V10Z" fill="#4072E5"/>
<path d="M5 12H3V10H5V9H2V13H5V12Z" fill="#4072E5"/>
<path opacity="0.6" d="M15 9V15H7V9H15ZM15 8H7C6.73478 8 6.48043 8.10536 6.29289 8.29289C6.10536 8.48043 6 8.73478 6 9V15C6 15.2652 6.10536 15.5196 6.29289 15.7071C6.48043 15.8946 6.73478 16 7 16H15C15.2652 16 15.5196 15.8946 15.7071 15.7071C15.8946 15.5196 16 15.2652 16 15V9C16 8.73478 15.8946 8.48043 15.7071 8.29289C15.5196 8.10536 15.2652 8 15 8ZM11 11C11.1978 11 11.3911 11.0586 11.5556 11.1685C11.72 11.2784 11.8482 11.4346 11.9239 11.6173C11.9996 11.8 12.0194 12.0011 11.9808 12.1951C11.9422 12.3891 11.847 12.5673 11.7071 12.7071C11.5673 12.847 11.3891 12.9422 11.1951 12.9808C11.0011 13.0194 10.8 12.9996 10.6173 12.9239C10.4346 12.8482 10.2784 12.72 10.1685 12.5556C10.0586 12.3911 10 12.1978 10 12C10 11.7348 10.1054 11.4804 10.2929 11.2929C10.4804 11.1054 10.7348 11 11 11ZM11 10C10.6044 10 10.2178 10.1173 9.88886 10.3371C9.55996 10.5568 9.30362 10.8692 9.15224 11.2346C9.00087 11.6001 8.96126 12.0022 9.03843 12.3902C9.1156 12.7781 9.30608 13.1345 9.58579 13.4142C9.86549 13.6939 10.2219 13.8844 10.6098 13.9616C10.9978 14.0387 11.3999 13.9991 11.7654 13.8478C12.1308 13.6964 12.4432 13.44 12.6629 13.1111C12.8827 12.7822 13 12.3956 13 12C13 11.4696 12.7893 10.9609 12.4142 10.5858C12.0391 10.2107 11.5304 10 11 10ZM13 10.5H14V9.5H13V10.5Z" fill="white"/>
<path opacity="0.12" d="M11.5556 11.1685C11.3911 11.0586 11.1978 11 11 11C10.7348 11 10.4804 11.1054 10.2929 11.2929C10.1054 11.4804 10 11.7348 10 12C10 12.1978 10.0586 12.3911 10.1685 12.5556C10.2784 12.72 10.4346 12.8482 10.6173 12.9239C10.8 12.9996 11.0011 13.0194 11.1951 12.9808C11.3891 12.9422 11.5673 12.847 11.7071 12.7071C11.847 12.5673 11.9422 12.3891 11.9808 12.1951C12.0194 12.0011 11.9996 11.8 11.9239 11.6173C11.8482 11.4346 11.72 11.2784 11.5556 11.1685Z" fill="white"/>
<path opacity="0.24" fill-rule="evenodd" clip-rule="evenodd" d="M7 15H15V9H7V15ZM9.88886 10.3371C10.2178 10.1173 10.6044 10 11 10C11.5304 10 12.0391 10.2107 12.4142 10.5858C12.7893 10.9609 13 11.4696 13 12C13 12.3956 12.8827 12.7822 12.6629 13.1111C12.4432 13.44 12.1308 13.6964 11.7654 13.8478C11.3999 13.9991 10.9978 14.0387 10.6098 13.9616C10.2219 13.8844 9.86549 13.6939 9.58579 13.4142C9.30608 13.1345 9.1156 12.7781 9.03843 12.3902C8.96126 12.0022 9.00087 11.6001 9.15224 11.2346C9.30362 10.8692 9.55996 10.5568 9.88886 10.3371ZM14 10.5H13V9.5H14V10.5Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M1 1H14C14.2652 1 14.5196 1.10536 14.7071 1.29289C14.8946 1.48043 15 1.73478 15 2V8H14V6H1V14H6V15H0V2C0 1.73478 0.105357 1.48043 0.292893 1.29289C0.48043 1.10536 0.734784 1 1 1ZM1 5H14V2H1V5Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,12 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M1 2H14V5H1V2ZM2 3H3V4H2V3ZM4 3H5V4H4V3ZM7 3H6V4H7V3Z" fill="white"/>
<path opacity="0.85" d="M3 3H2V4H3V3Z" fill="#E24940"/>
<path opacity="0.85" d="M5 3H4V4H5V3Z" fill="#E0A32A"/>
<path opacity="0.85" d="M7 3H6V4H7V3Z" fill="#28AD31"/>
<path opacity="0.4" d="M5 10H3V12H5V10Z" fill="#4072E5"/>
<path d="M5 12H3V10H5V9H2V13H5V12Z" fill="#4072E5"/>
<path opacity="0.6" d="M15 9V15H7V9H15ZM15 8H7C6.73478 8 6.48043 8.10536 6.29289 8.29289C6.10536 8.48043 6 8.73478 6 9V15C6 15.2652 6.10536 15.5196 6.29289 15.7071C6.48043 15.8946 6.73478 16 7 16H15C15.2652 16 15.5196 15.8946 15.7071 15.7071C15.8946 15.5196 16 15.2652 16 15V9C16 8.73478 15.8946 8.48043 15.7071 8.29289C15.5196 8.10536 15.2652 8 15 8ZM11 11C11.1978 11 11.3911 11.0586 11.5556 11.1685C11.72 11.2784 11.8482 11.4346 11.9239 11.6173C11.9996 11.8 12.0194 12.0011 11.9808 12.1951C11.9422 12.3891 11.847 12.5673 11.7071 12.7071C11.5673 12.847 11.3891 12.9422 11.1951 12.9808C11.0011 13.0194 10.8 12.9996 10.6173 12.9239C10.4346 12.8482 10.2784 12.72 10.1685 12.5556C10.0586 12.3911 10 12.1978 10 12C10 11.7348 10.1054 11.4804 10.2929 11.2929C10.4804 11.1054 10.7348 11 11 11ZM11 10C10.6044 10 10.2178 10.1173 9.88886 10.3371C9.55996 10.5568 9.30362 10.8692 9.15224 11.2346C9.00087 11.6001 8.96126 12.0022 9.03843 12.3902C9.1156 12.7781 9.30608 13.1345 9.58579 13.4142C9.86549 13.6939 10.2219 13.8844 10.6098 13.9616C10.9978 14.0387 11.3999 13.9991 11.7654 13.8478C12.1308 13.6964 12.4432 13.44 12.6629 13.1111C12.8827 12.7822 13 12.3956 13 12C13 11.4696 12.7893 10.9609 12.4142 10.5858C12.0391 10.2107 11.5304 10 11 10ZM13 10.5H14V9.5H13V10.5Z" fill="white"/>
<path opacity="0.12" d="M11.5556 11.1685C11.3911 11.0586 11.1978 11 11 11C10.7348 11 10.4804 11.1054 10.2929 11.2929C10.1054 11.4804 10 11.7348 10 12C10 12.1978 10.0586 12.3911 10.1685 12.5556C10.2784 12.72 10.4346 12.8482 10.6173 12.9239C10.8 12.9996 11.0011 13.0194 11.1951 12.9808C11.3891 12.9422 11.5673 12.847 11.7071 12.7071C11.847 12.5673 11.9422 12.3891 11.9808 12.1951C12.0194 12.0011 11.9996 11.8 11.9239 11.6173C11.8482 11.4346 11.72 11.2784 11.5556 11.1685Z" fill="white"/>
<path opacity="0.24" fill-rule="evenodd" clip-rule="evenodd" d="M7 15H15V9H7V15ZM9.88886 10.3371C10.2178 10.1173 10.6044 10 11 10C11.5304 10 12.0391 10.2107 12.4142 10.5858C12.7893 10.9609 13 11.4696 13 12C13 12.3956 12.8827 12.7822 12.6629 13.1111C12.4432 13.44 12.1308 13.6964 11.7654 13.8478C11.3999 13.9991 10.9978 14.0387 10.6098 13.9616C10.2219 13.8844 9.86549 13.6939 9.58579 13.4142C9.30608 13.1345 9.1156 12.7781 9.03843 12.3902C8.96126 12.0022 9.00087 11.6001 9.15224 11.2346C9.30362 10.8692 9.55996 10.5568 9.88886 10.3371ZM14 10.5H13V9.5H14V10.5Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M1 1H14C14.2652 1 14.5196 1.10536 14.7071 1.29289C14.8946 1.48043 15 1.73478 15 2V8H14V6H1V14H6V15H0V2C0 1.73478 0.105357 1.48043 0.292893 1.29289C0.48043 1.10536 0.734784 1 1 1ZM1 5H14V2H1V5Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,10 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M1 2H14V5H1V2ZM2 3H3V4H2V3ZM4 3H5V4H4V3ZM7 3H6V4H7V3Z" fill="white"/>
<path opacity="0.85" d="M3 3H2V4H3V3Z" fill="#E24940"/>
<path opacity="0.85" d="M5 3H4V4H5V3Z" fill="#E0A32A"/>
<path opacity="0.85" d="M7 3H6V4H7V3Z" fill="#28AD31"/>
<path opacity="0.6" d="M6.051 14H1V6H14V10.051C14.3467 10.0995 14.6839 10.2007 15 10.351V2C15 1.73478 14.8946 1.48043 14.7071 1.29289C14.5196 1.10536 14.2652 1 14 1H1C0.734784 1 0.48043 1.10536 0.292893 1.29289C0.105357 1.48043 0 1.73478 0 2L0 15H6.351C6.2007 14.6839 6.09954 14.3467 6.051 14ZM1 2H14V5H1V2Z" fill="white"/>
<path opacity="0.4" d="M11.5 10.632C10.9152 10.2187 10.2161 9.9978 9.5 10C8.74896 10.0027 8.01878 10.2474 7.41771 10.6977C6.96032 11.0403 6.59622 11.4882 6.35414 12H3V9H12V10.3403C11.8257 10.4231 11.6584 10.5207 11.5 10.632Z" fill="#4072E5"/>
<path d="M6.351 12H3V9H12V10.342C12.3162 10.1919 12.6534 10.0907 13 10.042V8H2V13H6.051C6.09954 12.6533 6.2007 12.3161 6.351 12Z" fill="#4072E5"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1,10 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M1 2H14V5H1V2ZM2 3H3V4H2V3ZM4 3H5V4H4V3ZM7 3H6V4H7V3Z" fill="white"/>
<path opacity="0.85" d="M3 3H2V4H3V3Z" fill="#E24940"/>
<path opacity="0.85" d="M5 3H4V4H5V3Z" fill="#E0A32A"/>
<path opacity="0.85" d="M7 3H6V4H7V3Z" fill="#28AD31"/>
<path opacity="0.6" d="M6.051 14H1V6H14V10.051C14.3467 10.0995 14.6839 10.2007 15 10.351V2C15 1.73478 14.8946 1.48043 14.7071 1.29289C14.5196 1.10536 14.2652 1 14 1H1C0.734784 1 0.48043 1.10536 0.292893 1.29289C0.105357 1.48043 0 1.73478 0 2L0 15H6.351C6.2007 14.6839 6.09954 14.3467 6.051 14ZM1 2H14V5H1V2Z" fill="white"/>
<path opacity="0.4" d="M11.5 10.632C10.9152 10.2187 10.2161 9.9978 9.5 10C8.74896 10.0027 8.01878 10.2474 7.41771 10.6977C6.96032 11.0403 6.59622 11.4882 6.35414 12H3V9H12V10.3403C11.8257 10.4231 11.6584 10.5207 11.5 10.632Z" fill="#4072E5"/>
<path d="M6.351 12H3V9H12V10.342C12.3162 10.1919 12.6534 10.0907 13 10.042V8H2V13H6.051C6.09954 12.6533 6.2007 12.3161 6.351 12Z" fill="#4072E5"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.12" d="M7 2.5C7 2.10218 7.15804 1.72064 7.43934 1.43934C7.72064 1.15804 8.10218 1 8.5 1C8.89782 1 9.27936 1.15804 9.56066 1.43934C9.84196 1.72064 10 2.10218 10 2.5V8.5C10 8.89782 9.84196 9.27936 9.56066 9.56066C9.27936 9.84196 8.89782 10 8.5 10C8.10218 10 7.72064 9.84196 7.43934 9.56066C7.15804 9.27936 7 8.89782 7 8.5V2.5Z" fill="white"/>
<path opacity="0.6" d="M8.5 0C7.83696 0 7.20107 0.263392 6.73223 0.732233C6.26339 1.20107 6 1.83696 6 2.5V8.5C6 9.16304 6.26339 9.79893 6.73223 10.2678C7.20107 10.7366 7.83696 11 8.5 11C9.16304 11 9.79893 10.7366 10.2678 10.2678C10.7366 9.79893 11 9.16304 11 8.5V2.5C11 1.83696 10.7366 1.20107 10.2678 0.732233C9.79893 0.263392 9.16304 0 8.5 0ZM10 8.5C10 8.89782 9.84196 9.27936 9.56066 9.56066C9.27936 9.84196 8.89782 10 8.5 10C8.10218 10 7.72064 9.84196 7.43934 9.56066C7.15804 9.27936 7 8.89782 7 8.5V2.5C7 2.10218 7.15804 1.72064 7.43934 1.43934C7.72064 1.15804 8.10218 1 8.5 1C8.89782 1 9.27936 1.15804 9.56066 1.43934C9.84196 1.72064 10 2.10218 10 2.5V8.5ZM9 12.949V15H12V16H5V15H8V12.949C6.90305 12.8286 5.88887 12.3084 5.15106 11.4878C4.41325 10.6671 4.00349 9.60353 4 8.5V6H5V8.5C5 9.42826 5.36875 10.3185 6.02513 10.9749C6.6815 11.6313 7.57174 12 8.5 12C9.42826 12 10.3185 11.6313 10.9749 10.9749C11.6313 10.3185 12 9.42826 12 8.5V6H13V8.5C12.9965 9.60353 12.5868 10.6671 11.8489 11.4878C11.1111 12.3084 10.0969 12.8286 9 12.949Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.12" d="M6.5 2.5C6.5 2.10218 6.65804 1.72064 6.93934 1.43934C7.22064 1.15804 7.60218 1 8 1C8.39782 1 8.77936 1.15804 9.06066 1.43934C9.34196 1.72064 9.5 2.10218 9.5 2.5V8.5C9.5 8.89782 9.34196 9.27936 9.06066 9.56066C8.77936 9.84196 8.39782 10 8 10C7.60218 10 7.22064 9.84196 6.93934 9.56066C6.65804 9.27936 6.5 8.89782 6.5 8.5V2.5Z" fill="white"/>
<path opacity="0.6" d="M8 0C7.33696 0 6.70107 0.263392 6.23223 0.732233C5.76339 1.20107 5.5 1.83696 5.5 2.5V8.5C5.5 9.16304 5.76339 9.79893 6.23223 10.2678C6.70107 10.7366 7.33696 11 8 11C8.66304 11 9.29893 10.7366 9.76777 10.2678C10.2366 9.79893 10.5 9.16304 10.5 8.5V2.5C10.5 1.83696 10.2366 1.20107 9.76777 0.732233C9.29893 0.263392 8.66304 0 8 0ZM9.5 8.5C9.5 8.89782 9.34196 9.27936 9.06066 9.56066C8.77936 9.84196 8.39782 10 8 10C7.60218 10 7.22064 9.84196 6.93934 9.56066C6.65804 9.27936 6.5 8.89782 6.5 8.5V2.5C6.5 2.10218 6.65804 1.72064 6.93934 1.43934C7.22064 1.15804 7.60218 1 8 1C8.39782 1 8.77936 1.15804 9.06066 1.43934C9.34196 1.72064 9.5 2.10218 9.5 2.5V8.5ZM8.5 12.949V15H11.5V16H4.5V15H7.5V12.949C6.40305 12.8286 5.38887 12.3084 4.65106 11.4878C3.91325 10.6671 3.50349 9.60353 3.5 8.5V6H4.5V8.5C4.5 9.42826 4.86875 10.3185 5.52513 10.9749C6.1815 11.6313 7.07174 12 8 12C8.92826 12 9.8185 11.6313 10.4749 10.9749C11.1313 10.3185 11.5 9.42826 11.5 8.5V6H12.5V8.5C12.4965 9.60353 12.0868 10.6671 11.3489 11.4878C10.6111 12.3084 9.59695 12.8286 8.5 12.949Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M13 8.5C13 6.5 10.963 5.782 9.16502 5.153C7.25302 4.484 6.00002 3.955 6.00002 2.75C6.00002 1.687 6.98102 1 8.50002 1C10.019 1 11 1.785 11 3H12C12 1.206 10.594 0 8.50002 0C6.40602 0 5.00002 1.105 5.00002 2.75C4.99551 3.2734 5.16506 3.78346 5.48202 4.2C5.03911 4.39911 4.66341 4.72232 4.40039 5.13052C4.13737 5.53872 3.9983 6.0144 4.00002 6.5C4.00002 8.505 6.03702 9.218 7.83502 9.847C9.74702 10.517 11 11.047 11 12.247C11 13.31 10.019 13.997 8.50002 13.997C6.98102 13.997 6.00002 13.212 6.00002 11.997H5.00002C5.00002 13.791 6.40602 14.997 8.50002 14.997C10.594 14.997 12 13.892 12 12.247C12.0049 11.7257 11.8368 11.2176 11.522 10.802C11.9638 10.6012 12.3382 10.2772 12.6004 9.86891C12.8626 9.46058 13.0013 8.98525 13 8.5ZM10.732 10.046C9.92801 9.55745 9.06552 9.1724 8.16502 8.9C6.25302 8.233 5.00002 7.705 5.00002 6.5C5.00972 6.13897 5.13811 5.7912 5.36533 5.51048C5.59255 5.22975 5.90594 5.03172 6.25702 4.947C7.06391 5.43923 7.93021 5.82668 8.83502 6.1C10.747 6.766 12 7.3 12 8.5C11.9872 8.861 11.8561 9.2078 11.6271 9.48711C11.398 9.76641 11.0835 9.96277 10.732 10.046Z" fill="#CC9200"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M12.5 9C12.5 7 10.463 6.282 8.66502 5.653C6.75302 4.984 5.50002 4.455 5.50002 3.25C5.50002 2.187 6.48102 1.5 8.00002 1.5C9.51902 1.5 10.5 2.285 10.5 3.5H11.5C11.5 1.706 10.094 0.5 8.00002 0.5C5.90602 0.5 4.50002 1.605 4.50002 3.25C4.49551 3.7734 4.66506 4.28346 4.98202 4.7C4.53911 4.89911 4.16341 5.22232 3.90039 5.63052C3.63737 6.03872 3.4983 6.5144 3.50002 7C3.50002 9.005 5.53702 9.718 7.33502 10.347C9.24702 11.017 10.5 11.547 10.5 12.747C10.5 13.81 9.51902 14.497 8.00002 14.497C6.48102 14.497 5.50002 13.712 5.50002 12.497H4.50002C4.50002 14.291 5.90602 15.497 8.00002 15.497C10.094 15.497 11.5 14.392 11.5 12.747C11.5049 12.2257 11.3368 11.7176 11.022 11.302C11.4638 11.1012 11.8382 10.7772 12.1004 10.3689C12.3626 9.96058 12.5013 9.48525 12.5 9ZM10.232 10.546C9.42801 10.0574 8.56552 9.6724 7.66502 9.4C5.75302 8.733 4.50002 8.205 4.50002 7C4.50972 6.63897 4.63811 6.2912 4.86533 6.01048C5.09255 5.72975 5.40594 5.53172 5.75702 5.447C6.56391 5.93923 7.43021 6.32668 8.33502 6.6C10.247 7.266 11.5 7.8 11.5 9C11.4872 9.361 11.3561 9.7078 11.1271 9.98711C10.898 10.2664 10.5835 10.4628 10.232 10.546Z" fill="#CC9200"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.36" d="M11 3H5V5H11V3Z" fill="#CC7A52"/>
<path opacity="0.6" d="M13 1V15H3V1H13ZM14 0H2V16H14V0Z" fill="white"/>
<path opacity="0.9" d="M11 3V5H5V3H11ZM12 2H4V6H12V2Z" fill="#CC7A52"/>
<path opacity="0.75" d="M9 8H4V7H9V8ZM8 9H4V10H8V9ZM9 11H4V12H9V11ZM8 13H4V14H8V13Z" fill="white"/>
<path opacity="0.36" d="M10 7H12V8H10V7ZM10 10H12V9H10V10ZM10 12H12V11H10V12Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 499 B

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.36" d="M11 3H5V5H11V3Z" fill="#CC7A52"/>
<path opacity="0.6" d="M13 1V15H3V1H13ZM14 0H2V16H14V0Z" fill="white"/>
<path opacity="0.9" d="M11 3V5H5V3H11ZM12 2H4V6H12V2Z" fill="#CC7A52"/>
<path opacity="0.75" d="M9 8H4V7H9V8ZM8 9H4V10H8V9ZM9 11H4V12H9V11ZM8 13H4V14H8V13Z" fill="white"/>
<path opacity="0.36" d="M10 7H12V8H10V7ZM10 10H12V9H10V10ZM10 12H12V11H10V12Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 499 B

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.2" d="M8.438 1.872L8.219 1.723C7.289 1.092 4.8 0.607 2.016 0.517L1.5 0.5V13.5L1.985 13.515C3.96636 13.5226 5.93509 13.8308 7.824 14.429L8.5 14.684V2.179L8.438 1.872Z" fill="#4072E5"/>
<path d="M8.5 1.309C7.374 0.546 4.446 0 1 0V14C3.37737 13.9087 5.75101 14.26 8 15.036C8.17376 15.1133 8.34098 15.2046 8.5 15.309C8.65902 15.2046 8.82624 15.1133 9 15.036C11.249 14.26 13.6226 13.9087 16 14V0C12.554 0 9.626 0.546 8.5 1.309ZM8 13.961C6.06008 13.341 4.03659 13.0219 2 13.015V1.015C4.961 1.115 7.188 1.627 7.939 2.136L8 2.178V13.961ZM15 13.015C12.9634 13.0219 10.9399 13.341 9 13.961V2.179L9.061 2.137C9.812 1.628 12.039 1.113 15 1.016V13.015Z" fill="#4072E5"/>
<path opacity="0.6" d="M14 4.06601C12.6472 4.13532 11.306 4.35159 10 4.71101V3.67001C11.3108 3.34112 12.6504 3.14018 14 3.07001V4.06601ZM14 6.06601C12.6471 6.13504 11.3058 6.35166 10 6.71201V5.67101C11.3107 5.34159 12.6503 5.14064 14 5.07101V6.06601ZM14 10.066C12.6471 10.135 11.3058 10.3517 10 10.712V9.67101C11.3107 9.34159 12.6503 9.14064 14 9.07101V10.066ZM14 8.06601C12.6471 8.13504 11.3058 8.35166 10 8.71201V7.67101C11.3107 7.34159 12.6503 7.14064 14 7.07101V8.06601Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.2" d="M7.938 1.872L7.719 1.723C6.789 1.092 4.3 0.607 1.516 0.517L1 0.5V13.5L1.485 13.515C3.46636 13.5226 5.43509 13.8308 7.324 14.429L8 14.684V2.179L7.938 1.872Z" fill="#4072E5"/>
<path d="M8 1.309C6.874 0.546 3.946 0 0.5 0V14C2.87737 13.9087 5.25101 14.26 7.5 15.036C7.67376 15.1133 7.84098 15.2046 8 15.309C8.15902 15.2046 8.32624 15.1133 8.5 15.036C10.749 14.26 13.1226 13.9087 15.5 14V0C12.054 0 9.126 0.546 8 1.309ZM7.5 13.961C5.56008 13.341 3.53659 13.0219 1.5 13.015V1.015C4.461 1.115 6.688 1.627 7.439 2.136L7.5 2.178V13.961ZM14.5 13.015C12.4634 13.0219 10.4399 13.341 8.5 13.961V2.179L8.561 2.137C9.312 1.628 11.539 1.113 14.5 1.016V13.015Z" fill="#4072E5"/>
<path opacity="0.6" d="M13.5 4.06601C12.1472 4.13532 10.806 4.35159 9.5 4.71101V3.67001C10.8108 3.34112 12.1504 3.14018 13.5 3.07001V4.06601ZM13.5 6.06601C12.1471 6.13504 10.8058 6.35166 9.5 6.71201V5.67101C10.8107 5.34159 12.1503 5.14064 13.5 5.07101V6.06601ZM13.5 10.066C12.1471 10.135 10.8058 10.3517 9.5 10.712V9.67101C10.8107 9.34159 12.1503 9.14064 13.5 9.07101V10.066ZM13.5 8.06601C12.1471 8.13504 10.8058 8.35166 9.5 8.71201V7.67101C10.8107 7.34159 12.1503 7.14064 13.5 7.07101V8.06601Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 2H13L14 3V15H4L3 14H12C12.2652 14 12.5196 13.8946 12.7071 13.7071C12.8946 13.5196 13 13.2652 13 13V1C13 0.734784 12.8946 0.48043 12.7071 0.292893C12.5196 0.105357 12.2652 0 12 0L2 0C1.73478 0 1.48043 0.105357 1.29289 0.292893C1.10536 0.48043 1 0.734784 1 1V13C1.00006 13.2652 1.10545 13.5195 1.293 13.707L3.293 15.707C3.48049 15.8945 3.73481 15.9999 4 16H14C14.2652 16 14.5196 15.8946 14.7071 15.7071C14.8946 15.5196 15 15.2652 15 15V3C15 2.73478 14.8946 2.48043 14.7071 2.29289C14.5196 2.10536 14.2652 2 14 2ZM4 1H12V13H4V1ZM2 1H3V13H2V1Z" fill="#4072E5"/>
<path opacity="0.2" d="M12 1H4V13H12V1Z" fill="#4072E5"/>
<path opacity="0.4" d="M3 1H2V13H3V1Z" fill="#4072E5"/>
</svg>

After

Width:  |  Height:  |  Size: 788 B

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 2H13L14 3V15H4L3 14H12C12.2652 14 12.5196 13.8946 12.7071 13.7071C12.8946 13.5196 13 13.2652 13 13V1C13 0.734784 12.8946 0.48043 12.7071 0.292893C12.5196 0.105357 12.2652 0 12 0L2 0C1.73478 0 1.48043 0.105357 1.29289 0.292893C1.10536 0.48043 1 0.734784 1 1V13C1.00006 13.2652 1.10545 13.5195 1.293 13.707L3.293 15.707C3.48049 15.8945 3.73481 15.9999 4 16H14C14.2652 16 14.5196 15.8946 14.7071 15.7071C14.8946 15.5196 15 15.2652 15 15V3C15 2.73478 14.8946 2.48043 14.7071 2.29289C14.5196 2.10536 14.2652 2 14 2ZM4 1H12V13H4V1ZM2 1H3V13H2V1Z" fill="#4072E5"/>
<path opacity="0.2" d="M12 1H4V13H12V1Z" fill="#4072E5"/>
<path opacity="0.4" d="M3 1H2V13H3V1Z" fill="#4072E5"/>
</svg>

After

Width:  |  Height:  |  Size: 788 B

View file

@ -0,0 +1,11 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.34">
<path d="M13.5 12C14.3789 12 14.8281 11.7031 14.9609 11H12.0391C12.1719 11.7031 12.6211 12 13.5 12Z" fill="#CC9200"/>
<path d="M3.5 12C4.37891 12 4.82813 11.7031 4.96094 11H2.03906C2.17188 11.7031 2.62109 12 3.5 12Z" fill="#CC9200"/>
</g>
<g opacity="0.6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.48435 2.99976C3.38111 3.00301 3.28126 3.03817 3.19864 3.1006C3.11184 3.1662 3.0488 3.25832 3.01909 3.36299L1.02173 10.3538C1.04545 10.2762 1.08791 10.2048 1.14631 10.1465C1.24008 10.0527 1.36725 10 1.49986 10H5.49986C5.63247 10 5.75965 10.0527 5.85342 10.1465C5.94718 10.2402 5.99986 10.3674 5.99986 10.5L6.00021 10.5031C6.0005 10.4558 5.99411 10.4087 5.98109 10.363L3.98109 3.36299C3.95138 3.25832 3.88834 3.1662 3.80153 3.1006C3.72062 3.03946 3.62316 3.00447 3.52219 3H3.49986C3.49468 3 3.48951 2.99992 3.48435 2.99976ZM4.83709 9.99999H2.16309L3.50009 5.31999L4.83709 9.99999Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.478 3C13.377 3.00447 13.2796 3.03946 13.1986 3.1006C13.1118 3.1662 13.0488 3.25832 13.0191 3.36299L11.0217 10.3537C11.0455 10.2762 11.0879 10.2048 11.1463 10.1465C11.2401 10.0527 11.3673 10 11.4999 10H15.4999C15.6325 10 15.7596 10.0527 15.8534 10.1465C15.9472 10.2402 15.9999 10.3674 15.9999 10.5L16.0002 10.5031C16.0005 10.4559 15.9941 10.4087 15.9811 10.363L13.9811 3.36299C13.9514 3.25832 13.8883 3.1662 13.8015 3.1006C13.7189 3.03813 13.6189 3.00296 13.5156 2.99976C13.5104 2.99992 13.5051 3 13.4999 3H13.478ZM14.8371 9.99999H12.1631L13.5001 5.31999L14.8371 9.99999Z" fill="white"/>
</g>
<path opacity="0.85" d="M14.9609 11C14.8281 11.7031 14.3789 12 13.5 12C12.6211 12 12.1719 11.7031 12.0391 11H14.9609ZM16 10.5C16 10.2227 15.7773 10 15.5 10H11.5C11.2227 10 11 10.2227 11 10.5C11 12.1133 11.8867 13 13.5 13C15.1133 13 16 12.1133 16 10.5ZM4.96094 11C4.82812 11.7031 4.37891 12 3.5 12C2.62109 12 2.17188 11.7031 2.03906 11H4.96094ZM6 10.5C6 10.2227 5.77734 10 5.5 10H1.5C1.22266 10 1 10.2227 1 10.5C1 12.1133 1.88672 13 3.5 13C5.11328 13 6 12.1133 6 10.5ZM11.5 15H10C10 14.4492 9.55078 14 9 14V4H8V14C7.44922 14 7 14.4492 7 15H5.5C5.22266 15 5 15.2227 5 15.5C5 15.7773 5.22266 16 5.5 16H11.5C11.7773 16 12 15.7773 12 15.5C12 15.2227 11.7773 15 11.5 15ZM14 2.5C14 2.77734 13.7773 3 13.5 3H3.5C3.22266 3 3 2.77734 3 2.5C3 2.22266 3.22266 2 3.5 2H8V0.5C8 0.222656 8.22266 0 8.5 0C8.77734 0 9 0.222656 9 0.5V2H13.5C13.7773 2 14 2.22266 14 2.5Z" fill="#CC9200"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,11 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.34">
<path d="M13 12C13.8789 12 14.3281 11.7031 14.4609 11H11.5391C11.6719 11.7031 12.1211 12 13 12Z" fill="#CC9200"/>
<path d="M3 12C3.87891 12 4.32813 11.7031 4.46094 11H1.53906C1.67188 11.7031 2.12109 12 3 12Z" fill="#CC9200"/>
</g>
<g opacity="0.6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.98435 2.99976C2.88111 3.00301 2.78126 3.03817 2.69864 3.1006C2.61184 3.1662 2.5488 3.25832 2.51909 3.36299L0.521729 10.3538C0.545453 10.2762 0.587912 10.2048 0.646308 10.1465C0.740076 10.0527 0.867253 10 0.999862 10H4.99986C5.13247 10 5.25965 10.0527 5.35342 10.1465C5.44718 10.2402 5.49986 10.3674 5.49986 10.5L5.50021 10.5031C5.5005 10.4558 5.49411 10.4087 5.48109 10.363L3.48109 3.36299C3.45138 3.25832 3.38834 3.1662 3.30153 3.1006C3.22062 3.03946 3.12316 3.00447 3.02219 3H2.99986C2.99468 3 2.98951 2.99992 2.98435 2.99976ZM4.33709 9.99999H1.66309L3.00009 5.31999L4.33709 9.99999Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.978 3C12.877 3.00447 12.7796 3.03946 12.6986 3.1006C12.6118 3.1662 12.5488 3.25832 12.5191 3.36299L10.5217 10.3537C10.5455 10.2762 10.5879 10.2048 10.6463 10.1465C10.7401 10.0527 10.8673 10 10.9999 10H14.9999C15.1325 10 15.2596 10.0527 15.3534 10.1465C15.4472 10.2402 15.4999 10.3674 15.4999 10.5L15.5002 10.5031C15.5005 10.4559 15.4941 10.4087 15.4811 10.363L13.4811 3.36299C13.4514 3.25832 13.3883 3.1662 13.3015 3.1006C13.2189 3.03813 13.1189 3.00296 13.0156 2.99976C13.0104 2.99992 13.0051 3 12.9999 3H12.978ZM14.3371 9.99999H11.6631L13.0001 5.31999L14.3371 9.99999Z" fill="white"/>
</g>
<path opacity="0.85" d="M14.4609 11C14.3281 11.7031 13.8789 12 13 12C12.1211 12 11.6719 11.7031 11.5391 11H14.4609ZM15.5 10.5C15.5 10.2227 15.2773 10 15 10H11C10.7227 10 10.5 10.2227 10.5 10.5C10.5 12.1133 11.3867 13 13 13C14.6133 13 15.5 12.1133 15.5 10.5ZM4.46094 11C4.32812 11.7031 3.87891 12 3 12C2.12109 12 1.67188 11.7031 1.53906 11H4.46094ZM5.5 10.5C5.5 10.2227 5.27734 10 5 10H1C0.722656 10 0.5 10.2227 0.5 10.5C0.5 12.1133 1.38672 13 3 13C4.61328 13 5.5 12.1133 5.5 10.5ZM11 15H9.5C9.5 14.4492 9.05078 14 8.5 14V4H7.5V14C6.94922 14 6.5 14.4492 6.5 15H5C4.72266 15 4.5 15.2227 4.5 15.5C4.5 15.7773 4.72266 16 5 16H11C11.2773 16 11.5 15.7773 11.5 15.5C11.5 15.2227 11.2773 15 11 15ZM13.5 2.5C13.5 2.77734 13.2773 3 13 3H3C2.72266 3 2.5 2.77734 2.5 2.5C2.5 2.22266 2.72266 2 3 2H7.5V0.5C7.5 0.222656 7.72266 0 8 0C8.27734 0 8.5 0.222656 8.5 0.5V2H13C13.2773 2 13.5 2.22266 13.5 2.5Z" fill="#CC9200"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M6.1109 13.388L0.7229 7.99999L6.1109 2.61099L6.8889 3.38799L2.2769 7.99999L6.8889 12.611L6.1109 13.388ZM15.2769 7.99999L9.8889 2.61099L9.1109 3.38799L13.7229 7.99999L9.1109 12.611L9.8889 13.388L15.2769 7.99999Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 356 B

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M6.1109 13.388L0.7229 7.99999L6.1109 2.61099L6.8889 3.38799L2.2769 7.99999L6.8889 12.611L6.1109 13.388ZM15.2769 7.99999L9.8889 2.61099L9.1109 3.38799L13.7229 7.99999L9.1109 12.611L9.8889 13.388L15.2769 7.99999Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 356 B

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.2" d="M11 5H5V15H11V5Z" fill="#CC7A52"/>
<path opacity="0.9" d="M14 8L15 2H1L2 8H4V15H2V16H14V15H12V8H14ZM2.847 7L2.18 3H13.82L13.153 7H12V4H4V7H2.847ZM11 15H5V5H11V15Z" fill="#CC7A52"/>
<g opacity="0.6">
<path d="M10.4946 3L10.5001 3.00002L10.5057 3H10.4946Z" fill="white"/>
<path d="M9.29212 2H10.7081L8.85414 0.146021C8.76026 0.0521346 8.63292 -0.000610352 8.50014 -0.000610352C8.36737 -0.000610352 8.24003 0.0521346 8.14614 0.146021C8.05226 0.239908 7.99951 0.367245 7.99951 0.500021C7.99951 0.632797 8.05226 0.760135 8.14614 0.854021L9.29212 2Z" fill="white"/>
</g>
<path opacity="0.4" d="M2.17993 3L2.84693 7H3.99993V4H11.9999V7H13.1529L13.8199 3H2.17993Z" fill="#CC7A52"/>
</svg>

After

Width:  |  Height:  |  Size: 800 B

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.2" d="M11 5H5V15H11V5Z" fill="#CC7A52"/>
<path opacity="0.9" d="M14 8L15 2H1L2 8H4V15H2V16H14V15H12V8H14ZM2.847 7L2.18 3H13.82L13.153 7H12V4H4V7H2.847ZM11 15H5V5H11V15Z" fill="#CC7A52"/>
<g opacity="0.6">
<path d="M10.4946 3L10.5001 3.00002L10.5057 3H10.4946Z" fill="white"/>
<path d="M9.29212 2H10.7081L8.85414 0.146021C8.76026 0.0521346 8.63292 -0.000610352 8.50014 -0.000610352C8.36737 -0.000610352 8.24003 0.0521346 8.14614 0.146021C8.05226 0.239908 7.99951 0.367245 7.99951 0.500021C7.99951 0.632797 8.05226 0.760135 8.14614 0.854021L9.29212 2Z" fill="white"/>
</g>
<path opacity="0.4" d="M2.17993 3L2.84693 7H3.99993V4H11.9999V7H13.1529L13.8199 3H2.17993Z" fill="#CC7A52"/>
</svg>

After

Width:  |  Height:  |  Size: 800 B

View file

@ -0,0 +1,16 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.12">
<path d="M5.5 7H3V8H5.5V7Z" fill="white"/>
<path d="M5.5 9H3V10H5.5V9Z" fill="white"/>
<path d="M3 11H5.5V12H3V11Z" fill="white"/>
<path d="M13 7H10.5V8H13V7Z" fill="white"/>
<path d="M10.5 9H13V10H10.5V9Z" fill="white"/>
<path d="M13 11H10.5V12H13V11Z" fill="white"/>
<path d="M6.5 7H9.5V8H6.5V7Z" fill="white"/>
<path d="M9.5 9H6.5V10H9.5V9Z" fill="white"/>
<path d="M6.5 11H9.5V12H6.5V11Z" fill="white"/>
</g>
<path d="M14 3.5H2V4.5H14V3.5Z" fill="#39BF68"/>
<path opacity="0.6" d="M2 6V13H14V6H2ZM9.5 7V8H6.5V7H9.5ZM9.5 9V10H6.5V9H9.5ZM3 7H5.5V8H3V7ZM3 9H5.5V10H3V9ZM3 12V11H5.5V12H3ZM6.5 12V11H9.5V12H6.5ZM13 12H10.5V11H13V12ZM13 10H10.5V9H13V10ZM13 8H10.5V7H13V8Z" fill="white"/>
<path opacity="0.6" d="M15 2V14H1V2H15ZM16 1H0V15H16V1Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 880 B

View file

@ -0,0 +1,16 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.12">
<path d="M5.5 7H3V8H5.5V7Z" fill="white"/>
<path d="M5.5 9H3V10H5.5V9Z" fill="white"/>
<path d="M3 11H5.5V12H3V11Z" fill="white"/>
<path d="M13 7H10.5V8H13V7Z" fill="white"/>
<path d="M10.5 9H13V10H10.5V9Z" fill="white"/>
<path d="M13 11H10.5V12H13V11Z" fill="white"/>
<path d="M6.5 7H9.5V8H6.5V7Z" fill="white"/>
<path d="M9.5 9H6.5V10H9.5V9Z" fill="white"/>
<path d="M6.5 11H9.5V12H6.5V11Z" fill="white"/>
</g>
<path d="M14 3.5H2V4.5H14V3.5Z" fill="#39BF68"/>
<path opacity="0.6" d="M2 6V13H14V6H2ZM9.5 7V8H6.5V7H9.5ZM9.5 9V10H6.5V9H9.5ZM3 7H5.5V8H3V7ZM3 9H5.5V10H3V9ZM3 12V11H5.5V12H3ZM6.5 12V11H9.5V12H6.5ZM13 12H10.5V11H13V12ZM13 10H10.5V9H13V10ZM13 8H10.5V7H13V8Z" fill="white"/>
<path opacity="0.6" d="M15 2V14H1V2H15ZM16 1H0V15H16V1Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 880 B

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M10.707 0H2V16H15V4.293L10.707 0ZM11 1.707L13.293 4H11V1.707ZM3 15V1H10V5H14V15H3Z" fill="white"/>
<path opacity="0.24" d="M11 1.70697V4H13.293L11 1.70697Z" fill="white"/>
<path opacity="0.9" d="M12.036 13L9.343 6H7.657L4.964 13H4V14H7V13H6.036L6.42 12H10.58L10.964 13H10V14H13V13H12.036ZM6.805 11L8.343 7H8.657L10.2 11H6.805Z" fill="#DB2C3A"/>
</svg>

After

Width:  |  Height:  |  Size: 471 B

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M9.707 0H1.5V16H14.5V4.793L9.707 0ZM10 1.707L12.793 4.5H10V1.707ZM2.5 15V1H9V5.5H13.5V15H2.5Z" fill="white"/>
<path opacity="0.24" d="M10 1.70697V4.49997H12.793L10 1.70697Z" fill="white"/>
<path opacity="0.9" d="M11.536 13L8.843 6H7.157L4.464 13H3.5V14H6.5V13H5.536L5.92 12H10.08L10.464 13H9.5V14H12.5V13H11.536ZM6.305 11L7.843 7H8.157L9.7 11H6.305Z" fill="#DB2C3A"/>
</svg>

After

Width:  |  Height:  |  Size: 494 B

View file

@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M10.207 0H2V16H15V4.793L10.207 0ZM10.5 1.707L13.293 4.5H10.5V1.707ZM3 15V1H9.5V5.5H14V15H3Z" fill="white"/>
<path opacity="0.24" d="M10.5 1.70697V4.49997H13.293L10.5 1.70697Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 317 B

View file

@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M9.707 0H1.5V16H14.5V4.793L9.707 0ZM10 1.707L12.793 4.5H10V1.707ZM2.5 15V1H9V5.5H13.5V15H2.5Z" fill="white"/>
<path opacity="0.24" d="M10 1.70697V4.49997H12.793L10 1.70697Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 315 B

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M10 5V5.995C9.474 5.388 8.721 5 7.875 5C6.287 5 5 6.343 5 8C5 9.657 6.287 11 7.875 11C8.829 11 9.668 10.51 10.191 9.763C10.567 10.488 11.459 11 12.5 11C14.43 11 16 9.206 16 7C16 3.141 12.411 0 8 0C3.589 0 0 3.589 0 8C0 12.411 3.589 16 8 16C9.966 16 11.86 15.272 13.334 13.951L12.666 13.207C11.376 14.363 9.719 15 8 15C4.14 15 1 11.859 1 8C1 4.141 4.14 1 8 1C11.86 1 15 3.691 15 7C15 8.654 13.878 10 12.5 10C11.687 10 11 9.542 11 9V5H10ZM8 10C6.897 10 6 9.103 6 8C6 6.897 6.897 6 8 6C9.103 6 10 6.897 10 8C10 9.103 9.103 10 8 10Z" fill="#FF6666"/>
</svg>

After

Width:  |  Height:  |  Size: 674 B

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M10 5V5.995C9.474 5.388 8.721 5 7.875 5C6.287 5 5 6.343 5 8C5 9.657 6.287 11 7.875 11C8.829 11 9.668 10.51 10.191 9.763C10.567 10.488 11.459 11 12.5 11C14.43 11 16 9.206 16 7C16 3.141 12.411 0 8 0C3.589 0 0 3.589 0 8C0 12.411 3.589 16 8 16C9.966 16 11.86 15.272 13.334 13.951L12.666 13.207C11.376 14.363 9.719 15 8 15C4.14 15 1 11.859 1 8C1 4.141 4.14 1 8 1C11.86 1 15 3.691 15 7C15 8.654 13.878 10 12.5 10C11.687 10 11 9.542 11 9V5H10ZM8 10C6.897 10 6 9.103 6 8C6 6.897 6.897 6 8 6C9.103 6 10 6.897 10 8C10 9.103 9.103 10 8 10Z" fill="#FF6666"/>
</svg>

After

Width:  |  Height:  |  Size: 674 B

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.36" d="M4 1.15698C4.67185 1.22452 5.33951 1.32868 6 1.46898V10.141L5.551 9.84098L5.142 9.57098L4.678 9.72898L4 9.95898V1.15698Z" fill="#DB2C3A"/>
<path d="M8.5 1.309C8.03341 1.02907 7.52792 0.8198 7 0.688V1.728C7.32975 1.82209 7.64552 1.95963 7.939 2.137L8 2.179V13.961C6.06008 13.341 4.03659 13.0219 2 13.015V1.015C2.344 1.027 2.677 1.045 3 1.066V0.066C2.358 0.028 1.694 0 1 0V14C3.37737 13.9087 5.75101 14.26 8 15.036C8.17376 15.1133 8.34098 15.2046 8.5 15.309C8.65902 15.2046 8.82624 15.1133 9 15.036C11.249 14.26 13.6226 13.9087 16 14V0C12.554 0 9.626 0.546 8.5 1.309ZM15 13.015C12.9634 13.0219 10.9399 13.341 9 13.961V2.179L9.061 2.137C9.812 1.628 12.039 1.113 15 1.016V13.015Z" fill="#4072E5"/>
<path opacity="0.9" d="M3 0.0689697V11.359L5 10.679L7 12V0.68797C5.6915 0.344636 4.35107 0.137205 3 0.0689697ZM6 10.141L5.551 9.84097L5.142 9.57097L4.678 9.72897L4 9.95897V1.15697C4.67185 1.22451 5.33951 1.32866 6 1.46897V10.141Z" fill="#DB2C3A"/>
</svg>

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.36" d="M3.5 1.65698C4.17185 1.72452 4.83951 1.82868 5.5 1.96898V10.641L5.051 10.341L4.642 10.071L4.178 10.229L3.5 10.459V1.65698Z" fill="#DB2C3A"/>
<path d="M8 1.809C7.53341 1.52907 7.02792 1.3198 6.5 1.188V2.228C6.82975 2.32209 7.14552 2.45963 7.439 2.637L7.5 2.679V14.461C5.56008 13.841 3.53659 13.5219 1.5 13.515V1.515C1.844 1.527 2.177 1.545 2.5 1.566V0.566C1.858 0.528 1.194 0.5 0.5 0.5V14.5C2.87737 14.4087 5.25101 14.76 7.5 15.536C7.67376 15.6133 7.84098 15.7046 8 15.809C8.15902 15.7046 8.32624 15.6133 8.5 15.536C10.749 14.76 13.1226 14.4087 15.5 14.5V0.5C12.054 0.5 9.126 1.046 8 1.809ZM14.5 13.515C12.4634 13.5219 10.4399 13.841 8.5 14.461V2.679L8.561 2.637C9.312 2.128 11.539 1.613 14.5 1.516V13.515Z" fill="#4072E5"/>
<path opacity="0.9" d="M2.5 0.56897V11.859L4.5 11.179L6.5 12.5V1.18797C5.1915 0.844636 3.85107 0.637205 2.5 0.56897ZM5.5 10.641L5.051 10.341L4.642 10.071L4.178 10.229L3.5 10.459V1.65697C4.17185 1.72451 4.83951 1.82866 5.5 1.96897V10.641Z" fill="#DB2C3A"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M1 1V14H15V1H1ZM11 2V7H5V2H11ZM2 2H4V4H2V2ZM2 5H4V7H2V5ZM2 8H4V10H2V8ZM2 13V11H4V13H2ZM5 13V8H11V13H5ZM14 13H12V11H14V13ZM14 10H12V8H14V10ZM14 7H12V5H14V7ZM14 4H12V2H14V4Z" fill="white"/>
<path opacity="0.12" d="M11 7H5V2H11V7ZM11 8H5V13H11V8Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 386 B

View file

@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M1 1.5V14.5H15V1.5H1ZM11 2.5V7.5H5V2.5H11ZM2 2.5H4V4.5H2V2.5ZM2 5.5H4V7.5H2V5.5ZM2 8.5H4V10.5H2V8.5ZM2 13.5V11.5H4V13.5H2ZM5 13.5V8.5H11V13.5H5ZM14 13.5H12V11.5H14V13.5ZM14 10.5H12V8.5H14V10.5ZM14 7.5H12V5.5H14V7.5ZM14 4.5H12V2.5H14V4.5Z" fill="white"/>
<path opacity="0.12" d="M11 7.5H5V2.5H11V7.5ZM11 8.5H5V13.5H11V8.5Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 464 B

View file

@ -0,0 +1,11 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M5 13C8.444 13 9 13.885 9 16H10C10 13.084 8.645 12 5 12C1.355 12 0 13.084 0 16H1C1 13.885 1.556 13 5 13Z" fill="white"/>
<path opacity="0.6" d="M6.96905 7.70004C6.98727 7.79906 6.99764 7.89938 7.00005 8.00004C7.00005 8.3956 6.88275 8.78228 6.66298 9.11118C6.44322 9.44008 6.13087 9.69642 5.76541 9.8478C5.39996 9.99917 4.99783 10.0388 4.60987 9.96161C4.2219 9.88444 3.86554 9.69396 3.58583 9.41425C3.30613 9.13455 3.11565 8.77818 3.03848 8.39022C2.9613 8.00226 3.00091 7.60012 3.15229 7.23467C3.30366 6.86922 3.56001 6.55686 3.88891 6.3371C4.2178 6.11734 4.60448 6.00004 5.00005 6.00004C5.18765 6.00261 5.37391 6.03225 5.55305 6.08804C5.36317 5.74977 5.2186 5.388 5.12305 5.01204C5.08205 5.01104 5.04205 5.00004 5.00005 5.00004C4.41929 4.99715 3.85019 5.16288 3.36179 5.47714C2.8734 5.79139 2.48672 6.24064 2.24868 6.77038C2.01064 7.30011 1.93148 7.88755 2.0208 8.4614C2.11012 9.03525 2.36409 9.57084 2.75188 10.0032C3.13966 10.4355 3.64459 10.746 4.2054 10.8969C4.7662 11.0478 5.35875 11.0328 5.91115 10.8535C6.46355 10.6742 6.95204 10.3385 7.31734 9.88699C7.68263 9.4355 7.90903 8.88769 7.96905 8.31004C7.61703 8.13904 7.28217 7.93478 6.96905 7.70004Z" fill="white"/>
<path opacity="0.12" d="M9 16C9 13.885 8.444 13 5 13C1.556 13 1 13.885 1 16H9Z" fill="white"/>
<g opacity="0.12">
<path d="M6.96927 7.7029C6.98718 7.80101 6.99737 7.90037 6.99976 8.00007C6.99976 8.39563 6.88246 8.78231 6.6627 9.11121C6.44293 9.44011 6.13058 9.69645 5.76512 9.84783C5.39967 9.9992 4.99754 10.0388 4.60958 9.96164C4.22161 9.88447 3.86525 9.69399 3.58554 9.41428C3.30584 9.13458 3.11536 8.77821 3.03819 8.39025C2.96102 8.00229 3.00062 7.60016 3.152 7.2347C3.30337 6.86925 3.55972 6.55689 3.88862 6.33713C4.21751 6.11737 4.60419 6.00007 4.99976 6.00007C5.18736 6.00265 5.37362 6.03228 5.55276 6.08807C5.45689 5.91729 5.37258 5.74052 5.30029 5.55896C5.65691 6.41293 6.23467 7.15202 6.96927 7.7029Z" fill="white"/>
<path d="M7.27571 7.91586C7.34914 7.96304 7.42388 8.00846 7.4999 8.05203L7.49981 8.05654C7.42411 8.01126 7.3494 7.96436 7.27571 7.91586Z" fill="white"/>
</g>
<path opacity="0.85" d="M11 1C13.206 1 15 2.346 15 4C15 5.391 13.68 6.622 11.862 6.927L11.462 6.994L11.222 7.322C10.8891 7.77598 10.4664 8.15655 9.98 8.44C9.993 8.294 10 8.147 10 8C9.99862 7.87955 9.9896 7.75931 9.973 7.64L9.963 7.554L9.9 6.92L9.3 6.705C8.68573 6.54398 8.13572 6.19819 7.72437 5.71441C7.31302 5.23062 7.06016 4.63217 7 4C7 2.346 8.794 1 11 1ZM11 0C8.243 0 6 1.794 6 4C6.05754 4.83983 6.37363 5.64125 6.90487 6.29424C7.43611 6.94724 8.15645 7.41978 8.967 7.647C8.978 7.765 9 7.879 9 8C8.99548 8.68605 8.81248 9.35911 8.469 9.953C9.17263 9.88353 9.85358 9.66582 10.467 9.31421C11.0804 8.9626 11.6124 8.48505 12.028 7.913C14.293 7.533 16 5.924 16 4C16 1.794 13.757 0 11 0Z" fill="#66ADFF"/>
<path opacity="0.17" d="M15 4C15 2.346 13.206 1 11 1C8.794 1 7 2.346 7 4C7.06016 4.63217 7.31302 5.23062 7.72437 5.71441C8.13572 6.19819 8.68573 6.54398 9.3 6.705L9.9 6.92L9.963 7.554L9.973 7.64C9.9896 7.75931 9.99862 7.87955 10 8C10 8.147 9.993 8.294 9.98 8.44C10.4664 8.15655 10.8891 7.77598 11.222 7.322L11.462 6.994L11.862 6.927C13.68 6.622 15 5.391 15 4Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,11 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M5 13C8.444 13 9 13.885 9 16H10C10 13.084 8.645 12 5 12C1.355 12 0 13.084 0 16H1C1 13.885 1.556 13 5 13Z" fill="white"/>
<path opacity="0.6" d="M6.96905 7.70004C6.98727 7.79906 6.99764 7.89938 7.00005 8.00004C7.00005 8.3956 6.88275 8.78228 6.66298 9.11118C6.44322 9.44008 6.13087 9.69642 5.76541 9.8478C5.39996 9.99917 4.99783 10.0388 4.60987 9.96161C4.2219 9.88444 3.86554 9.69396 3.58583 9.41425C3.30613 9.13455 3.11565 8.77818 3.03848 8.39022C2.9613 8.00226 3.00091 7.60012 3.15229 7.23467C3.30366 6.86922 3.56001 6.55686 3.88891 6.3371C4.2178 6.11734 4.60448 6.00004 5.00005 6.00004C5.18765 6.00261 5.37391 6.03225 5.55305 6.08804C5.36317 5.74977 5.2186 5.388 5.12305 5.01204C5.08205 5.01104 5.04205 5.00004 5.00005 5.00004C4.41929 4.99715 3.85019 5.16288 3.36179 5.47714C2.8734 5.79139 2.48672 6.24064 2.24868 6.77038C2.01064 7.30011 1.93148 7.88755 2.0208 8.4614C2.11012 9.03525 2.36409 9.57084 2.75188 10.0032C3.13966 10.4355 3.64459 10.746 4.2054 10.8969C4.7662 11.0478 5.35875 11.0328 5.91115 10.8535C6.46355 10.6742 6.95204 10.3385 7.31734 9.88699C7.68263 9.4355 7.90903 8.88769 7.96905 8.31004C7.61703 8.13904 7.28217 7.93478 6.96905 7.70004Z" fill="white"/>
<path opacity="0.12" d="M9 16C9 13.885 8.444 13 5 13C1.556 13 1 13.885 1 16H9Z" fill="white"/>
<g opacity="0.12">
<path d="M6.96927 7.7029C6.98718 7.80101 6.99737 7.90037 6.99976 8.00007C6.99976 8.39563 6.88246 8.78231 6.6627 9.11121C6.44293 9.44011 6.13058 9.69645 5.76512 9.84783C5.39967 9.9992 4.99754 10.0388 4.60958 9.96164C4.22161 9.88447 3.86525 9.69399 3.58554 9.41428C3.30584 9.13458 3.11536 8.77821 3.03819 8.39025C2.96102 8.00229 3.00062 7.60016 3.152 7.2347C3.30337 6.86925 3.55972 6.55689 3.88862 6.33713C4.21751 6.11737 4.60419 6.00007 4.99976 6.00007C5.18736 6.00265 5.37362 6.03228 5.55276 6.08807C5.45689 5.91729 5.37258 5.74052 5.30029 5.55896C5.65691 6.41293 6.23467 7.15202 6.96927 7.7029Z" fill="white"/>
<path d="M7.27571 7.91586C7.34914 7.96304 7.42388 8.00846 7.4999 8.05203L7.49981 8.05654C7.42411 8.01126 7.3494 7.96436 7.27571 7.91586Z" fill="white"/>
</g>
<path opacity="0.85" d="M11 1C13.206 1 15 2.346 15 4C15 5.391 13.68 6.622 11.862 6.927L11.462 6.994L11.222 7.322C10.8891 7.77598 10.4664 8.15655 9.98 8.44C9.993 8.294 10 8.147 10 8C9.99862 7.87955 9.9896 7.75931 9.973 7.64L9.963 7.554L9.9 6.92L9.3 6.705C8.68573 6.54398 8.13572 6.19819 7.72437 5.71441C7.31302 5.23062 7.06016 4.63217 7 4C7 2.346 8.794 1 11 1ZM11 0C8.243 0 6 1.794 6 4C6.05754 4.83983 6.37363 5.64125 6.90487 6.29424C7.43611 6.94724 8.15645 7.41978 8.967 7.647C8.978 7.765 9 7.879 9 8C8.99548 8.68605 8.81248 9.35911 8.469 9.953C9.17263 9.88353 9.85358 9.66582 10.467 9.31421C11.0804 8.9626 11.6124 8.48505 12.028 7.913C14.293 7.533 16 5.924 16 4C16 1.794 13.757 0 11 0Z" fill="#66ADFF"/>
<path opacity="0.17" d="M15 4C15 2.346 13.206 1 11 1C8.794 1 7 2.346 7 4C7.06016 4.63217 7.31302 5.23062 7.72437 5.71441C8.13572 6.19819 8.68573 6.54398 9.3 6.705L9.9 6.92L9.963 7.554L9.973 7.64C9.9896 7.75931 9.99862 7.87955 10 8C10 8.147 9.993 8.294 9.98 8.44C10.4664 8.15655 10.8891 7.77598 11.222 7.322L11.462 6.994L11.862 6.927C13.68 6.622 15 5.391 15 4Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,19 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.2">
<path d="M8.3126 7.01953L7.98057 6.6875L1.1251 13.168C0.953224 13.3398 0.953224 13.6602 1.14463 13.8516C1.27354 13.9805 1.42197 14 1.5001 14C1.57822 14 1.72666 13.9805 1.85557 13.8516L8.3126 7.01953Z" fill="#996B6F"/>
<path d="M8.03916 15H14.961C14.8282 14.2969 14.379 14 13.5001 14H9.5001C8.62119 14 8.17197 14.2969 8.03916 15Z" fill="#996B6F"/>
</g>
<path d="M8.03906 15H14.9609C14.8281 14.2969 14.3789 14 13.5 14H9.5C8.62109 14 8.17187 14.2969 8.03906 15ZM15.5 16H7.5C7.22266 16 7 15.7773 7 15.5C7 13.8867 7.88672 13 9.5 13H13.5C15.1133 13 16 13.8867 16 15.5C16 15.7773 15.7773 16 15.5 16Z" fill="#996B6F"/>
<path opacity="0.34" d="M10.498 7.79492L12.793 5.5L9.50195 2.20898L7.20703 4.50391L10.498 7.79492Z" fill="#CC9200"/>
<path d="M6.5 3.79297L6.20703 3.5L8.5 1.20703L8.79297 1.5L6.5 3.79297ZM10.3555 0.648438C10.1562 0.449219 9.84375 0.449219 9.64453 0.648438L9.5 0.792969L9.20703 0.5C8.81641 0.109375 8.18359 0.109375 7.79297 0.5L5.5 2.79297C5.10938 3.18359 5.10938 3.81641 5.5 4.20703L5.79297 4.5L5.64453 4.64844C5.44922 4.84375 5.44922 5.15625 5.64453 5.35547C5.74219 5.44922 5.87109 5.5 6 5.5C6.12891 5.5 6.25781 5.44922 6.35547 5.35547L10.3555 1.35547C10.5508 1.15625 10.5508 0.84375 10.3555 0.648438ZM11.5 8.79297L11.207 8.5L13.5 6.20703L13.793 6.5L11.5 8.79297ZM14.5 5.79297L14.207 5.5L14.3555 5.35547C14.5508 5.15625 14.5508 4.84375 14.3555 4.64844C14.1562 4.44922 13.8438 4.44922 13.6445 4.64844L9.64453 8.64844C9.44922 8.84375 9.44922 9.15625 9.64453 9.35547C9.74219 9.44922 9.87109 9.5 10 9.5C10.1289 9.5 10.2578 9.44922 10.3555 9.35547L10.5 9.20703L10.793 9.5C10.9883 9.69531 11.2422 9.79297 11.5 9.79297C11.7578 9.79297 12.0117 9.69531 12.207 9.5L14.5 7.20703C14.8906 6.81641 14.8906 6.18359 14.5 5.79297Z" fill="#996B6F"/>
<g opacity="0.85">
<path d="M9.50195 2.20898L10.207 1.50391L13.498 4.79492L12.793 5.5L9.50195 2.20898Z" fill="#CC9200"/>
<path d="M6.50195 5.20898L7.20703 4.50391L10.498 7.79492L9.79297 8.5L6.50195 5.20898Z" fill="#CC9200"/>
</g>
<path d="M7.27288 5.97991L0.4375 12.4375C-0.144531 13.0273 -0.144531 13.9727 0.4375 14.5586C0.730469 14.8516 1.11719 15 1.5 15C1.88281 15 2.26953 14.8516 2.5625 14.5586L9.01991 7.72694L8.3125 7.01953L1.85547 13.8516C1.72656 13.9805 1.57812 14 1.5 14C1.42187 14 1.27344 13.9805 1.14453 13.8516C0.953125 13.6602 0.953125 13.3398 1.125 13.168L7.98047 6.6875L7.27288 5.97991Z" fill="#996B6F"/>
<path d="M9.70513 7.00201L9.70703 7L8 5.29297L7.99799 5.29487L9.70513 7.00201Z" fill="#996B6F"/>
<g opacity="0.2">
<path d="M6.20703 3.5L6.5 3.79297L8.79297 1.5L8.5 1.20703L6.20703 3.5Z" fill="#996B6F"/>
<path d="M11.207 8.5L11.5 8.79297L13.793 6.5L13.5 6.20703L11.207 8.5Z" fill="#996B6F"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,19 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.2">
<path d="M8.3126 7.01953L7.98057 6.6875L1.1251 13.168C0.953224 13.3398 0.953224 13.6602 1.14463 13.8516C1.27354 13.9805 1.42197 14 1.5001 14C1.57822 14 1.72666 13.9805 1.85557 13.8516L8.3126 7.01953Z" fill="#996B6F"/>
<path d="M8.03916 15H14.961C14.8282 14.2969 14.379 14 13.5001 14H9.5001C8.62119 14 8.17197 14.2969 8.03916 15Z" fill="#996B6F"/>
</g>
<path d="M8.03906 15H14.9609C14.8281 14.2969 14.3789 14 13.5 14H9.5C8.62109 14 8.17187 14.2969 8.03906 15ZM15.5 16H7.5C7.22266 16 7 15.7773 7 15.5C7 13.8867 7.88672 13 9.5 13H13.5C15.1133 13 16 13.8867 16 15.5C16 15.7773 15.7773 16 15.5 16Z" fill="#996B6F"/>
<path opacity="0.34" d="M10.498 7.79492L12.793 5.5L9.50195 2.20898L7.20703 4.50391L10.498 7.79492Z" fill="#CC9200"/>
<path d="M6.5 3.79297L6.20703 3.5L8.5 1.20703L8.79297 1.5L6.5 3.79297ZM10.3555 0.648438C10.1562 0.449219 9.84375 0.449219 9.64453 0.648438L9.5 0.792969L9.20703 0.5C8.81641 0.109375 8.18359 0.109375 7.79297 0.5L5.5 2.79297C5.10938 3.18359 5.10938 3.81641 5.5 4.20703L5.79297 4.5L5.64453 4.64844C5.44922 4.84375 5.44922 5.15625 5.64453 5.35547C5.74219 5.44922 5.87109 5.5 6 5.5C6.12891 5.5 6.25781 5.44922 6.35547 5.35547L10.3555 1.35547C10.5508 1.15625 10.5508 0.84375 10.3555 0.648438ZM11.5 8.79297L11.207 8.5L13.5 6.20703L13.793 6.5L11.5 8.79297ZM14.5 5.79297L14.207 5.5L14.3555 5.35547C14.5508 5.15625 14.5508 4.84375 14.3555 4.64844C14.1562 4.44922 13.8438 4.44922 13.6445 4.64844L9.64453 8.64844C9.44922 8.84375 9.44922 9.15625 9.64453 9.35547C9.74219 9.44922 9.87109 9.5 10 9.5C10.1289 9.5 10.2578 9.44922 10.3555 9.35547L10.5 9.20703L10.793 9.5C10.9883 9.69531 11.2422 9.79297 11.5 9.79297C11.7578 9.79297 12.0117 9.69531 12.207 9.5L14.5 7.20703C14.8906 6.81641 14.8906 6.18359 14.5 5.79297Z" fill="#996B6F"/>
<g opacity="0.85">
<path d="M9.50195 2.20898L10.207 1.50391L13.498 4.79492L12.793 5.5L9.50195 2.20898Z" fill="#CC9200"/>
<path d="M6.50195 5.20898L7.20703 4.50391L10.498 7.79492L9.79297 8.5L6.50195 5.20898Z" fill="#CC9200"/>
</g>
<path d="M7.27288 5.97991L0.4375 12.4375C-0.144531 13.0273 -0.144531 13.9727 0.4375 14.5586C0.730469 14.8516 1.11719 15 1.5 15C1.88281 15 2.26953 14.8516 2.5625 14.5586L9.01991 7.72694L8.3125 7.01953L1.85547 13.8516C1.72656 13.9805 1.57812 14 1.5 14C1.42187 14 1.27344 13.9805 1.14453 13.8516C0.953125 13.6602 0.953125 13.3398 1.125 13.168L7.98047 6.6875L7.27288 5.97991Z" fill="#996B6F"/>
<path d="M9.70513 7.00201L9.70703 7L8 5.29297L7.99799 5.29487L9.70513 7.00201Z" fill="#996B6F"/>
<g opacity="0.2">
<path d="M6.20703 3.5L6.5 3.79297L8.79297 1.5L8.5 1.20703L6.20703 3.5Z" fill="#996B6F"/>
<path d="M11.207 8.5L11.5 8.79297L13.793 6.5L13.5 6.20703L11.207 8.5Z" fill="#996B6F"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M3.428 15.927L3.698 15.032C3.89778 14.3731 3.99954 13.6885 4 13C3.99937 12.699 3.97866 12.3983 3.938 12.1C2.81718 11.6374 1.85144 10.865 1.15397 9.87314C0.456503 8.88131 0.0562058 7.71121 0 6.5C0 2.916 3.589 0 8 0C12.411 0 16 2.916 16 6.5C16 10.017 12.544 12.891 8.247 13C7.23366 14.2583 5.86654 15.1841 4.322 15.658L3.428 15.927ZM8 1C4.14 1 1 3.468 1 6.5C1.06604 7.56316 1.44129 8.58385 2.07962 9.43661C2.71795 10.2894 3.59154 10.937 4.593 11.3L4.84 11.409L4.885 11.675C4.96044 12.1127 4.99891 12.5559 5 13C5.00008 13.4619 4.95992 13.923 4.88 14.378C5.95416 13.8903 6.88921 13.1415 7.6 12.2L7.75 12H8C11.86 12 15 9.532 15 6.5C15 3.468 11.859 1 8 1Z" fill="#66ADFF"/>
<path opacity="0.17" d="M1 6.5C1 3.468 4.14 1 8 1C11.859 1 15 3.468 15 6.5C15 9.532 11.86 12 8 12H7.75L7.6 12.2C6.88921 13.1415 5.95416 13.8903 4.88 14.378C4.95992 13.923 5.00008 13.4619 5 13C4.99891 12.5559 4.96044 12.1127 4.885 11.675L4.84 11.409L4.593 11.3C3.59154 10.937 2.71795 10.2894 2.07962 9.43661C1.44129 8.58385 1.06604 7.56316 1 6.5Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M3.428 15.927L3.698 15.032C3.89778 14.3731 3.99954 13.6885 4 13C3.99937 12.699 3.97866 12.3983 3.938 12.1C2.81718 11.6374 1.85144 10.865 1.15397 9.87314C0.456503 8.88131 0.0562058 7.71121 0 6.5C0 2.916 3.589 0 8 0C12.411 0 16 2.916 16 6.5C16 10.017 12.544 12.891 8.247 13C7.23366 14.2583 5.86654 15.1841 4.322 15.658L3.428 15.927ZM8 1C4.14 1 1 3.468 1 6.5C1.06604 7.56316 1.44129 8.58385 2.07962 9.43661C2.71795 10.2894 3.59154 10.937 4.593 11.3L4.84 11.409L4.885 11.675C4.96044 12.1127 4.99891 12.5559 5 13C5.00008 13.4619 4.95992 13.923 4.88 14.378C5.95416 13.8903 6.88921 13.1415 7.6 12.2L7.75 12H8C11.86 12 15 9.532 15 6.5C15 3.468 11.859 1 8 1Z" fill="#66ADFF"/>
<path opacity="0.17" d="M1 6.5C1 3.468 4.14 1 8 1C11.859 1 15 3.468 15 6.5C15 9.532 11.86 12 8 12H7.75L7.6 12.2C6.88921 13.1415 5.95416 13.8903 4.88 14.378C4.95992 13.923 5.00008 13.4619 5 13C4.99891 12.5559 4.96044 12.1127 4.885 11.675L4.84 11.409L4.593 11.3C3.59154 10.937 2.71795 10.2894 2.07962 9.43661C1.44129 8.58385 1.06604 7.56316 1 6.5Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M12.536 10.747C12.484 10.704 12.436 10.657 12.383 10.613C12.5671 10.4199 12.6725 10.1651 12.6786 9.89839C12.6847 9.63168 12.5911 9.37229 12.416 9.171L7.979 4.212C7.984 4.141 8 4.073 8 4C8 3.40666 7.82405 2.82664 7.49441 2.33329C7.16477 1.83994 6.69623 1.45543 6.14805 1.22836C5.59987 1.0013 4.99667 0.94189 4.41473 1.05765C3.83279 1.1734 3.29824 1.45912 2.87868 1.87868C2.45912 2.29824 2.1734 2.83279 2.05765 3.41473C1.94189 3.99667 2.0013 4.59987 2.22836 5.14805C2.45543 5.69623 2.83994 6.16477 3.33329 6.49441C3.82664 6.82405 4.40666 7 5 7C5.10045 6.99521 5.20059 6.9852 5.3 6.97L10.219 11.37C10.422 11.5469 10.6841 11.6409 10.9533 11.6335C11.2225 11.6261 11.479 11.5178 11.672 11.33L11.681 11.321C11.755 11.385 11.828 11.455 11.903 11.521C12.585 12.084 13.003 12.456 13.003 13.003C13.003 13.2682 12.8976 13.5226 12.7101 13.7101C12.5226 13.8976 12.2682 14.003 12.003 14.003C11.21 14.003 10.553 13.346 9.857 12.649C9.5146 12.1977 9.0855 11.8194 8.59489 11.5362C8.10428 11.2531 7.56204 11.0707 7 11C6.46957 11 5.96086 11.2107 5.58579 11.5858C5.21072 11.9609 5 12.4696 5 13C5 14.635 7.026 15.809 7.257 15.937C7.33142 15.9781 7.415 15.9997 7.5 16C7.61076 16 7.71839 15.9632 7.806 15.8955C7.8936 15.8277 7.95622 15.7327 7.98403 15.6255C8.01183 15.5183 8.00325 15.4049 7.95963 15.3031C7.916 15.2013 7.83981 15.1168 7.743 15.063C7.291 14.812 6 13.893 6 13C6 12.7348 6.10536 12.4804 6.29289 12.2929C6.48043 12.1054 6.73479 12 7 12C7.793 12 8.45 12.657 9.146 13.354C9.48833 13.8044 9.91708 14.182 10.4071 14.4646C10.8972 14.7472 11.4387 14.9292 12 15C12.5304 15 13.0391 14.7893 13.4142 14.4142C13.7893 14.0391 14 13.5304 14 13C13.9458 12.5371 13.7855 12.093 13.5316 11.7022C13.2777 11.3114 12.9369 10.9846 12.536 10.747ZM3 4C3 3.60444 3.1173 3.21776 3.33706 2.88886C3.55682 2.55996 3.86918 2.30362 4.23463 2.15224C4.60009 2.00087 5.00222 1.96126 5.39018 2.03843C5.77814 2.1156 6.13451 2.30608 6.41422 2.58579C6.69392 2.86549 6.8844 3.22186 6.96157 3.60982C7.03874 3.99778 6.99914 4.39992 6.84776 4.76537C6.69639 5.13082 6.44004 5.44318 6.11114 5.66294C5.78224 5.8827 5.39556 6 5 6C4.46957 6 3.96086 5.78929 3.58579 5.41422C3.21072 5.03914 3 4.53043 3 4ZM11.669 9.917L10.962 10.624H10.883L6.416 6.624C6.94977 6.33754 7.38393 5.8957 7.661 5.357L11.671 9.838C11.6771 9.85035 11.6801 9.86399 11.6797 9.87775C11.6794 9.89151 11.6757 9.90498 11.669 9.917Z" fill="white"/>
<path opacity="0.12" d="M3.33706 2.88886C3.1173 3.21776 3 3.60444 3 4C3 4.53043 3.21071 5.03914 3.58579 5.41421C3.96086 5.78929 4.46957 6 5 6C5.39556 6 5.78224 5.8827 6.11114 5.66294C6.44004 5.44318 6.69638 5.13082 6.84776 4.76537C6.99913 4.39992 7.03874 3.99778 6.96157 3.60982C6.8844 3.22186 6.69392 2.86549 6.41421 2.58579C6.13451 2.30608 5.77814 2.1156 5.39018 2.03843C5.00222 1.96126 4.60009 2.00087 4.23463 2.15224C3.86918 2.30362 3.55682 2.55996 3.33706 2.88886Z" fill="white"/>
<path opacity="0.24" d="M10.962 10.6241L11.669 9.91706C11.6757 9.90503 11.6794 9.89156 11.6798 9.8778C11.6801 9.86404 11.6771 9.8504 11.671 9.83806L7.66102 5.35706C7.38395 5.89576 6.94978 6.33759 6.41602 6.62406L10.883 10.6241H10.962Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M12.536 10.747C12.484 10.704 12.436 10.657 12.383 10.613C12.5671 10.4199 12.6725 10.1651 12.6786 9.89839C12.6847 9.63168 12.5911 9.37229 12.416 9.171L7.979 4.212C7.984 4.141 8 4.073 8 4C8 3.40666 7.82405 2.82664 7.49441 2.33329C7.16477 1.83994 6.69623 1.45543 6.14805 1.22836C5.59987 1.0013 4.99667 0.94189 4.41473 1.05765C3.83279 1.1734 3.29824 1.45912 2.87868 1.87868C2.45912 2.29824 2.1734 2.83279 2.05765 3.41473C1.94189 3.99667 2.0013 4.59987 2.22836 5.14805C2.45543 5.69623 2.83994 6.16477 3.33329 6.49441C3.82664 6.82405 4.40666 7 5 7C5.10045 6.99521 5.20059 6.9852 5.3 6.97L10.219 11.37C10.422 11.5469 10.6841 11.6409 10.9533 11.6335C11.2225 11.6261 11.479 11.5178 11.672 11.33L11.681 11.321C11.755 11.385 11.828 11.455 11.903 11.521C12.585 12.084 13.003 12.456 13.003 13.003C13.003 13.2682 12.8976 13.5226 12.7101 13.7101C12.5226 13.8976 12.2682 14.003 12.003 14.003C11.21 14.003 10.553 13.346 9.857 12.649C9.5146 12.1977 9.0855 11.8194 8.59489 11.5362C8.10428 11.2531 7.56204 11.0707 7 11C6.46957 11 5.96086 11.2107 5.58579 11.5858C5.21072 11.9609 5 12.4696 5 13C5 14.635 7.026 15.809 7.257 15.937C7.33142 15.9781 7.415 15.9997 7.5 16C7.61076 16 7.71839 15.9632 7.806 15.8955C7.8936 15.8277 7.95622 15.7327 7.98403 15.6255C8.01183 15.5183 8.00325 15.4049 7.95963 15.3031C7.916 15.2013 7.83981 15.1168 7.743 15.063C7.291 14.812 6 13.893 6 13C6 12.7348 6.10536 12.4804 6.29289 12.2929C6.48043 12.1054 6.73479 12 7 12C7.793 12 8.45 12.657 9.146 13.354C9.48833 13.8044 9.91708 14.182 10.4071 14.4646C10.8972 14.7472 11.4387 14.9292 12 15C12.5304 15 13.0391 14.7893 13.4142 14.4142C13.7893 14.0391 14 13.5304 14 13C13.9458 12.5371 13.7855 12.093 13.5316 11.7022C13.2777 11.3114 12.9369 10.9846 12.536 10.747ZM3 4C3 3.60444 3.1173 3.21776 3.33706 2.88886C3.55682 2.55996 3.86918 2.30362 4.23463 2.15224C4.60009 2.00087 5.00222 1.96126 5.39018 2.03843C5.77814 2.1156 6.13451 2.30608 6.41422 2.58579C6.69392 2.86549 6.8844 3.22186 6.96157 3.60982C7.03874 3.99778 6.99914 4.39992 6.84776 4.76537C6.69639 5.13082 6.44004 5.44318 6.11114 5.66294C5.78224 5.8827 5.39556 6 5 6C4.46957 6 3.96086 5.78929 3.58579 5.41422C3.21072 5.03914 3 4.53043 3 4ZM11.669 9.917L10.962 10.624H10.883L6.416 6.624C6.94977 6.33754 7.38393 5.8957 7.661 5.357L11.671 9.838C11.6771 9.85035 11.6801 9.86399 11.6797 9.87775C11.6794 9.89151 11.6757 9.90498 11.669 9.917Z" fill="white"/>
<path opacity="0.12" d="M3.33706 2.88886C3.1173 3.21776 3 3.60444 3 4C3 4.53043 3.21071 5.03914 3.58579 5.41421C3.96086 5.78929 4.46957 6 5 6C5.39556 6 5.78224 5.8827 6.11114 5.66294C6.44004 5.44318 6.69638 5.13082 6.84776 4.76537C6.99913 4.39992 7.03874 3.99778 6.96157 3.60982C6.8844 3.22186 6.69392 2.86549 6.41421 2.58579C6.13451 2.30608 5.77814 2.1156 5.39018 2.03843C5.00222 1.96126 4.60009 2.00087 4.23463 2.15224C3.86918 2.30362 3.55682 2.55996 3.33706 2.88886Z" fill="white"/>
<path opacity="0.24" d="M10.962 10.6241L11.669 9.91706C11.6757 9.90503 11.6794 9.89156 11.6798 9.8778C11.6801 9.86404 11.6771 9.8504 11.671 9.83806L7.66102 5.35706C7.38395 5.89576 6.94978 6.33759 6.41602 6.62406L10.883 10.6241H10.962Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.75" d="M7 6H5V5H7V6ZM12 8H5V9H12V8ZM12 11H5V12H12V11Z" fill="white"/>
<path opacity="0.6" d="M9.707 0H2V16H15V5.293L9.707 0ZM10 1.707L13.293 5H10V1.707ZM3 15V1H9V6H14V15H3Z" fill="white"/>
<path opacity="0.24" d="M10 1.70703V5H13.293L10 1.70703Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 382 B

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.75" d="M7.5 5.5H4.5V4.5H7.5V5.5ZM11.5 7H4.5V8H11.5V7ZM11.5 9.5H4.5V10.5H11.5V9.5ZM11.5 12H4.5V13H11.5V12Z" fill="white"/>
<path opacity="0.6" d="M9.707 0H1.5V16H14.5V4.793L9.707 0ZM10 1.707L12.793 4.5H10V1.707ZM2.5 15V1H9V5.5H13.5V15H2.5Z" fill="white"/>
<path opacity="0.24" d="M10 1.70703V4.50003H12.793L10 1.70703Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 454 B

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M0 2V14H16V2H0ZM8.707 8.586C8.51947 8.77347 8.26516 8.87879 8 8.87879C7.73484 8.87879 7.48053 8.77347 7.293 8.586L1.707 3H14.293L8.707 8.586ZM6.586 9.293C6.96106 9.66794 7.46967 9.87857 8 9.87857C8.53033 9.87857 9.03894 9.66794 9.414 9.293L10 8.707L14.293 13H1.707L6 8.707L6.586 9.293ZM15 3.707V12.293L10.707 8L15 3.707ZM5.293 8L1 12.293V3.707L5.293 8Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 495 B

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M0 2V14H16V2H0ZM8.707 8.586C8.51947 8.77347 8.26516 8.87879 8 8.87879C7.73484 8.87879 7.48053 8.77347 7.293 8.586L1.707 3H14.293L8.707 8.586ZM6.586 9.293C6.96106 9.66794 7.46967 9.87857 8 9.87857C8.53033 9.87857 9.03894 9.66794 9.414 9.293L10 8.707L14.293 13H1.707L6 8.707L6.586 9.293ZM15 3.707V12.293L10.707 8L15 3.707ZM5.293 8L1 12.293V3.707L5.293 8Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 495 B

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.2" d="M4 14V3H3V15H8V14H4Z" fill="#4072E5"/>
<path opacity="0.4" d="M4.5 13.5V0.5H7.5C7.76522 0.5 8.01957 0.605357 8.20711 0.792893C8.39464 0.98043 8.5 1.23478 8.5 1.5V13.5H4.5Z" fill="#4072E5"/>
<path d="M9 2V1.5C9 1.10218 8.84196 0.720644 8.56066 0.43934C8.27936 0.158035 7.89782 0 7.5 0L4 0V2H2V16H15V2H9ZM5 1H7.5C7.63261 1 7.75979 1.05268 7.85355 1.14645C7.94732 1.24021 8 1.36739 8 1.5V13H5V1ZM3 15V3H4V14H7.5C7.63261 14 7.75979 14.0527 7.85355 14.1464C7.94732 14.2402 8 14.3674 8 14.5C8 14.6326 7.94732 14.7598 7.85355 14.8536C7.75979 14.9473 7.63261 15 7.5 15H3ZM14 15H8.908C8.96722 14.8399 8.99834 14.6707 9 14.5V3H14V15Z" fill="#4072E5"/>
<path opacity="0.6" d="M10 10H13V11H10V10ZM10 13H13V12H10V13Z" fill="white"/>
<path opacity="0.85" d="M10 4V5H12V8H10V9H13V4H10Z" fill="#39BF68"/>
<path opacity="0.34" d="M12 5H10V8H12V5Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 974 B

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.2" d="M3.5 14V3H2.5V15H7.5V14H3.5Z" fill="#4072E5"/>
<path opacity="0.4" d="M4 13.5V0.5H7C7.26522 0.5 7.51957 0.605357 7.70711 0.792893C7.89464 0.98043 8 1.23478 8 1.5V13.5H4Z" fill="#4072E5"/>
<path d="M8.5 2V1.5C8.5 1.10218 8.34196 0.720644 8.06066 0.43934C7.77936 0.158035 7.39782 0 7 0L3.5 0V2H1.5V16H14.5V2H8.5ZM4.5 1H7C7.13261 1 7.25979 1.05268 7.35355 1.14645C7.44732 1.24021 7.5 1.36739 7.5 1.5V13H4.5V1ZM2.5 15V3H3.5V14H7C7.13261 14 7.25979 14.0527 7.35355 14.1464C7.44732 14.2402 7.5 14.3674 7.5 14.5C7.5 14.6326 7.44732 14.7598 7.35355 14.8536C7.25979 14.9473 7.13261 15 7 15H2.5ZM13.5 15H8.408C8.46722 14.8399 8.49834 14.6707 8.5 14.5V3H13.5V15Z" fill="#4072E5"/>
<path opacity="0.6" d="M9.5 10H12.5V11H9.5V10ZM9.5 13H12.5V12H9.5V13Z" fill="white"/>
<path opacity="0.85" d="M9.5 4V5H11.5V8H9.5V9H12.5V4H9.5Z" fill="#39BF68"/>
<path opacity="0.34" d="M11.5 5H9.5V8H11.5V5Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 1,022 B

View file

@ -0,0 +1,11 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M13.5 5.5L14 5L15 6L14.5 6.5L13.5 5.5Z" fill="white"/>
<path opacity="0.36" fill-rule="evenodd" clip-rule="evenodd" d="M12.5 5.5L13.5001 4.49992C13.7762 4.22382 14.2238 4.22382 14.4999 4.49992L15.5001 5.50007C15.7762 5.77617 15.7762 6.22382 15.5001 6.49992L14.5 7.5L12.5 5.5ZM14 5L13.5 5.5L14.5 6.5L15 6L14 5Z" fill="white"/>
<path opacity="0.6" d="M13 0H0V16H13V9L12 10V15L1 15.037V1H12V6L13 5V0Z" fill="white"/>
<path opacity="0.4" d="M7.70703 12.2929V11.2929L7.99993 11L8.99994 12L8.70704 12.2929H7.70703Z" fill="#E0AF97"/>
<path opacity="0.8" d="M12.5 5.5L8 10L8.5 10.5L13 6L12.5 5.5Z" fill="#FAA700"/>
<path opacity="0.8" d="M14 7L9.5 11.5L10 12L14.5 7.5L14 7Z" fill="#FAA700"/>
<path opacity="0.64" d="M13 6L8.5 10.5L9.5 11.5L14 7L13 6Z" fill="#FAA700"/>
<path opacity="0.75" d="M7 11.5V13H8.5V12.2929H7.7071V11.5H7Z" fill="white"/>
<path opacity="0.5" d="M7.7071 11.5V11.2929L8 11L9.00001 12L8.70711 12.2929H8.5V13H9L10 12L8 10L7 11V11.5H7.7071Z" fill="#E0AF97"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,11 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M13.5 5.5L14 5L15 6L14.5 6.5L13.5 5.5Z" fill="white"/>
<path opacity="0.36" fill-rule="evenodd" clip-rule="evenodd" d="M12.5 5.5L13.5001 4.49992C13.7762 4.22382 14.2238 4.22382 14.4999 4.49992L15.5001 5.50007C15.7762 5.77617 15.7762 6.22382 15.5001 6.49992L14.5 7.5L12.5 5.5ZM14 5L13.5 5.5L14.5 6.5L15 6L14 5Z" fill="white"/>
<path opacity="0.6" d="M13 0H0V16H13V9L12 10V15L1 15.037V1H12V6L13 5V0Z" fill="white"/>
<path opacity="0.4" d="M7.70703 12.2929V11.2929L7.99993 11L8.99994 12L8.70704 12.2929H7.70703Z" fill="#E0AF97"/>
<path opacity="0.8" d="M12.5 5.5L8 10L8.5 10.5L13 6L12.5 5.5Z" fill="#FAA700"/>
<path opacity="0.8" d="M14 7L9.5 11.5L10 12L14.5 7.5L14 7Z" fill="#FAA700"/>
<path opacity="0.64" d="M13 6L8.5 10.5L9.5 11.5L14 7L13 6Z" fill="#FAA700"/>
<path opacity="0.75" d="M7 11.5V13H8.5V12.2929H7.7071V11.5H7Z" fill="white"/>
<path opacity="0.5" d="M7.7071 11.5V11.2929L8 11L9.00001 12L8.70711 12.2929H8.5V13H9L10 12L8 10L7 11V11.5H7.7071Z" fill="#E0AF97"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,14 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M2 1V14H15V1H2ZM10 2V5H7V2H10ZM10 6V9H7V6H10ZM3 2H6V5H3V2ZM3 6H6V9H3V6ZM3 13V10H6V13H3ZM7 13V10H10V13H7ZM14 13H11V10H14V13ZM14 9H11V6H14V9ZM14 5H11V2H14V5Z" fill="#66ADFF"/>
<g opacity="0.17">
<path d="M10 5V2H7V5H10Z" fill="#66ADFF"/>
<path d="M6 2H3V5H6V2Z" fill="#66ADFF"/>
<path d="M3 6V9H6V6H3Z" fill="#66ADFF"/>
<path d="M3 10V13H6V10H3Z" fill="#66ADFF"/>
<path d="M7 13H10V10H7V13Z" fill="#66ADFF"/>
<path d="M11 13H14V10H11V13Z" fill="#66ADFF"/>
<path d="M14 9V6H11V9H14Z" fill="#66ADFF"/>
<path d="M14 5V2H11V5H14Z" fill="#66ADFF"/>
<path d="M10 9V6H7V9H10Z" fill="#66ADFF"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 717 B

View file

@ -0,0 +1,14 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M1 0.5V15H15.5V0.5H1ZM10 1.5V5H6.5V1.5H10ZM10 6V9.5H6.5V6H10ZM2 1.5H5.5V5H2V1.5ZM2 6H5.5V9.5H2V6ZM2 14V10.5H5.5V14H2ZM6.5 14V10.5H10V14H6.5ZM14.5 14H11V10.5H14.5V14ZM14.5 9.5H11V6H14.5V9.5ZM14.5 5H11V1.5H14.5V5Z" fill="#66ADFF"/>
<g opacity="0.17">
<path d="M10 5V1.5H6.5V5H10Z" fill="#66ADFF"/>
<path d="M5.5 1.5H2V5H5.5V1.5Z" fill="#66ADFF"/>
<path d="M2 6V9.5H5.5V6H2Z" fill="#66ADFF"/>
<path d="M2 10.5V14H5.5V10.5H2Z" fill="#66ADFF"/>
<path d="M6.5 14H10V10.5H6.5V14Z" fill="#66ADFF"/>
<path d="M11 14H14.5V10.5H11V14Z" fill="#66ADFF"/>
<path d="M14.5 9.5V6H11V9.5H14.5Z" fill="#66ADFF"/>
<path d="M14.5 5V1.5H11V5H14.5Z" fill="#66ADFF"/>
<path d="M10 9.5V6H6.5V9.5H10Z" fill="#66ADFF"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 825 B

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M1 4V12.5C1 12.6326 1.05268 12.7598 1.14645 12.8536C1.24021 12.9473 1.36739 13 1.5 13C1.63261 13 1.75979 12.9473 1.85355 12.8536C1.94732 12.7598 2 12.6326 2 12.5V4H1Z" fill="white"/>
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M14.8687 12.8685C14.9529 12.7843 15.0002 12.6701 15.0002 12.551V2H3.0002V12.5C2.99855 12.6707 2.96742 12.8399 2.9082 13H14.5512C14.6703 13 14.7845 12.9527 14.8687 12.8685ZM10.0002 7H14.0002V8H10.0002V7ZM10.0002 9H14.0002V10H10.0002V9ZM4.0002 11H14.0002V12H4.0002V11ZM4 7H9V10H4V7ZM14 3H4V6H14V3Z" fill="white"/>
<path opacity="0.3" d="M13 4H5V5H13V4Z" fill="#4072E5"/>
<path d="M13 4V5H5V4H13ZM14 3H4V6H14V3Z" fill="#4072E5"/>
<path opacity="0.6" d="M14 7H10V8H14V7ZM14 9H10V10H14V9ZM14 11H4V12H14V11ZM2 1V3H0V12.5C0 12.8978 0.158035 13.2794 0.43934 13.5607C0.720644 13.842 1.10218 14 1.5 14H14.551C14.9353 14 15.3039 13.8473 15.5756 13.5756C15.8473 13.3039 16 12.9353 16 12.551V1H2ZM1 12.5V4H2V12.5C2 12.6326 1.94732 12.7598 1.85355 12.8536C1.75979 12.9473 1.63261 13 1.5 13C1.36739 13 1.24021 12.9473 1.14645 12.8536C1.05268 12.7598 1 12.6326 1 12.5ZM15 12.551C15 12.6701 14.9527 12.7843 14.8685 12.8685C14.7843 12.9527 14.6701 13 14.551 13H2.908C2.96722 12.8399 2.99834 12.6707 3 12.5V2H15V12.551Z" fill="white"/>
<path opacity="0.26" d="M8 8H5V9H8V8Z" fill="#66ADFF"/>
<path opacity="0.85" d="M8 8V9H5V8H8ZM9 7H4V10H9V7Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M1 4.5V13.5C1 13.6326 1.05268 13.7598 1.14645 13.8536C1.24021 13.9473 1.36739 14 1.5 14C1.63261 14 1.75979 13.9473 1.85355 13.8536C1.94732 13.7598 2 13.6326 2 13.5V4.5H1Z" fill="white"/>
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M14.8687 13.8685C14.9529 13.7843 15.0002 13.6701 15.0002 13.551V2H3.0002V13.5C2.99855 13.6707 2.96742 13.8399 2.9082 14H14.5512C14.6703 14 14.7845 13.9527 14.8687 13.8685ZM10.0002 7.5H14.0002V8.5H10.0002V7.5ZM10.0002 9.5H14.0002V10.5H10.0002V9.5ZM4.0002 11.5H14.0002V12.5H4.0002V11.5ZM4 3.5H14V6.5H4V3.5ZM9 7.5H4V10.5H9V7.5Z" fill="white"/>
<path opacity="0.3" d="M13 4.5H5V5.5H13V4.5Z" fill="#4072E5"/>
<path d="M13 4.5V5.5H5V4.5H13ZM14 3.5H4V6.5H14V3.5Z" fill="#4072E5"/>
<path opacity="0.6" d="M14 7.5H10V8.5H14V7.5ZM14 9.5H10V10.5H14V9.5ZM14 11.5H4V12.5H14V11.5ZM2 1V3.5H0V13.5C0 13.8978 0.158035 14.2794 0.43934 14.5607C0.720644 14.842 1.10218 15 1.5 15H14.551C14.9353 15 15.3039 14.8473 15.5756 14.5756C15.8473 14.3039 16 13.9353 16 13.551V1H2ZM1 13.5V4.5H2V13.5C2 13.6326 1.94732 13.7598 1.85355 13.8536C1.75979 13.9473 1.63261 14 1.5 14C1.36739 14 1.24021 13.9473 1.14645 13.8536C1.05268 13.7598 1 13.6326 1 13.5ZM15 13.551C15 13.6701 14.9527 13.7843 14.8685 13.8685C14.7843 13.9527 14.6701 14 14.551 14H2.908C2.96722 13.8399 2.99834 13.6707 3 13.5V2H15V13.551Z" fill="white"/>
<path opacity="0.26" d="M8 8.5H5V9.5H8V8.5Z" fill="#66ADFF"/>
<path opacity="0.85" d="M8 8.5V9.5H5V8.5H8ZM9 7.5H4V10.5H9V7.5Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.8" d="M14 1V2H3V1H14ZM15 0H2V3H15V0Z" fill="#FAA700"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M15 3V10.707L9.707 16H2V3H3V15H9V10H14V3H15ZM13.293 11H10V14.293L13.293 11Z" fill="white"/>
<path opacity="0.32" d="M14 1H3V2H14V1Z" fill="#FAA700"/>
<path opacity="0.24" d="M10 11V14.293L13.293 11H10Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 456 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.8" d="M13.5 1V2H2.5V1H13.5ZM14.5 0H1.5V3H14.5V0Z" fill="#FAA700"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M14.5 3V11.207L9.707 16H1.5V3H2.5V15H9V10.5H13.5V3H14.5ZM12.793 11.5H10V14.293L12.793 11.5Z" fill="white"/>
<path opacity="0.32" d="M13.5 1H2.5V2H13.5V1Z" fill="#FAA700"/>
<path opacity="0.24" d="M10 11.5V14.293L12.793 11.5H10Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 494 B

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M6 11V14.5C6 14.8978 6.15804 15.2794 6.43934 15.5607C6.72064 15.842 7.10218 16 7.5 16H8.5C8.89782 16 9.27936 15.842 9.56066 15.5607C9.84196 15.2794 10 14.8978 10 14.5V11H6ZM9 14.5C9 14.6326 8.94732 14.7598 8.85355 14.8536C8.75979 14.9473 8.63261 15 8.5 15H7.5C7.36739 15 7.24021 14.9473 7.14645 14.8536C7.05268 14.7598 7 14.6326 7 14.5V14H9V14.5ZM9 13H7V12H9V13Z" fill="white"/>
<g opacity="0.12">
<path d="M8.85355 14.8536C8.94732 14.7598 9 14.6326 9 14.5V14H7V14.5C7 14.6326 7.05268 14.7598 7.14645 14.8536C7.24021 14.9473 7.36739 15 7.5 15H8.5C8.63261 15 8.75979 14.9473 8.85355 14.8536Z" fill="white"/>
<path d="M7 13H9V12H7V13Z" fill="white"/>
</g>
<path opacity="0.8" d="M7 11C6.89168 9.99364 6.40174 9.06709 5.631 8.411C5.14175 7.98301 4.74481 7.45983 4.46439 6.87338C4.18398 6.28694 4.02597 5.64952 4 5C4 3.93913 4.42143 2.92172 5.17157 2.17157C5.92172 1.42143 6.93913 1 8 1C9.06087 1 10.0783 1.42143 10.8284 2.17157C11.5786 2.92172 12 3.93913 12 5C11.9762 5.63791 11.8219 6.26417 11.5468 6.84016C11.2716 7.41616 10.8813 7.92966 10.4 8.349C9.60672 9.01729 9.10463 9.96804 9 11H10C10 9.25 13 8.391 13 5C13 3.67392 12.4732 2.40215 11.5355 1.46447C10.5979 0.526784 9.32608 0 8 0C6.67392 0 5.40215 0.526784 4.46447 1.46447C3.52678 2.40215 3 3.67392 3 5C3 8.391 6 9.328 6 11H7Z" fill="#FAA700"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M6 11V14.5C6 14.8978 6.15804 15.2794 6.43934 15.5607C6.72064 15.842 7.10218 16 7.5 16H8.5C8.89782 16 9.27936 15.842 9.56066 15.5607C9.84196 15.2794 10 14.8978 10 14.5V11H6ZM9 14.5C9 14.6326 8.94732 14.7598 8.85355 14.8536C8.75979 14.9473 8.63261 15 8.5 15H7.5C7.36739 15 7.24021 14.9473 7.14645 14.8536C7.05268 14.7598 7 14.6326 7 14.5V14H9V14.5ZM9 13H7V12H9V13Z" fill="white"/>
<g opacity="0.12">
<path d="M8.85355 14.8536C8.94732 14.7598 9 14.6326 9 14.5V14H7V14.5C7 14.6326 7.05268 14.7598 7.14645 14.8536C7.24021 14.9473 7.36739 15 7.5 15H8.5C8.63261 15 8.75979 14.9473 8.85355 14.8536Z" fill="white"/>
<path d="M7 13H9V12H7V13Z" fill="white"/>
</g>
<path opacity="0.8" d="M7 11C6.89168 9.99364 6.40174 9.06709 5.631 8.411C5.14175 7.98301 4.74481 7.45983 4.46439 6.87338C4.18398 6.28694 4.02597 5.64952 4 5C4 3.93913 4.42143 2.92172 5.17157 2.17157C5.92172 1.42143 6.93913 1 8 1C9.06087 1 10.0783 1.42143 10.8284 2.17157C11.5786 2.92172 12 3.93913 12 5C11.9762 5.63791 11.8219 6.26417 11.5468 6.84016C11.2716 7.41616 10.8813 7.92966 10.4 8.349C9.60672 9.01729 9.10463 9.96804 9 11H10C10 9.25 13 8.391 13 5C13 3.67392 12.4732 2.40215 11.5355 1.46447C10.5979 0.526784 9.32608 0 8 0C6.67392 0 5.40215 0.526784 4.46447 1.46447C3.52678 2.40215 3 3.67392 3 5C3 8.391 6 9.328 6 11H7Z" fill="#FAA700"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.2">
<path d="M6 16H10V13.444C10 12.521 9.907 12 8 12C6.093 12 6 12.521 6 13.444V16Z" fill="#444444"/>
<path d="M7.44443 8.83147C7.60888 8.94135 7.80222 9 8 9C8.26522 9 8.51957 8.89464 8.70711 8.70711C8.89464 8.51957 9 8.26522 9 8C9 7.80222 8.94135 7.60888 8.83147 7.44443C8.72159 7.27998 8.56541 7.15181 8.38268 7.07612C8.19996 7.00043 7.99889 6.98063 7.80491 7.01922C7.61093 7.0578 7.43275 7.15304 7.29289 7.29289C7.15304 7.43275 7.0578 7.61093 7.01921 7.80491C6.98063 7.99889 7.00043 8.19996 7.07612 8.38268C7.15181 8.56541 7.27998 8.72159 7.44443 8.83147Z" fill="#444444"/>
</g>
<path opacity="0.6" d="M11 13.444C11 11.686 10.159 11 8 11C5.841 11 5 11.686 5 13.444V16H6V13.444C6 12.521 6.093 12 8 12C9.907 12 10 12.521 10 13.444V16H11V13.444ZM8 6C7.60444 6 7.21776 6.1173 6.88886 6.33706C6.55996 6.55682 6.30362 6.86918 6.15224 7.23463C6.00087 7.60009 5.96126 8.00222 6.03843 8.39018C6.1156 8.77814 6.30608 9.13451 6.58579 9.41421C6.86549 9.69392 7.22186 9.8844 7.60982 9.96157C7.99778 10.0387 8.39991 9.99913 8.76537 9.84776C9.13082 9.69638 9.44318 9.44004 9.66294 9.11114C9.8827 8.78224 10 8.39556 10 8C10 7.46957 9.78929 6.96086 9.41421 6.58579C9.03914 6.21071 8.53043 6 8 6ZM8 9C7.80222 9 7.60888 8.94135 7.44443 8.83147C7.27998 8.72159 7.15181 8.56541 7.07612 8.38268C7.00043 8.19996 6.98063 7.99889 7.01921 7.80491C7.0578 7.61093 7.15304 7.43275 7.29289 7.29289C7.43275 7.15304 7.61093 7.0578 7.80491 7.01921C7.99889 6.98063 8.19996 7.00043 8.38268 7.07612C8.56541 7.15181 8.72159 7.27998 8.83147 7.44443C8.94135 7.60888 9 7.80222 9 8C9 8.26522 8.89464 8.51957 8.70711 8.70711C8.51957 8.89464 8.26522 9 8 9Z" fill="white"/>
<path opacity="0.85" d="M1.867 13.1368C0.889591 11.9698 0.265407 10.5482 0.06774 9.03883C-0.129927 7.5295 0.107127 5.99509 0.751071 4.61578C1.39501 3.23646 2.41912 2.0695 3.70313 1.2519C4.98715 0.434296 6.47778 0 8 0C9.52223 0 11.0129 0.434296 12.2969 1.2519C13.5809 2.0695 14.605 3.23646 15.2489 4.61578C15.8929 5.99509 16.1299 7.5295 15.9323 9.03883C15.7346 10.5482 15.1104 11.9698 14.133 13.1368L13.421 12.4248C14.2591 11.3989 14.7888 10.1563 14.9488 8.84134C15.1087 7.52637 14.8923 6.19301 14.3246 4.99617C13.7569 3.79932 12.8612 2.78813 11.7417 2.08006C10.6221 1.372 9.32467 0.996131 8 0.996131C6.67534 0.996131 5.37787 1.372 4.25833 2.08006C3.13879 2.78813 2.24314 3.79932 1.67543 4.99617C1.10773 6.19301 0.891274 7.52637 1.05122 8.84134C1.21116 10.1563 1.74094 11.3989 2.579 12.4248L1.867 13.1368ZM4 8.00376C3.99814 7.37515 4.14446 6.75494 4.42709 6.19345C4.70973 5.63196 5.12072 5.14498 5.62673 4.77201C6.13275 4.39905 6.71955 4.15059 7.33954 4.0468C7.95953 3.94301 8.59525 3.9868 9.19515 4.17462C9.79505 4.36245 10.3422 4.68902 10.7923 5.12784C11.2424 5.56667 11.5828 6.1054 11.7857 6.70035C11.9887 7.2953 12.0486 7.9297 11.9606 8.55212C11.8725 9.17454 11.639 9.76745 11.279 10.2828L11.988 10.9918C12.4627 10.3585 12.7801 9.62155 12.914 8.84156C13.0479 8.06156 12.9945 7.26091 12.7581 6.50563C12.5218 5.75034 12.1093 5.06205 11.5546 4.49752C11 3.93299 10.3191 3.50839 9.56813 3.25873C8.81714 3.00907 8.01756 2.9415 7.23532 3.06159C6.45308 3.18169 5.71059 3.486 5.06908 3.94945C4.42757 4.4129 3.90542 5.0222 3.54567 5.72711C3.18593 6.43203 2.9989 7.21236 3 8.00376C3.00309 9.08337 3.35841 10.1325 4.012 10.9918L4.721 10.2828C4.25196 9.61535 4.00018 8.81951 4 8.00376Z" fill="#FF794C"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.2">
<path d="M6 16H10V13.444C10 12.521 9.907 12 8 12C6.093 12 6 12.521 6 13.444V16Z" fill="#444444"/>
<path d="M7.44443 8.83147C7.60888 8.94135 7.80222 9 8 9C8.26522 9 8.51957 8.89464 8.70711 8.70711C8.89464 8.51957 9 8.26522 9 8C9 7.80222 8.94135 7.60888 8.83147 7.44443C8.72159 7.27998 8.56541 7.15181 8.38268 7.07612C8.19996 7.00043 7.99889 6.98063 7.80491 7.01922C7.61093 7.0578 7.43275 7.15304 7.29289 7.29289C7.15304 7.43275 7.0578 7.61093 7.01921 7.80491C6.98063 7.99889 7.00043 8.19996 7.07612 8.38268C7.15181 8.56541 7.27998 8.72159 7.44443 8.83147Z" fill="#444444"/>
</g>
<path opacity="0.6" d="M11 13.444C11 11.686 10.159 11 8 11C5.841 11 5 11.686 5 13.444V16H6V13.444C6 12.521 6.093 12 8 12C9.907 12 10 12.521 10 13.444V16H11V13.444ZM8 6C7.60444 6 7.21776 6.1173 6.88886 6.33706C6.55996 6.55682 6.30362 6.86918 6.15224 7.23463C6.00087 7.60009 5.96126 8.00222 6.03843 8.39018C6.1156 8.77814 6.30608 9.13451 6.58579 9.41421C6.86549 9.69392 7.22186 9.8844 7.60982 9.96157C7.99778 10.0387 8.39991 9.99913 8.76537 9.84776C9.13082 9.69638 9.44318 9.44004 9.66294 9.11114C9.8827 8.78224 10 8.39556 10 8C10 7.46957 9.78929 6.96086 9.41421 6.58579C9.03914 6.21071 8.53043 6 8 6ZM8 9C7.80222 9 7.60888 8.94135 7.44443 8.83147C7.27998 8.72159 7.15181 8.56541 7.07612 8.38268C7.00043 8.19996 6.98063 7.99889 7.01921 7.80491C7.0578 7.61093 7.15304 7.43275 7.29289 7.29289C7.43275 7.15304 7.61093 7.0578 7.80491 7.01921C7.99889 6.98063 8.19996 7.00043 8.38268 7.07612C8.56541 7.15181 8.72159 7.27998 8.83147 7.44443C8.94135 7.60888 9 7.80222 9 8C9 8.26522 8.89464 8.51957 8.70711 8.70711C8.51957 8.89464 8.26522 9 8 9Z" fill="white"/>
<path opacity="0.85" d="M1.867 13.1368C0.889591 11.9698 0.265407 10.5482 0.06774 9.03883C-0.129927 7.5295 0.107127 5.99509 0.751071 4.61578C1.39501 3.23646 2.41912 2.0695 3.70313 1.2519C4.98715 0.434296 6.47778 0 8 0C9.52223 0 11.0129 0.434296 12.2969 1.2519C13.5809 2.0695 14.605 3.23646 15.2489 4.61578C15.8929 5.99509 16.1299 7.5295 15.9323 9.03883C15.7346 10.5482 15.1104 11.9698 14.133 13.1368L13.421 12.4248C14.2591 11.3989 14.7888 10.1563 14.9488 8.84134C15.1087 7.52637 14.8923 6.19301 14.3246 4.99617C13.7569 3.79932 12.8612 2.78813 11.7417 2.08006C10.6221 1.372 9.32467 0.996131 8 0.996131C6.67534 0.996131 5.37787 1.372 4.25833 2.08006C3.13879 2.78813 2.24314 3.79932 1.67543 4.99617C1.10773 6.19301 0.891274 7.52637 1.05122 8.84134C1.21116 10.1563 1.74094 11.3989 2.579 12.4248L1.867 13.1368ZM4 8.00376C3.99814 7.37515 4.14446 6.75494 4.42709 6.19345C4.70973 5.63196 5.12072 5.14498 5.62673 4.77201C6.13275 4.39905 6.71955 4.15059 7.33954 4.0468C7.95953 3.94301 8.59525 3.9868 9.19515 4.17462C9.79505 4.36245 10.3422 4.68902 10.7923 5.12784C11.2424 5.56667 11.5828 6.1054 11.7857 6.70035C11.9887 7.2953 12.0486 7.9297 11.9606 8.55212C11.8725 9.17454 11.639 9.76745 11.279 10.2828L11.988 10.9918C12.4627 10.3585 12.7801 9.62155 12.914 8.84156C13.0479 8.06156 12.9945 7.26091 12.7581 6.50563C12.5218 5.75034 12.1093 5.06205 11.5546 4.49752C11 3.93299 10.3191 3.50839 9.56813 3.25873C8.81714 3.00907 8.01756 2.9415 7.23532 3.06159C6.45308 3.18169 5.71059 3.486 5.06908 3.94945C4.42757 4.4129 3.90542 5.0222 3.54567 5.72711C3.18593 6.43203 2.9989 7.21236 3 8.00376C3.00309 9.08337 3.35841 10.1325 4.012 10.9918L4.721 10.2828C4.25196 9.61535 4.00018 8.81951 4 8.00376Z" fill="#FF794C"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,17 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M13.5 5.5L14 5L15 6L14.5 6.5L13.5 5.5Z" fill="white"/>
<path opacity="0.36" fill-rule="evenodd" clip-rule="evenodd" d="M12.5 5.5L13.5001 4.49992C13.7762 4.22382 14.2238 4.22382 14.4999 4.49992L15.5001 5.50007C15.7762 5.77617 15.7762 6.22382 15.5001 6.49992L14.5 7.5L12.5 5.5ZM14 5L13.5 5.5L14.5 6.5L15 6L14 5Z" fill="white"/>
<path opacity="0.4" d="M7.70703 12.2929V11.2929L7.99993 11L8.99994 12L8.70704 12.2929H7.70703Z" fill="#E0AF97"/>
<path opacity="0.8" d="M12.5 5.5L8 10L8.5 10.5L13 6L12.5 5.5Z" fill="#FAA700"/>
<path opacity="0.8" d="M14 7L9.5 11.5L10 12L14.5 7.5L14 7Z" fill="#FAA700"/>
<path opacity="0.64" d="M13 6L8.5 10.5L9.5 11.5L14 7L13 6Z" fill="#FAA700"/>
<path opacity="0.75" d="M7 11.5V13H8.5V12.2929H7.7071V11.5H7Z" fill="white"/>
<path opacity="0.5" d="M7.7071 11.5V11.2929L8 11L9.00001 12L8.70711 12.2929H8.5V13H9L10 12L8 10L7 11V11.5H7.7071Z" fill="#E0AF97"/>
<g opacity="0.75">
<path d="M3 6H6V5H3V6Z" fill="white"/>
<path d="M10 8L9 9H3V8H10Z" fill="white"/>
<path d="M7 11V12H3V11H7Z" fill="white"/>
</g>
<path opacity="0.24" d="M8 1.70703V5H11.293L8 1.70703Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M1 15V1H7V6H12L12.8535 5.14648L7.70703 0H0V16H13V9L12 10V15H1ZM8 1.70703L11.293 5H8V1.70703Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,18 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M13.5 5.5L14 5L15 6L14.5 6.5L13.5 5.5Z" fill="white"/>
<path opacity="0.36" fill-rule="evenodd" clip-rule="evenodd" d="M12.5 5.5L13.5001 4.49992C13.7762 4.22382 14.2238 4.22382 14.4999 4.49992L15.5001 5.50007C15.7762 5.77617 15.7762 6.22382 15.5001 6.49992L14.5 7.5L12.5 5.5ZM14 5L13.5 5.5L14.5 6.5L15 6L14 5Z" fill="white"/>
<path opacity="0.4" d="M7.70703 12.2929V11.2929L7.99993 11L8.99994 12L8.70704 12.2929H7.70703Z" fill="#E0AF97"/>
<path opacity="0.8" d="M12.5 5.5L8 10L8.5 10.5L13 6L12.5 5.5Z" fill="#FAA700"/>
<path opacity="0.8" d="M14 7L9.5 11.5L10 12L14.5 7.5L14 7Z" fill="#FAA700"/>
<path opacity="0.64" d="M13 6L8.5 10.5L9.5 11.5L14 7L13 6Z" fill="#FAA700"/>
<path opacity="0.75" d="M7 11.5V13H8.5V12.2929H7.7071V11.5H7Z" fill="white"/>
<path opacity="0.5" d="M7.7071 11.5V11.2929L8 11L9.00001 12L8.70711 12.2929H8.5V13H9L10 12L8 10L7 11V11.5H7.7071Z" fill="#E0AF97"/>
<g opacity="0.75">
<path d="M3 5.5H6V4.5H3V5.5Z" fill="white"/>
<path d="M3 7H10V8H3V7Z" fill="white"/>
<path d="M8.5 9.5L7.5 10.5H3V9.5H8.5Z" fill="white"/>
<path d="M7 12V13H3V12H7Z" fill="white"/>
</g>
<path opacity="0.24" d="M8.5 1.70703V4.5H11.293L8.5 1.70703Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M1 1V15H12V10L13 9V16H0V0H8.20703L13 4.79297V5L12 6V5.5H7.5V1H1ZM11.293 4.5L8.5 1.70703V4.5H11.293Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M16 11V0H1V11H8V12.293L5.146 15.146C5.05211 15.2399 4.99937 15.3672 4.99937 15.5C4.99937 15.6328 5.05211 15.7601 5.146 15.854C5.23989 15.9479 5.36722 16.0006 5.5 16.0006C5.63278 16.0006 5.76011 15.9479 5.854 15.854L8 13.707V15.5C8 15.6326 8.05268 15.7598 8.14645 15.8536C8.24021 15.9473 8.36739 16 8.5 16C8.63261 16 8.75979 15.9473 8.85355 15.8536C8.94732 15.7598 9 15.6326 9 15.5V13.707L11.146 15.854C11.2399 15.9479 11.3672 16.0006 11.5 16.0006C11.6328 16.0006 11.7601 15.9479 11.854 15.854C11.9479 15.7601 12.0006 15.6328 12.0006 15.5C12.0006 15.3672 11.9479 15.2399 11.854 15.146L9 12.293V11H16ZM2 10V1H15V10H2Z" fill="white"/>
<path opacity="0.85" d="M14 3.94097L10.036 5.92297L7.036 3.92297L3 5.94097V7.05897L6.964 5.07697L9.964 7.07697L14 5.05897V3.94097Z" fill="#66ADFF"/>
<path opacity="0.51" d="M3 7.05908V8.99999H14V5.05908L9.964 7.07708L6.964 5.07708L3 7.05908Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 1,018 B

View file

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M15.5 11V0H0.5V11H7.5V12.293L4.646 15.146C4.55211 15.2399 4.49937 15.3672 4.49937 15.5C4.49937 15.6328 4.55211 15.7601 4.646 15.854C4.73989 15.9479 4.86722 16.0006 5 16.0006C5.13278 16.0006 5.26011 15.9479 5.354 15.854L7.5 13.707V15.5C7.5 15.6326 7.55268 15.7598 7.64645 15.8536C7.74021 15.9473 7.86739 16 8 16C8.13261 16 8.25979 15.9473 8.35355 15.8536C8.44732 15.7598 8.5 15.6326 8.5 15.5V13.707L10.646 15.854C10.7399 15.9479 10.8672 16.0006 11 16.0006C11.1328 16.0006 11.2601 15.9479 11.354 15.854C11.4479 15.7601 11.5006 15.6328 11.5006 15.5C11.5006 15.3672 11.4479 15.2399 11.354 15.146L8.5 12.293V11H15.5ZM1.5 10V1H14.5V10H1.5Z" fill="white"/>
<path opacity="0.85" d="M13.5 3.94097L9.536 5.92297L6.536 3.92297L2.5 5.94097V7.05897L6.464 5.07697L9.464 7.07697L13.5 5.05897V3.94097Z" fill="#66ADFF"/>
<path opacity="0.51" d="M2.5 7.05908V8.99999H13.5V5.05908L9.464 7.07708L6.464 5.07708L2.5 7.05908Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M3.99994 8.00003C4.00185 8.61249 4.14506 9.21625 4.4184 9.76433C4.69175 10.3124 5.08787 10.79 5.57594 11.16L4.96794 11.951C4.35696 11.4896 3.86136 10.8927 3.5201 10.2073C3.17884 9.5219 3.00122 8.76668 3.00122 8.00103C3.00122 7.23538 3.17884 6.48016 3.5201 5.79476C3.86136 5.10937 4.35696 4.51248 4.96794 4.05103L5.57594 4.84203C5.08814 5.21182 4.69218 5.68912 4.41884 6.23683C4.14551 6.78454 4.00216 7.38791 3.99994 8.00003ZM0.999938 8.00003C1.00085 6.92702 1.24895 5.86865 1.72499 4.90702C2.20104 3.94539 2.89223 3.10636 3.74494 2.45503L3.13494 1.65503C2.16011 2.39965 1.37013 3.35903 0.826375 4.45861C0.282624 5.55819 -0.000244141 6.76835 -0.000244141 7.99503C-0.000244141 9.22171 0.282624 10.4319 0.826375 11.5314C1.37013 12.631 2.16011 13.5904 3.13494 14.335L3.74494 13.54C2.8929 12.8892 2.20211 12.051 1.7261 11.0903C1.25008 10.1296 1.00161 9.07219 0.999938 8.00003ZM11.0319 4.04903L10.4239 4.84003C10.9134 5.2087 11.3106 5.68605 11.5841 6.23443C11.8576 6.78281 12 7.38723 12 8.00003C12 8.61283 11.8576 9.21725 11.5841 9.76563C11.3106 10.314 10.9134 10.7914 10.4239 11.16L11.0319 11.951C11.6429 11.4896 12.1385 10.8927 12.4798 10.2073C12.821 9.5219 12.9987 8.76668 12.9987 8.00103C12.9987 7.23538 12.821 6.48016 12.4798 5.79476C12.1385 5.10937 11.6429 4.51248 11.0319 4.05103V4.04903ZM9.99994 8.00003C9.99994 8.39559 9.88264 8.78227 9.66288 9.11117C9.44311 9.44007 9.13076 9.69641 8.7653 9.84779C8.39985 9.99916 7.99772 10.0388 7.60976 9.9616C7.2218 9.88443 6.86543 9.69395 6.58572 9.41424C6.30602 9.13454 6.11554 8.77817 6.03837 8.39021C5.9612 8.00225 6.0008 7.60011 6.15218 7.23466C6.30355 6.86921 6.5599 6.55685 6.8888 6.33709C7.2177 6.11733 7.60438 6.00003 7.99994 6.00003C8.53037 6.00003 9.03908 6.21074 9.41415 6.58582C9.78922 6.96089 9.99994 7.4696 9.99994 8.00003ZM8.99994 8.00003C8.99994 7.80225 8.94129 7.60891 8.83141 7.44446C8.72153 7.28001 8.56535 7.15184 8.38262 7.07615C8.1999 7.00046 7.99883 6.98066 7.80485 7.01924C7.61087 7.05783 7.43268 7.15307 7.29283 7.29292C7.15298 7.43278 7.05774 7.61096 7.01915 7.80494C6.98057 7.99892 7.00037 8.19999 7.07606 8.38271C7.15175 8.56544 7.27992 8.72162 7.44437 8.8315C7.60882 8.94138 7.80216 9.00003 7.99994 9.00003C8.26515 9.00003 8.51951 8.89467 8.70704 8.70714C8.89458 8.5196 8.99994 8.26525 8.99994 8.00003ZM12.8649 1.66003L12.2549 2.46003C13.1083 3.11073 13.8 3.94963 14.2761 4.9114C14.7523 5.87317 15 6.93186 15 8.00503C15 9.0782 14.7523 10.1369 14.2761 11.0987C13.8 12.0604 13.1083 12.8993 12.2549 13.55L12.8649 14.35C13.8398 13.6054 14.6297 12.646 15.1735 11.5464C15.7173 10.4469 16.0001 9.23671 16.0001 8.01003C16.0001 6.78335 15.7173 5.57319 15.1735 4.47361C14.6297 3.37403 13.8398 2.41465 12.8649 1.67003V1.66003Z" fill="#FF794C"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M3.99994 8.00003C4.00185 8.61249 4.14506 9.21625 4.4184 9.76433C4.69175 10.3124 5.08787 10.79 5.57594 11.16L4.96794 11.951C4.35696 11.4896 3.86136 10.8927 3.5201 10.2073C3.17884 9.5219 3.00122 8.76668 3.00122 8.00103C3.00122 7.23538 3.17884 6.48016 3.5201 5.79476C3.86136 5.10937 4.35696 4.51248 4.96794 4.05103L5.57594 4.84203C5.08814 5.21182 4.69218 5.68912 4.41884 6.23683C4.14551 6.78454 4.00216 7.38791 3.99994 8.00003ZM0.999938 8.00003C1.00085 6.92702 1.24895 5.86865 1.72499 4.90702C2.20104 3.94539 2.89223 3.10636 3.74494 2.45503L3.13494 1.65503C2.16011 2.39965 1.37013 3.35903 0.826375 4.45861C0.282624 5.55819 -0.000244141 6.76835 -0.000244141 7.99503C-0.000244141 9.22171 0.282624 10.4319 0.826375 11.5314C1.37013 12.631 2.16011 13.5904 3.13494 14.335L3.74494 13.54C2.8929 12.8892 2.20211 12.051 1.7261 11.0903C1.25008 10.1296 1.00161 9.07219 0.999938 8.00003ZM11.0319 4.04903L10.4239 4.84003C10.9134 5.2087 11.3106 5.68605 11.5841 6.23443C11.8576 6.78281 12 7.38723 12 8.00003C12 8.61283 11.8576 9.21725 11.5841 9.76563C11.3106 10.314 10.9134 10.7914 10.4239 11.16L11.0319 11.951C11.6429 11.4896 12.1385 10.8927 12.4798 10.2073C12.821 9.5219 12.9987 8.76668 12.9987 8.00103C12.9987 7.23538 12.821 6.48016 12.4798 5.79476C12.1385 5.10937 11.6429 4.51248 11.0319 4.05103V4.04903ZM9.99994 8.00003C9.99994 8.39559 9.88264 8.78227 9.66288 9.11117C9.44311 9.44007 9.13076 9.69641 8.7653 9.84779C8.39985 9.99916 7.99772 10.0388 7.60976 9.9616C7.2218 9.88443 6.86543 9.69395 6.58572 9.41424C6.30602 9.13454 6.11554 8.77817 6.03837 8.39021C5.9612 8.00225 6.0008 7.60011 6.15218 7.23466C6.30355 6.86921 6.5599 6.55685 6.8888 6.33709C7.2177 6.11733 7.60438 6.00003 7.99994 6.00003C8.53037 6.00003 9.03908 6.21074 9.41415 6.58582C9.78922 6.96089 9.99994 7.4696 9.99994 8.00003ZM8.99994 8.00003C8.99994 7.80225 8.94129 7.60891 8.83141 7.44446C8.72153 7.28001 8.56535 7.15184 8.38262 7.07615C8.1999 7.00046 7.99883 6.98066 7.80485 7.01924C7.61087 7.05783 7.43268 7.15307 7.29283 7.29292C7.15298 7.43278 7.05774 7.61096 7.01915 7.80494C6.98057 7.99892 7.00037 8.19999 7.07606 8.38271C7.15175 8.56544 7.27992 8.72162 7.44437 8.8315C7.60882 8.94138 7.80216 9.00003 7.99994 9.00003C8.26515 9.00003 8.51951 8.89467 8.70704 8.70714C8.89458 8.5196 8.99994 8.26525 8.99994 8.00003ZM12.8649 1.66003L12.2549 2.46003C13.1083 3.11073 13.8 3.94963 14.2761 4.9114C14.7523 5.87317 15 6.93186 15 8.00503C15 9.0782 14.7523 10.1369 14.2761 11.0987C13.8 12.0604 13.1083 12.8993 12.2549 13.55L12.8649 14.35C13.8398 13.6054 14.6297 12.646 15.1735 11.5464C15.7173 10.4469 16.0001 9.23671 16.0001 8.01003C16.0001 6.78335 15.7173 5.57319 15.1735 4.47361C14.6297 3.37403 13.8398 2.41465 12.8649 1.67003V1.66003Z" fill="#FF794C"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,12 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M1 2.5C1 2.36739 1.05268 2.24021 1.14645 2.14645C1.24021 2.05268 1.36739 2 1.5 2H3.5C3.63261 2 3.75979 2.05268 3.85355 2.14645C3.94732 2.24021 4 2.36739 4 2.5C4 2.63261 3.94732 2.75979 3.85355 2.85355C3.75979 2.94732 3.63261 3 3.5 3H1.5C1.36739 3 1.24021 2.94732 1.14645 2.85355C1.05268 2.75979 1 2.63261 1 2.5ZM3.5 4.5H1.5C1.36739 4.5 1.24021 4.55268 1.14645 4.64645C1.05268 4.74021 1 4.86739 1 5C1 5.13261 1.05268 5.25979 1.14645 5.35355C1.24021 5.44732 1.36739 5.5 1.5 5.5H3.5C3.63261 5.5 3.75979 5.44732 3.85355 5.35355C3.94732 5.25979 4 5.13261 4 5C4 4.86739 3.94732 4.74021 3.85355 4.64645C3.75979 4.55268 3.63261 4.5 3.5 4.5ZM3.5 7H1.5C1.36739 7 1.24021 7.05268 1.14645 7.14645C1.05268 7.24021 1 7.36739 1 7.5C1 7.63261 1.05268 7.75979 1.14645 7.85355C1.24021 7.94732 1.36739 8 1.5 8H3.5C3.63261 8 3.75979 7.94732 3.85355 7.85355C3.94732 7.75979 4 7.63261 4 7.5C4 7.36739 3.94732 7.24021 3.85355 7.14645C3.75979 7.05268 3.63261 7 3.5 7ZM3.5 9.5H1.5C1.36739 9.5 1.24021 9.55268 1.14645 9.64645C1.05268 9.74021 1 9.86739 1 10C1 10.1326 1.05268 10.2598 1.14645 10.3536C1.24021 10.4473 1.36739 10.5 1.5 10.5H3.5C3.63261 10.5 3.75979 10.4473 3.85355 10.3536C3.94732 10.2598 4 10.1326 4 10C4 9.86739 3.94732 9.74021 3.85355 9.64645C3.75979 9.55268 3.63261 9.5 3.5 9.5ZM3.5 12H1.5C1.36739 12 1.24021 12.0527 1.14645 12.1464C1.05268 12.2402 1 12.3674 1 12.5C1 12.6326 1.05268 12.7598 1.14645 12.8536C1.24021 12.9473 1.36739 13 1.5 13H3.5C3.63261 13 3.75979 12.9473 3.85355 12.8536C3.94732 12.7598 4 12.6326 4 12.5C4 12.3674 3.94732 12.2402 3.85355 12.1464C3.75979 12.0527 3.63261 12 3.5 12Z" fill="#FF6666"/>
<g opacity="0.6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 0H14C14.2652 0 14.5196 0.105357 14.7071 0.292893C14.8946 0.48043 15 0.734784 15 1V14C15 14.2652 14.8946 14.5196 14.7071 14.7071C14.5196 14.8946 14.2652 15 14 15H3C2.73478 15 2.48043 14.8946 2.29289 14.7071C2.10536 14.5196 2 14.2652 2 14V13H3V14H9V9H14V1H3V2H2V1C2 0.734784 2.10536 0.48043 2.29289 0.292893C2.48043 0.105357 2.73478 0 3 0ZM13.293 10H10V13.293L13.293 10ZM10.707 14H14V10.707L10.707 14Z" fill="white"/>
<path d="M2 3V4.5H3V3H2Z" fill="white"/>
<path d="M3 5.5H2V7H3V5.5Z" fill="white"/>
<path d="M3 8H2V9.5H3V8Z" fill="white"/>
<path d="M3 10.5H2V12H3V10.5Z" fill="white"/>
</g>
<path opacity="0.75" d="M12 5H6V4H12V5ZM11 6H7V7H11V6Z" fill="white"/>
<path opacity="0.24" d="M10 10V13.293L13.293 10H10Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,12 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M1 3C1 2.86739 1.05268 2.74021 1.14645 2.64645C1.24021 2.55268 1.36739 2.5 1.5 2.5H3.5C3.63261 2.5 3.75979 2.55268 3.85355 2.64645C3.94732 2.74021 4 2.86739 4 3C4 3.13261 3.94732 3.25979 3.85355 3.35355C3.75979 3.44732 3.63261 3.5 3.5 3.5H1.5C1.36739 3.5 1.24021 3.44732 1.14645 3.35355C1.05268 3.25979 1 3.13261 1 3ZM3.5 5H1.5C1.36739 5 1.24021 5.05268 1.14645 5.14645C1.05268 5.24021 1 5.36739 1 5.5C1 5.63261 1.05268 5.75979 1.14645 5.85355C1.24021 5.94732 1.36739 6 1.5 6H3.5C3.63261 6 3.75979 5.94732 3.85355 5.85355C3.94732 5.75979 4 5.63261 4 5.5C4 5.36739 3.94732 5.24021 3.85355 5.14645C3.75979 5.05268 3.63261 5 3.5 5ZM3.5 7.5H1.5C1.36739 7.5 1.24021 7.55268 1.14645 7.64645C1.05268 7.74021 1 7.86739 1 8C1 8.13261 1.05268 8.25979 1.14645 8.35355C1.24021 8.44732 1.36739 8.5 1.5 8.5H3.5C3.63261 8.5 3.75979 8.44732 3.85355 8.35355C3.94732 8.25979 4 8.13261 4 8C4 7.86739 3.94732 7.74021 3.85355 7.64645C3.75979 7.55268 3.63261 7.5 3.5 7.5ZM3.5 10H1.5C1.36739 10 1.24021 10.0527 1.14645 10.1464C1.05268 10.2402 1 10.3674 1 10.5C1 10.6326 1.05268 10.7598 1.14645 10.8536C1.24021 10.9473 1.36739 11 1.5 11H3.5C3.63261 11 3.75979 10.9473 3.85355 10.8536C3.94732 10.7598 4 10.6326 4 10.5C4 10.3674 3.94732 10.2402 3.85355 10.1464C3.75979 10.0527 3.63261 10 3.5 10ZM3.5 12.5H1.5C1.36739 12.5 1.24021 12.5527 1.14645 12.6464C1.05268 12.7402 1 12.8674 1 13C1 13.1326 1.05268 13.2598 1.14645 13.3536C1.24021 13.4473 1.36739 13.5 1.5 13.5H3.5C3.63261 13.5 3.75979 13.4473 3.85355 13.3536C3.94732 13.2598 4 13.1326 4 13C4 12.8674 3.94732 12.7402 3.85355 12.6464C3.75979 12.5527 3.63261 12.5 3.5 12.5Z" fill="#FF6666"/>
<g opacity="0.6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 0H14C14.2652 0 14.5196 0.105357 14.7071 0.292893C14.8946 0.48043 15 0.734784 15 1V15C15 15.2652 14.8946 15.5196 14.7071 15.7071C14.5196 15.8946 14.2652 16 14 16H3C2.73478 16 2.48043 15.8946 2.29289 15.7071C2.10536 15.5196 2 15.2652 2 15V13.5H3V15H9.5V10.5H14V1H3V2.5H2V1C2 0.734784 2.10536 0.48043 2.29289 0.292893C2.48043 0.105357 2.73478 0 3 0ZM13.293 11.5H10.5V14.293L13.293 11.5ZM11.207 15H14V12.207L11.207 15Z" fill="white"/>
<path d="M2 3.5V5H3V3.5H2Z" fill="white"/>
<path d="M3 6H2V7.5H3V6Z" fill="white"/>
<path d="M3 8.5H2V10H3V8.5Z" fill="white"/>
<path d="M3 11H2V12.5H3V11Z" fill="white"/>
</g>
<path opacity="0.75" d="M12 5.5H6V4.5H12V5.5ZM11 6.5H7V7.5H11V6.5Z" fill="white"/>
<path opacity="0.24" d="M10.5 11.5V14.293L13.293 11.5H10.5Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,14 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M10 1.70703V5H13.293L10 1.70703Z" fill="white"/>
<path opacity="0.85" d="M4 11H5V12H4V11ZM4 8H5V9H4V8Z" fill="#39BF68"/>
<path opacity="0.85" d="M11.5 14.707L10.1445 13.3516L10.8555 12.6445L11.5 13.293L13.1445 11.6445L13.8555 12.3516L11.5 14.707ZM12 10C10.3438 10 9 11.3438 9 13C9 14.6562 10.3438 16 12 16C13.6562 16 15 14.6562 15 13C15 11.3438 13.6562 10 12 10Z" fill="#39BF68"/>
<g opacity="0.6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 1V15H9.76432C10.3137 15.6137 11.1119 16 12 16H2V0H9.70703L15 5.29297V13C15 12.1119 14.6137 11.3137 14 10.7643V6H9V1H3ZM13.293 5L10 1.70703V5H13.293Z" fill="white"/>
<path d="M15 13C15 14.6562 13.6562 16 12 16H15V13Z" fill="white"/>
</g>
<g opacity="0.75">
<path d="M6 9V8H13V9H6Z" fill="white"/>
<path d="M8.53513 11C8.35609 11.3095 8.21733 11.6452 8.12602 12H6V11H8.53513Z" fill="white"/>
<path d="M4 5H8V6H4V5Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1,012 B

View file

@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="white"/>
<path opacity="0.85" d="M4 12H5V13H4V12ZM4 9.5H5V10.5H4V9.5ZM4 7H5V8H4V7Z" fill="#39BF68"/>
<path opacity="0.85" d="M11 14.707L9.64453 13.3516L10.3555 12.6445L11 13.293L12.6445 11.6445L13.3555 12.3516L11 14.707ZM11.5 10C9.84375 10 8.5 11.3438 8.5 13C8.5 14.6562 9.84375 16 11.5 16C13.1562 16 14.5 14.6562 14.5 13C14.5 11.3438 13.1562 10 11.5 10Z" fill="#39BF68"/>
<g opacity="0.6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 1V15H9.26432C9.81372 15.6137 10.6119 16 11.5 16H1.5V0H9.70703L14.5 4.79297V13C14.5 12.1119 14.1137 11.3137 13.5 10.7643V5.5H9V1H2.5ZM12.793 4.5L10 1.70703V4.5H12.793Z" fill="white"/>
<path d="M14.5 13C14.5 14.6562 13.1562 16 11.5 16H14.5V13Z" fill="white"/>
</g>
<path opacity="0.75" d="M6 8H12V7H6V8ZM6 9.5V10.5H8.40234C8.73047 10.0898 9.13672 9.75391 9.60156 9.5H6ZM7.5 4.5H4V5.5H7.5V4.5ZM6 12V13H7.5C7.5 12.6523 7.55859 12.3203 7.64062 12H6Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M15 15V13H14V5H15V3L8.5 0L2 3V5H3V13H2V15H1V16H16V15H15ZM6 5H7V13H6V5ZM8 5H9V13H8V5ZM10 5H11V13H10V5ZM12 5H13V13H12V5ZM3 3.64L8.5 1.1L14 3.64V4H3V3.64ZM5 5V13H4V5H5ZM14 15H3V14H14V15Z" fill="white"/>
<g opacity="0.12">
<path d="M8 5.00012V13.0001H9V5.00012H8Z" fill="white"/>
<path d="M12 5.00012V13.0001H13V5.00012H12Z" fill="white"/>
<path d="M8.5 1.1001L3 3.6401V4.0001H14V3.6401L8.5 1.1001Z" fill="white"/>
<path d="M4 5.00012V13.0001H5V5.00012H4Z" fill="white"/>
<path d="M3 14.0001V15.0001H14V14.0001H3Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 657 B

View file

@ -0,0 +1,10 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M14.5 15V13H13.5V5H14.5V3L8 0L1.5 3V5H2.5V13H1.5V15H0.5V16H15.5V15H14.5ZM5.5 5H6.5V13H5.5V5ZM7.5 5H8.5V13H7.5V5ZM9.5 5H10.5V13H9.5V5ZM11.5 5H12.5V13H11.5V5ZM2.5 3.64L8 1.1L13.5 3.64V4H2.5V3.64ZM4.5 5V13H3.5V5H4.5ZM13.5 15H2.5V14H13.5V15Z" fill="white"/>
<g opacity="0.12">
<path d="M7.5 5.00012V13.0001H8.5V5.00012H7.5Z" fill="white"/>
<path d="M11.5 5.00012V13.0001H12.5V5.00012H11.5Z" fill="white"/>
<path d="M8 1.1001L2.5 3.6401V4.0001H13.5V3.6401L8 1.1001Z" fill="white"/>
<path d="M3.5 5.00012V13.0001H4.5V5.00012H3.5Z" fill="white"/>
<path d="M2.5 14.0001V15.0001H13.5V14.0001H2.5Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 735 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M16 6.5L8 2L0 6.5L3 8.188V11C3 12.657 5.239 14 8 14C10.761 14 13 12.657 13 11V8.188L16 6.5ZM8 3.147L13.96 6.5L8 9.853L2.04 6.5L8 3.147ZM12 11C12 11.944 10.289 13 8 13C5.711 13 4 11.944 4 11V8.75L8 11L12 8.75V11Z" fill="white"/>
<path opacity="0.8" d="M1.00004 7.06274L2.00004 7.62541V12.2241C2.42262 12.903 2.59914 13.7065 2.50004 14.5001C2.50004 14.7761 2.05204 15.0001 1.50004 15.0001C0.948043 15.0001 0.500043 14.7761 0.500043 14.5001C0.400943 13.7065 0.577461 12.903 1.00004 12.2241V7.06274Z" fill="#FF794C"/>
<path opacity="0.24" d="M8 13C10.289 13 12 11.944 12 11V8.75L8 11L4 8.75V11C4 11.944 5.711 13 8 13Z" fill="white"/>
<path opacity="0.12" d="M13.96 6.49997L8.00004 3.14697L2.04004 6.49997L8.00004 9.85297L13.96 6.49997Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 874 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M16 6L8 1.5L0 6L3 7.688V10.5C3 12.157 5.239 13.5 8 13.5C10.761 13.5 13 12.157 13 10.5V7.688L16 6ZM8 2.647L13.96 6L8 9.353L2.04 6L8 2.647ZM12 10.5C12 11.444 10.289 12.5 8 12.5C5.711 12.5 4 11.444 4 10.5V8.25L8 10.5L12 8.25V10.5Z" fill="white"/>
<path opacity="0.8" d="M1.00004 6.56274L2.00004 7.12541V11.7241C2.42262 12.403 2.59914 13.2065 2.50004 14.0001C2.50004 14.2761 2.05204 14.5001 1.50004 14.5001C0.948043 14.5001 0.500043 14.2761 0.500043 14.0001C0.400943 13.2065 0.577461 12.403 1.00004 11.7241V6.56274Z" fill="#FF794C"/>
<path opacity="0.24" d="M8 12.5C10.289 12.5 12 11.444 12 10.5V8.25L8 10.5L4 8.25V10.5C4 11.444 5.711 12.5 8 12.5Z" fill="white"/>
<path opacity="0.12" d="M13.96 5.99997L8.00004 2.64697L2.04004 5.99997L8.00004 9.35297L13.96 5.99997Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 904 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M5 12H11C11.5304 12 12.0391 11.7893 12.4142 11.4142C12.7893 11.0391 13 10.5304 13 10V7C13 6.46957 12.7893 5.96086 12.4142 5.58579C12.0391 5.21071 11.5304 5 11 5H5C4.46957 5 3.96086 5.21071 3.58579 5.58579C3.21071 5.96086 3 6.46957 3 7V10C3 10.5304 3.21071 11.0391 3.58579 11.4142C3.96086 11.7893 4.46957 12 5 12ZM4 7C4 6.73478 4.10536 6.48043 4.29289 6.29289C4.48043 6.10536 4.73478 6 5 6H11C11.2652 6 11.5196 6.10536 11.7071 6.29289C11.8946 6.48043 12 6.73478 12 7V10C12 10.2652 11.8946 10.5196 11.7071 10.7071C11.5196 10.8946 11.2652 11 11 11H5C4.73478 11 4.48043 10.8946 4.29289 10.7071C4.10536 10.5196 4 10.2652 4 10V7Z" fill="#66ADFF"/>
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M2 14V4H14V14H2ZM11 12H5C4.46957 12 3.96086 11.7893 3.58579 11.4142C3.21071 11.0391 3 10.5304 3 10V7C3 6.46957 3.21071 5.96086 3.58579 5.58579C3.96086 5.21071 4.46957 5 5 5H11C11.5304 5 12.0391 5.21071 12.4142 5.58579C12.7893 5.96086 13 6.46957 13 7V10C13 10.5304 12.7893 11.0391 12.4142 11.4142C12.0391 11.7893 11.5304 12 11 12Z" fill="white"/>
<path opacity="0.6" d="M14 3H10.707L12.854 0.853996L12.146 0.145996L9.293 3H6.707L3.854 0.145996L3.146 0.853996L5.293 3H2C1.73478 3 1.48043 3.10535 1.29289 3.29289C1.10536 3.48043 1 3.73478 1 4V14C1 14.2652 1.10536 14.5196 1.29289 14.7071C1.48043 14.8946 1.73478 15 2 15H3C3 15.2652 3.10536 15.5196 3.29289 15.7071C3.48043 15.8946 3.73478 16 4 16C4.26522 16 4.51957 15.8946 4.70711 15.7071C4.89464 15.5196 5 15.2652 5 15H11C11 15.2652 11.1054 15.5196 11.2929 15.7071C11.4804 15.8946 11.7348 16 12 16C12.2652 16 12.5196 15.8946 12.7071 15.7071C12.8946 15.5196 13 15.2652 13 15H14C14.2652 15 14.5196 14.8946 14.7071 14.7071C14.8946 14.5196 15 14.2652 15 14V4C15 3.73478 14.8946 3.48043 14.7071 3.29289C14.5196 3.10535 14.2652 3 14 3ZM14 14H2V4H14V14Z" fill="white"/>
<path opacity="0.17" d="M4.29289 6.29289C4.10536 6.48043 4 6.73478 4 7V10C4 10.2652 4.10536 10.5196 4.29289 10.7071C4.48043 10.8946 4.73478 11 5 11H11C11.2652 11 11.5196 10.8946 11.7071 10.7071C11.8946 10.5196 12 10.2652 12 10V7C12 6.73478 11.8946 6.48043 11.7071 6.29289C11.5196 6.10536 11.2652 6 11 6H5C4.73478 6 4.48043 6.10536 4.29289 6.29289Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.85" d="M5 12H11C11.5304 12 12.0391 11.7893 12.4142 11.4142C12.7893 11.0391 13 10.5304 13 10V7C13 6.46957 12.7893 5.96086 12.4142 5.58579C12.0391 5.21071 11.5304 5 11 5H5C4.46957 5 3.96086 5.21071 3.58579 5.58579C3.21071 5.96086 3 6.46957 3 7V10C3 10.5304 3.21071 11.0391 3.58579 11.4142C3.96086 11.7893 4.46957 12 5 12ZM4 7C4 6.73478 4.10536 6.48043 4.29289 6.29289C4.48043 6.10536 4.73478 6 5 6H11C11.2652 6 11.5196 6.10536 11.7071 6.29289C11.8946 6.48043 12 6.73478 12 7V10C12 10.2652 11.8946 10.5196 11.7071 10.7071C11.5196 10.8946 11.2652 11 11 11H5C4.73478 11 4.48043 10.8946 4.29289 10.7071C4.10536 10.5196 4 10.2652 4 10V7Z" fill="#66ADFF"/>
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M2 14V4H14V14H2ZM11 12H5C4.46957 12 3.96086 11.7893 3.58579 11.4142C3.21071 11.0391 3 10.5304 3 10V7C3 6.46957 3.21071 5.96086 3.58579 5.58579C3.96086 5.21071 4.46957 5 5 5H11C11.5304 5 12.0391 5.21071 12.4142 5.58579C12.7893 5.96086 13 6.46957 13 7V10C13 10.5304 12.7893 11.0391 12.4142 11.4142C12.0391 11.7893 11.5304 12 11 12Z" fill="white"/>
<path opacity="0.6" d="M14 3H10.707L12.854 0.853996L12.146 0.145996L9.293 3H6.707L3.854 0.145996L3.146 0.853996L5.293 3H2C1.73478 3 1.48043 3.10535 1.29289 3.29289C1.10536 3.48043 1 3.73478 1 4V14C1 14.2652 1.10536 14.5196 1.29289 14.7071C1.48043 14.8946 1.73478 15 2 15H3C3 15.2652 3.10536 15.5196 3.29289 15.7071C3.48043 15.8946 3.73478 16 4 16C4.26522 16 4.51957 15.8946 4.70711 15.7071C4.89464 15.5196 5 15.2652 5 15H11C11 15.2652 11.1054 15.5196 11.2929 15.7071C11.4804 15.8946 11.7348 16 12 16C12.2652 16 12.5196 15.8946 12.7071 15.7071C12.8946 15.5196 13 15.2652 13 15H14C14.2652 15 14.5196 14.8946 14.7071 14.7071C14.8946 14.5196 15 14.2652 15 14V4C15 3.73478 14.8946 3.48043 14.7071 3.29289C14.5196 3.10535 14.2652 3 14 3ZM14 14H2V4H14V14Z" fill="white"/>
<path opacity="0.17" d="M4.29289 6.29289C4.10536 6.48043 4 6.73478 4 7V10C4 10.2652 4.10536 10.5196 4.29289 10.7071C4.48043 10.8946 4.73478 11 5 11H11C11.2652 11 11.5196 10.8946 11.7071 10.7071C11.8946 10.5196 12 10.2652 12 10V7C12 6.73478 11.8946 6.48043 11.7071 6.29289C11.5196 6.10536 11.2652 6 11 6H5C4.73478 6 4.48043 6.10536 4.29289 6.29289Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.9" d="M13 5.5H12V6.5H13V5.5Z" fill="#DB2C3A"/>
<path opacity="0.6" d="M6.5 6.5H10.5C10.6326 6.5 10.7598 6.44732 10.8536 6.35355C10.9473 6.25979 11 6.13261 11 6C11 5.86739 10.9473 5.74021 10.8536 5.64645C10.7598 5.55268 10.6326 5.5 10.5 5.5H6.5C6.36739 5.5 6.24021 5.55268 6.14645 5.64645C6.05268 5.74021 6 5.86739 6 6C6 6.13261 6.05268 6.25979 6.14645 6.35355C6.24021 6.44732 6.36739 6.5 6.5 6.5Z" fill="white"/>
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M5 4H14V12H5V4ZM6.5 6.5H10.5C10.6326 6.5 10.7598 6.44732 10.8536 6.35355C10.9473 6.25979 11 6.13261 11 6C11 5.86739 10.9473 5.74021 10.8536 5.64645C10.7598 5.55268 10.6326 5.5 10.5 5.5H6.5C6.36739 5.5 6.24021 5.55268 6.14645 5.64645C6.05268 5.74021 6 5.86739 6 6C6 6.13261 6.05268 6.25979 6.14645 6.35355C6.24021 6.44732 6.36739 6.5 6.5 6.5ZM13 5.5H12V6.5H13V5.5Z" fill="white"/>
<path opacity="0.6" d="M15 5.5V4C15 3.73478 14.8946 3.48043 14.7071 3.29289C14.5196 3.10536 14.2652 3 14 3H5C4.73478 3 4.48043 3.10536 4.29289 3.29289C4.10536 3.48043 4 3.73478 4 4V5.886L0.958 4.13C0.829705 4.05039 0.682882 4.00559 0.532 4C0.217 4 0 4.251 0 4.683V11.317C0 11.749 0.217 12 0.532 12C0.682882 11.9944 0.829705 11.9496 0.958 11.87L4 10.114V12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H14C14.2652 13 14.5196 12.8946 14.7071 12.7071C14.8946 12.5196 15 12.2652 15 12V8.5C15.2652 8.5 15.5196 8.39464 15.7071 8.20711C15.8946 8.01957 16 7.76522 16 7.5V6.5C16 6.23478 15.8946 5.98043 15.7071 5.79289C15.5196 5.60536 15.2652 5.5 15 5.5ZM4 8.959L1 10.69V5.309L4 7.042V8.959ZM14 12H5V4H14V12Z" fill="white"/>
<path opacity="0.24" d="M1 10.6901L4 8.95908V7.04208L1 5.30908V10.6901Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.9" d="M13 5.5H12V6.5H13V5.5Z" fill="#DB2C3A"/>
<path opacity="0.6" d="M6.5 6.5H10.5C10.6326 6.5 10.7598 6.44732 10.8536 6.35355C10.9473 6.25979 11 6.13261 11 6C11 5.86739 10.9473 5.74021 10.8536 5.64645C10.7598 5.55268 10.6326 5.5 10.5 5.5H6.5C6.36739 5.5 6.24021 5.55268 6.14645 5.64645C6.05268 5.74021 6 5.86739 6 6C6 6.13261 6.05268 6.25979 6.14645 6.35355C6.24021 6.44732 6.36739 6.5 6.5 6.5Z" fill="white"/>
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M5 4H14V12H5V4ZM6.5 6.5H10.5C10.6326 6.5 10.7598 6.44732 10.8536 6.35355C10.9473 6.25979 11 6.13261 11 6C11 5.86739 10.9473 5.74021 10.8536 5.64645C10.7598 5.55268 10.6326 5.5 10.5 5.5H6.5C6.36739 5.5 6.24021 5.55268 6.14645 5.64645C6.05268 5.74021 6 5.86739 6 6C6 6.13261 6.05268 6.25979 6.14645 6.35355C6.24021 6.44732 6.36739 6.5 6.5 6.5ZM13 5.5H12V6.5H13V5.5Z" fill="white"/>
<path opacity="0.6" d="M15 5.5V4C15 3.73478 14.8946 3.48043 14.7071 3.29289C14.5196 3.10536 14.2652 3 14 3H5C4.73478 3 4.48043 3.10536 4.29289 3.29289C4.10536 3.48043 4 3.73478 4 4V5.886L0.958 4.13C0.829705 4.05039 0.682882 4.00559 0.532 4C0.217 4 0 4.251 0 4.683V11.317C0 11.749 0.217 12 0.532 12C0.682882 11.9944 0.829705 11.9496 0.958 11.87L4 10.114V12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H14C14.2652 13 14.5196 12.8946 14.7071 12.7071C14.8946 12.5196 15 12.2652 15 12V8.5C15.2652 8.5 15.5196 8.39464 15.7071 8.20711C15.8946 8.01957 16 7.76522 16 7.5V6.5C16 6.23478 15.8946 5.98043 15.7071 5.79289C15.5196 5.60536 15.2652 5.5 15 5.5ZM4 8.959L1 10.69V5.309L4 7.042V8.959ZM14 12H5V4H14V12Z" fill="white"/>
<path opacity="0.24" d="M1 10.6901L4 8.95908V7.04208L1 5.30908V10.6901Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13 10V12H3V10H13ZM14 9H2V13H14V9Z" fill="#4072E5"/>
<path opacity="0.4" d="M13 12V10H3V12H13Z" fill="#4072E5"/>
<path opacity="0.6" d="M15 1H1C0.734784 1 0.48043 1.10536 0.292893 1.29289C0.105357 1.48043 0 1.73478 0 2L0 15H16V2C16 1.73478 15.8946 1.48043 15.7071 1.29289C15.5196 1.10536 15.2652 1 15 1ZM15 14H1V6H15V14ZM15 5H1V2H15V5Z" fill="white"/>
<path opacity="0.85" d="M3 3H2V4H3V3Z" fill="#E24940"/>
<path opacity="0.85" d="M5 3H4V4H5V3Z" fill="#E0A32A"/>
<path opacity="0.85" d="M7 3H6V4H7V3Z" fill="#28AD31"/>
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M1 2H15V5H1V2ZM2 3H3V4H2V3ZM4 3H5V4H4V3ZM7 3H6V4H7V3Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 766 B

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13 10V12H3V10H13ZM14 9H2V13H14V9Z" fill="#4072E5"/>
<path opacity="0.4" d="M13 12V10H3V12H13Z" fill="#4072E5"/>
<path opacity="0.6" d="M15 1H1C0.734784 1 0.48043 1.10536 0.292893 1.29289C0.105357 1.48043 0 1.73478 0 2L0 15H16V2C16 1.73478 15.8946 1.48043 15.7071 1.29289C15.5196 1.10536 15.2652 1 15 1ZM15 14H1V6H15V14ZM15 5H1V2H15V5Z" fill="white"/>
<path opacity="0.85" d="M3 3H2V4H3V3Z" fill="#E24940"/>
<path opacity="0.85" d="M5 3H4V4H5V3Z" fill="#E0A32A"/>
<path opacity="0.85" d="M7 3H6V4H7V3Z" fill="#28AD31"/>
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M1 2H15V5H1V2ZM2 3H3V4H2V3ZM4 3H5V4H4V3ZM7 3H6V4H7V3Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 766 B

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M15 1H1V15H15V1Z" fill="white"/>
<path opacity="0.2" d="M14 2V14H2V2H14ZM15 1H1V15H15V1Z" fill="black"/>
<path d="M14 2H2V14H14V2Z" fill="white"/>
<path opacity="0.4" d="M13 3H3V13H13V3Z" fill="#66ADFF"/>
<path d="M3 13L6 8L8.5 11.5L10.5 10L13 13H3Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 394 B

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M15 1H1V15H15V1Z" fill="white"/>
<path opacity="0.2" d="M14 2V14H2V2H14ZM15 1H1V15H15V1Z" fill="black"/>
<path d="M14 2H2V14H14V2Z" fill="white"/>
<path opacity="0.4" d="M13 3H3V13H13V3Z" fill="#66ADFF"/>
<path d="M3 13L6 8L8.5 11.5L10.5 10L13 13H3Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 394 B

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M14 2H15C15.2652 2 15.5196 2.10536 15.7071 2.29289C15.8946 2.48043 16 2.73478 16 3V15C16 15.2652 15.8946 15.5196 15.7071 15.7071C15.5196 15.8946 15.2652 16 15 16H5C4.73481 15.9999 4.48049 15.8945 4.293 15.707L2.293 13.707C2.10545 13.5195 2.00006 13.2652 2 13V1C2 0.734784 2.10536 0.48043 2.29289 0.292893C2.48043 0.105357 2.73478 0 3 0H13C13.2652 0 13.5196 0.105357 13.7071 0.292893C13.8946 0.48043 14 0.734784 14 1V2Z" fill="white"/>
<path d="M14 2V13C14 13.5523 13.5523 14 13 14H4L5 15H15V3L14 2Z" fill="#EBEBEB"/>
<path opacity="0.2" d="M15 2H14L15 3V15H5L4 14H13C13.2652 14 13.5196 13.8946 13.7071 13.7071C13.8946 13.5196 14 13.2652 14 13V1C14 0.734784 13.8946 0.48043 13.7071 0.292893C13.5196 0.105357 13.2652 0 13 0L3 0C2.73478 0 2.48043 0.105357 2.29289 0.292893C2.10536 0.48043 2 0.734784 2 1V13C2.00006 13.2652 2.10545 13.5195 2.293 13.707L4.293 15.707C4.48049 15.8945 4.73481 15.9999 5 16H15C15.2652 16 15.5196 15.8946 15.7071 15.7071C15.8946 15.5196 16 15.2652 16 15V3C16 2.73478 15.8946 2.48043 15.7071 2.29289C15.5196 2.10536 15.2652 2 15 2ZM5 1H13V13H5V1ZM3 1H4V13H3V1Z" fill="black"/>
<path d="M13 1H5V13H13V1Z" fill="white"/>
<path d="M4 1H3V13H4V1Z" fill="white"/>
<path d="M8 4H1V6H8V4Z" fill="#B0E5C3"/>
<path d="M8 4V6H1V4H8ZM9 3H0V7H9V3Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M14 2H15C15.2652 2 15.5196 2.10536 15.7071 2.29289C15.8946 2.48043 16 2.73478 16 3V15C16 15.2652 15.8946 15.5196 15.7071 15.7071C15.5196 15.8946 15.2652 16 15 16H5C4.73481 15.9999 4.48049 15.8945 4.293 15.707L2.293 13.707C2.10545 13.5195 2.00006 13.2652 2 13V1C2 0.734784 2.10536 0.48043 2.29289 0.292893C2.48043 0.105357 2.73478 0 3 0H13C13.2652 0 13.5196 0.105357 13.7071 0.292893C13.8946 0.48043 14 0.734784 14 1V2Z" fill="white"/>
<path d="M14 2V13C14 13.5523 13.5523 14 13 14H4L5 15H15V3L14 2Z" fill="#EBEBEB"/>
<path opacity="0.2" d="M15 2H14L15 3V15H5L4 14H13C13.2652 14 13.5196 13.8946 13.7071 13.7071C13.8946 13.5196 14 13.2652 14 13V1C14 0.734784 13.8946 0.48043 13.7071 0.292893C13.5196 0.105357 13.2652 0 13 0L3 0C2.73478 0 2.48043 0.105357 2.29289 0.292893C2.10536 0.48043 2 0.734784 2 1V13C2.00006 13.2652 2.10545 13.5195 2.293 13.707L4.293 15.707C4.48049 15.8945 4.73481 15.9999 5 16H15C15.2652 16 15.5196 15.8946 15.7071 15.7071C15.8946 15.5196 16 15.2652 16 15V3C16 2.73478 15.8946 2.48043 15.7071 2.29289C15.5196 2.10536 15.2652 2 15 2ZM5 1H13V13H5V1ZM3 1H4V13H3V1Z" fill="black"/>
<path d="M13 1H5V13H13V1Z" fill="white"/>
<path d="M4 1H3V13H4V1Z" fill="white"/>
<path d="M8 4H1V6H8V4Z" fill="#B0E5C3"/>
<path d="M8 4V6H1V4H8ZM9 3H0V7H9V3Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,7 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M13.5 11.5C12.3954 11.5 11.5 12.3954 11.5 13.5C11.5 12.3954 10.6046 11.5 9.5 11.5C8.39543 11.5 7.5 12.3954 7.5 13.5C7.5 13.6726 7.52188 13.8402 7.56301 14H6V15H2V0H9.707L15 5.293V10H14V11.563C13.8402 11.5219 13.6726 11.5 13.5 11.5Z" fill="white"/>
<path d="M13.5 11.5C12.3954 11.5 11.5 12.3954 11.5 13.5C11.5 12.3954 10.6046 11.5 9.5 11.5C8.39543 11.5 7.5 12.3954 7.5 13.5C7.5 13.6726 7.52188 13.8402 7.56301 14H3V1H9.293L14 5.707V11.563C13.8402 11.5219 13.6726 11.5 13.5 11.5Z" fill="white"/>
<path opacity="0.08" d="M10 1.70697V5H13.293L10 1.70697Z" fill="black"/>
<path opacity="0.2" d="M6 14H3V1H9V6H14V10H15V5.293L9.707 0H2V15H6V14ZM10 1.707L13.293 5H10V1.707Z" fill="black"/>
<path d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="#888888"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1,7 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5V10H14.5V4.793L9.707 0H1.5V15H6V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5V5.207L9.293 1H2.5V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path opacity="0.08" d="M10 1.70697V4.49997H12.793L10 1.70697Z" fill="black"/>
<path opacity="0.2" d="M6 14H2.5V1H9V5.5H13.5V10H14.5V4.793L9.707 0H1.5V15H6V14ZM10 1.707L12.793 4.5H10V1.707Z" fill="black"/>
<path d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="#888888"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,9 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5C13.669 11.5021 13.8371 11.5259 14 11.571V10H15V4.293L10.707 0H3V15H6V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5C13.669 11.5021 13.8371 11.5259 14 11.571V4.707L10.293 1H4V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path opacity="0.08" d="M11 1.70703V4H13.293L11 1.70703Z" fill="black"/>
<path opacity="0.2" d="M6 14H4V1H10V5H14V10H15V4.293L10.707 0H3V15H6V14ZM11 1.707L13.293 4H11V1.707Z" fill="black"/>
<path d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="#888888"/>
<path d="M7 4H1V6H7V4Z" fill="#F1ABB0"/>
<path d="M7 4V6H1V4H7ZM8 3H0V7H8V3Z" fill="#DB2C3A"/>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1,9 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5C13.669 11.5021 13.8371 11.5259 14 11.571V10H15V4.793L10.207 0H3V15H6V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5C13.669 11.5021 13.8371 11.5259 14 11.571V5.207L9.793 1H4V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path opacity="0.08" d="M10.5 1.70703V4.50003H13.293L10.5 1.70703Z" fill="black"/>
<path opacity="0.2" d="M6 14H4V1H9.5V5.5H14V10H15V4.793L10.207 0H3V15H6V14ZM10.5 1.707L13.293 4.5H10.5V1.707Z" fill="black"/>
<path d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="#888888"/>
<path d="M7 4H1V6H7V4Z" fill="#F1ABB0"/>
<path d="M7 4V6H1V4H7ZM8 3H0V7H8V3Z" fill="#DB2C3A"/>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M11.707 0H3V16H16V4.293L11.707 0Z" fill="white"/>
<path d="M11.293 1L15 4.707V15H4V1H11.293Z" fill="white"/>
<path opacity="0.2" d="M11.707 0H3V16H16V4.293L11.707 0ZM12 1.707L14.293 4H12V1.707ZM4 15V1H11V5H15V15H4Z" fill="black"/>
<path opacity="0.08" d="M12 1.70703V4H14.293L12 1.70703Z" fill="black"/>
<path d="M8 4H1V6H8V4Z" fill="#F1ABB0"/>
<path d="M8 4V6H1V4H8ZM9 3H0V7H9V3Z" fill="#DB2C3A"/>
</svg>

After

Width:  |  Height:  |  Size: 525 B

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