Merge pull request #2 from ful1e5/dev

BreezeX Cursor design + CI
This commit is contained in:
Kaiz Khatri
2021-06-13 15:30:39 +05:30
committed by GitHub
55 changed files with 1001 additions and 157 deletions
+2
View File
@@ -0,0 +1,2 @@
patreon: KaizKhatri
custom: https://www.paypal.me/kaizkhatri
+17
View File
@@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
+89
View File
@@ -0,0 +1,89 @@
name: build
on:
push:
paths-ignore:
- "**.md"
- "**.bbcode"
- LICENSE
branches: [main, dev]
pull_request:
paths-ignore:
- "**.md"
- "**.bbcode"
- LICENSE
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install build dependencies (apt)
run: sudo apt install -y libx11-dev libxcursor-dev libpng-dev
continue-on-error: false
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Caching yarn packages
uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Set Up NodeJS 12.x
uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Caching pip packages
uses: actions/cache@v2
id: pip-cache # use this to check for `cache-hit` (`steps.pip-cache.outputs.cache-hit != 'true'`)
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Generating `BreezeX` Cursor Theme
run: make
continue-on-error: false
- name: Compressing UNIX theme
run: |
tar -cvzf BreezeX-Dark.tar.gz themes/BreezeX-Dark
tar -cvzf BreezeX-Light.tar.gz themes/BreezeX-Light
- name: Uploading `bitmaps` artifact
uses: actions/upload-artifact@v2
with:
name: bitmaps
path: bitmaps/*
- name: Uploading `BreezeX-Dark` UNIX Theme artifact
uses: actions/upload-artifact@v2
with:
name: BreezeX-Dark
path: BreezeX-Dark.tar.gz
- name: Uploading `BreezeX-Light` UNIX Theme artifact
uses: actions/upload-artifact@v2
with:
name: BreezeX-Light
path: BreezeX-Light.tar.gz
- name: Uploading `BreezeX-Dark` Windows Theme artifact
uses: actions/upload-artifact@v2
with:
name: BreezeX-Dark-Windows
path: themes/BreezeX-Dark-Windows/*
- name: Uploading `BreezeX-Light` Windows Theme artifact
uses: actions/upload-artifact@v2
with:
name: BreezeX-Light-Windows
path: themes/BreezeX-Light-Windows/*
+6 -6
View File
@@ -5,22 +5,22 @@ interface Config {
color: Colors; color: Colors;
} }
const breeze = "#4D4D4D"; const breezeColor = "#4D4D4D";
const white = "#FFFFFF"; const whiteColor = "#FFFFFF";
const config: Config[] = [ const config: Config[] = [
{ {
themeName: "BreezeX-Dark", themeName: "BreezeX-Dark",
color: { color: {
base: breeze, base: breezeColor,
outline: white, outline: whiteColor,
}, },
}, },
{ {
themeName: "BreezeX-Light", themeName: "BreezeX-Light",
color: { color: {
base: white, base: whiteColor,
outline: breeze, outline: breezeColor,
}, },
}, },
]; ];
+1 -1
View File
@@ -27,7 +27,7 @@ const main = async () => {
console.log(" -> Saving", key, "..."); console.log(" -> Saving", key, "...");
content = SVGHandler.colorSvg(content, color); content = SVGHandler.colorSvg(content, color);
await png.generateAnimated(browser, content, key); await png.generateAnimated(browser, content, key, { playbackRate: 0.3 });
} }
await browser.close(); await browser.close();
+18 -18
View File
@@ -15,9 +15,9 @@
defer-to-connect "^1.0.1" defer-to-connect "^1.0.1"
"@types/node@*": "@types/node@*":
version "14.14.41" version "15.12.0"
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.41.tgz#d0b939d94c1d7bd53d04824af45f1139b8c45615" resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.0.tgz#6a459d261450a300e6865faeddb5af01c3389bb3"
integrity sha512-dueRKfaJL4RTtSa7bWeTK1M+VH+Gns73oCgzvYfHZywRCoPSd8EkXBL0mZ9unPTveBn+D9phZBaxuzpwjWkW0g== integrity sha512-+aHJvoCsVhO2ZCuT4o5JtcPrCPyDE3+1nvbDprYes+pPkEsbjH7AGUCNtjMOXS0fqH14t+B7yLzaqSz92FPWyw==
"@types/pixelmatch@^5.2.2": "@types/pixelmatch@^5.2.2":
version "5.2.3" version "5.2.3"
@@ -419,9 +419,9 @@ glob-parent@~5.1.0:
is-glob "^4.0.1" is-glob "^4.0.1"
glob@^7.1.3: glob@^7.1.3:
version "7.1.6" version "7.1.7"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
dependencies: dependencies:
fs.realpath "^1.0.0" fs.realpath "^1.0.0"
inflight "^1.0.4" inflight "^1.0.4"
@@ -723,9 +723,9 @@ normalize-path@^3.0.0, normalize-path@~3.0.0:
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
normalize-url@^4.1.0: normalize-url@^4.1.0:
version "4.5.0" version "4.5.1"
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a"
integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==
once@^1.3.0, once@^1.3.1, once@^1.4.0: once@^1.3.0, once@^1.3.1, once@^1.4.0:
version "1.4.0" version "1.4.0"
@@ -784,9 +784,9 @@ pend@~1.2.0:
integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA=
picomatch@^2.0.4, picomatch@^2.2.1: picomatch@^2.0.4, picomatch@^2.2.1:
version "2.2.3" version "2.3.0"
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg== integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
pixelmatch@^5.2.1: pixelmatch@^5.2.1:
version "5.2.1" version "5.2.1"
@@ -1092,9 +1092,9 @@ typedarray-to-buffer@^3.1.5:
is-typedarray "^1.0.0" is-typedarray "^1.0.0"
typescript@^4.1.3: typescript@^4.1.3:
version "4.2.4" version "4.3.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.4.tgz#8610b59747de028fda898a8aef0e103f156d0961" resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.2.tgz#399ab18aac45802d6f2498de5054fcbbe716a805"
integrity sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg== integrity sha512-zZ4hShnmnoVnAHpVHWpTcxdv7dWP60S2FsydQLV8V5PbS3FifjWFFRiHSWpDJahly88PRyV5teTSLoq4eG7mKw==
unbzip2-stream@^1.3.3: unbzip2-stream@^1.3.3:
version "1.4.3" version "1.4.3"
@@ -1172,9 +1172,9 @@ write-file-atomic@^3.0.0:
typedarray-to-buffer "^3.1.5" typedarray-to-buffer "^3.1.5"
ws@^7.2.3: ws@^7.2.3:
version "7.4.4" version "7.4.6"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.4.tgz#383bc9742cb202292c9077ceab6f6047b17f2d59" resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c"
integrity sha512-Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw== integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==
xdg-basedir@^4.0.0: xdg-basedir@^4.0.0:
version "4.0.0" version "4.0.0"
+3 -16
View File
@@ -4,8 +4,8 @@
import argparse import argparse
from pathlib import Path from pathlib import Path
from bxbuild.configure import get_config from bxbuild.configure import get_config # type: ignore
from bxbuild.generator import Info, build, wbuild, xbuild from bxbuild.generator import Info, build, wbuild, xbuild # type: ignore
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
prog="breezex_builder", prog="breezex_builder",
@@ -51,20 +51,7 @@ parser.add_argument(
dest="xsizes", dest="xsizes",
metavar="INT", metavar="INT",
nargs="+", nargs="+",
default=[ default=[22, 24, 28, 32, 40, 48, 56, 64, 72, 80, 88, 96],
22,
24,
28,
32,
40,
48,
56,
64,
72,
80,
88,
96,
],
type=int, type=int,
help="Set pixel-size for xcursor. (default: %(default)s)", help="Set pixel-size for xcursor. (default: %(default)s)",
) )
+41 -35
View File
@@ -19,47 +19,53 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = {
# Static # # Static #
########## ##########
"all-scroll.png": {"xhot": 100, "yhot": 100}, "all-scroll.png": {"xhot": 100, "yhot": 100},
"bottom_left_corner.png": {"xhot": 100, "yhot": 100}, "bd_double_arrow.png": {"xhot": 98, "yhot": 96},
"bottom_right_corner.png": {"xhot": 100, "yhot": 100}, "bottom_left_corner.png": {"xhot": 56, "yhot": 143},
"bottom_tee.png": {"xhot": 100, "yhot": 100}, "bottom_right_corner.png": {"xhot": 142, "yhot": 147},
"context-menu.png": {"xhot": 100, "yhot": 100}, "bottom_side.png": {"xhot": 100, "yhot": 148},
"copy.png": {"xhot": 100, "yhot": 100}, "center_ptr.png": {"xhot": 99, "yhot": 35},
"col-resize.png": {"xhot": 100, "yhot": 100},
"color-picker.png": {"xhot": 42, "yhot": 157},
"context-menu.png": {"xhot": 57, "yhot": 30},
"copy.png": {"xhot": 57, "yhot": 30},
"cross.png": {"xhot": 100, "yhot": 100}, "cross.png": {"xhot": 100, "yhot": 100},
"crossed_circle.png": {"xhot": 57, "yhot": 30},
"dnd_no_drop.png": {"xhot": 100, "yhot": 100}, "dnd_no_drop.png": {"xhot": 100, "yhot": 100},
"dotbox.png": {"xhot": 100, "yhot": 100}, "dotbox.png": {"xhot": 100, "yhot": 100},
"hand1.png": {"xhot": 100, "yhot": 100}, "fd_double_arrow.png": {"xhot": 98, "yhot": 96},
"hand2.png": {"xhot": 100, "yhot": 100}, "hand1.png": {"xhot": 107, "yhot": 35},
"left_ptr.png": {"xhot": 100, "yhot": 100}, "hand2.png": {"xhot": 90, "yhot": 35},
"left_tee.png": {"xhot": 100, "yhot": 100}, "left_ptr.png": {"xhot": 57, "yhot": 30},
"link.png": {"xhot": 100, "yhot": 100}, "left_side.png": {"xhot": 52, "yhot": 100},
"ll_angle.png": {"xhot": 100, "yhot": 100}, "link.png": {"xhot": 57, "yhot": 30},
"lr_angle.png": {"xhot": 100, "yhot": 100}, "move.png": {"xhot": 101, "yhot": 51},
"move.png": {"xhot": 100, "yhot": 100}, "pencil.png": {"xhot": 38, "yhot": 156},
"pencil.png": {"xhot": 100, "yhot": 100}, "pirate.png": {"xhot": 100, "yhot": 100},
"plus.png": {"xhot": 100, "yhot": 100}, "plus.png": {"xhot": 100, "yhot": 100},
"question_arrow.png": {"xhot": 100, "yhot": 100}, "question_arrow.png": {"xhot": 57, "yhot": 30},
"right_ptr.png": {"xhot": 100, "yhot": 100}, "right_ptr.png": {"xhot": 136, "yhot": 32},
"right_tee.png": {"xhot": 100, "yhot": 100}, "right_side.png": {"xhot": 147, "yhot": 100},
"sb_down_arrow.png": {"xhot": 100, "yhot": 100}, "row-resize.png": {"xhot": 100, "yhot": 100},
"sb_h_double_arrow.png": {"xhot": 100, "yhot": 100}, "sb_down_arrow.png": {"xhot": 100, "yhot": 160},
"sb_left_arrow.png": {"xhot": 100, "yhot": 100}, "sb_h_double_arrow.png": {"xhot": 98, "yhot": 96},
"sb_right_arrow.png": {"xhot": 100, "yhot": 100}, "sb_left_arrow.png": {"xhot": 38, "yhot": 100},
"sb_up_arrow.png": {"xhot": 100, "yhot": 100}, "sb_right_arrow.png": {"xhot": 162, "yhot": 100},
"sb_v_double_arrow.png": {"xhot": 100, "yhot": 100}, "sb_up_arrow.png": {"xhot": 100, "yhot": 38},
"top_tee.png": {"xhot": 100, "yhot": 100}, "sb_v_double_arrow.png": {"xhot": 98, "yhot": 96},
"ul_angle.png": {"xhot": 100, "yhot": 100}, "top_left_corner.png": {"xhot": 57, "yhot": 55},
"ur_angle.png": {"xhot": 100, "yhot": 100}, "top_right_corner.png": {"xhot": 142, "yhot": 55},
"top_side.png": {"xhot": 100, "yhot": 52},
"vertical-text.png": {"xhot": 100, "yhot": 100}, "vertical-text.png": {"xhot": 100, "yhot": 100},
"wayland-cursor.png": {"xhot": 100, "yhot": 100}, "wayland-cursor.png": {"xhot": 100, "yhot": 100},
"X_cursor.png": {"xhot": 100, "yhot": 100}, "X_cursor.png": {"xhot": 100, "yhot": 100},
"xterm.png": {"xhot": 100, "yhot": 89}, "xterm.png": {"xhot": 100, "yhot": 100},
"zoom-in.png": {"xhot": 100, "yhot": 100}, "zoom-in.png": {"xhot": 85, "yhot": 80},
"zoom-out.png": {"xhot": 100, "yhot": 100}, "zoom-out.png": {"xhot": 85, "yhot": 80},
############ ############
# Animated # # Animated #
############ ############
# Note: Animated cursors don't need an extension and frame numbers. # NOTE: Animated cursors don't need an extension and frame numbers.
"left_ptr_watch": {"xhot": 100, "yhot": 100}, "left_ptr_watch": {"xhot": 57, "yhot": 30},
"wait": {"xhot": 100, "yhot": 100}, "wait": {"xhot": 100, "yhot": 100},
} }
@@ -70,10 +76,10 @@ WIN_CURSORS_CFG: Dict[str, Dict[str, str]] = {
"right_ptr.png": {"to": "Alternate", "position": "top_right"}, "right_ptr.png": {"to": "Alternate", "position": "top_right"},
"cross.png": {"to": "Cross"}, "cross.png": {"to": "Cross"},
"left_ptr.png": {"to": "Default", "position": "top_left"}, "left_ptr.png": {"to": "Default", "position": "top_left"},
"bottom_right_corner.png": {"to": "Diagonal_1"}, "bd_double_arrow.png": {"to": "Diagonal_1"},
"bottom_left_corner.png": {"to": "Diagonal_2"}, "fd_double_arrow.png": {"to": "Diagonal_2"},
"pencil.png": {"to": "Handwriting"}, "pencil.png": {"to": "Handwriting"},
"question_arrow.png": {"to": "Help", "position.png": "top_left"}, "question_arrow.png": {"to": "Help", "position": "top_left"},
"sb_h_double_arrow.png": {"to": "Horizontal"}, "sb_h_double_arrow.png": {"to": "Horizontal"},
"xterm.png": {"to": "IBeam", "position": "top_left"}, "xterm.png": {"to": "IBeam", "position": "top_left"},
"hand2.png": {"to": "Link", "position": "top_left"}, "hand2.png": {"to": "Link", "position": "top_left"},
@@ -83,7 +89,7 @@ WIN_CURSORS_CFG: Dict[str, Dict[str, str]] = {
############ ############
# Animated # # Animated #
############ ############
# Note: Animated cursors don't need frame numbers. # NOTE: Animated cursors don't need frame numbers.
"left_ptr_watch": {"to": "Work", "position": "top_left"}, "left_ptr_watch": {"to": "Work", "position": "top_left"},
"wait": {"to": "Busy"}, "wait": {"to": "Busy"},
} }
+10 -10
View File
@@ -21,14 +21,14 @@ def xbuild(config: Dict[str, Dict[str, Any]], x_out_dir: Path, info: Info) -> No
"""Build `BreezeX` cursor theme for only `X11`(UNIX) platform. """Build `BreezeX` cursor theme for only `X11`(UNIX) platform.
:param config: `BreezeX` configuration. :param config: `BreezeX` configuration.
:type config: Dict :type config: ``Dict``
:param x_out_dir: Path to the output directory,\ :param x_out_dir: Path to the output directory,\
Where the `X11` cursor theme package will generate.\ Where the `X11` cursor theme package will generate.\
It also creates a directory if not exists. It also creates a directory if not exists.
:type x_out_dir: Path :type x_out_dir: ``pathlib.Path``
:param info: Content theme name & comment :param info: Content theme name & comment.
:type info: Info :type info: Info
""" """
@@ -47,14 +47,14 @@ def wbuild(config: Dict[str, Dict[str, Any]], win_out_dir: Path, info: Info) ->
"""Build `BreezeX` cursor theme for only `Windows` platforms. """Build `BreezeX` cursor theme for only `Windows` platforms.
:param config: `BreezeX` configuration. :param config: `BreezeX` configuration.
:type config: Dict :type config: ``Dict``
:param win_out_dir: Path to the output directory,\ :param win_out_dir: Path to the output directory,\
Where the `Windows` cursor theme package will generate.\ Where the `Windows` cursor theme package will generate.\
It also creates a directory if not exists. It also creates a directory if not exists.
:type win_out_dir: Path :type win_out_dir: ``pathlib.Path``
:param info: Content theme name & comment :param info: Content theme name & comment.
:type info: Info :type info: Info
""" """
@@ -82,19 +82,19 @@ def build(
"""Build `BreezeX` cursor theme for `X11` & `Windows` platforms. """Build `BreezeX` cursor theme for `X11` & `Windows` platforms.
:param config: `BreezeX` configuration. :param config: `BreezeX` configuration.
:type config: Dict :type config: ``Dict``
:param x_out_dir: Path to the output directory,\ :param x_out_dir: Path to the output directory,\
Where the `X11` cursor theme package will generate.\ Where the `X11` cursor theme package will generate.\
It also creates a directory if not exists. It also creates a directory if not exists.
:type x_out_dir: Path :type x_out_dir: ``pathlib.Path``
:param win_out_dir: Path to the output directory,\ :param win_out_dir: Path to the output directory,\
Where the `Windows` cursor theme package will generate.\ Where the `Windows` cursor theme package will generate.\
It also creates a directory if not exists. It also creates a directory if not exists.
:type win_out_dir: Path :type win_out_dir: ``pathlib.Path``
:param info: Content theme name & comment :param info: Content theme name & comment.
:type info: Info :type info: Info
""" """
+40 -37
View File
@@ -11,33 +11,25 @@ def add_missing_xcursor(directory) -> None:
"""Add missing `XCursor` to the Unix cursor package. """Add missing `XCursor` to the Unix cursor package.
:param directory: directory where XCursors are available. :param directory: directory where XCursors are available.
:type directory: Union[str, Path] :type directory: ``str`` or ``pathlib.Path``
""" """
symlinks: List[Dict[str, Union[str, List[str]]]] = [ symlinks: List[Dict[str, Union[str, List[str]]]] = [
{"src": "all-scroll", "links": ["fleur", "size_all"]}, {"src": "all-scroll", "links": ["fleur", "size_all"]},
{ {
"src": "bottom_left_corner", "src": "bd_double_arrow",
"links": [ "links": [
"fcf1c3c7cd4491d801f1e1c78f100000", "c7088f0f3e6c8088236ef8e1e3e70000",
"sw-resize", "nw-resize",
"ne-resize", "nwse-resize",
"size_bdiag", "size_fdiag",
"nesw-resize", "se-resize",
"top_right_corner",
"fd_double_arrow",
], ],
}, },
{ {
"src": "bottom_right_corner", "src": "col-resize",
"links": [ "links": [
"c7088f0f3e6c8088236ef8e1e3e70000", "split_h",
"top_left_corner",
"se-resize",
"nw-resize",
"size_fdiag",
"nwse-resize",
"bd_double_arrow",
], ],
}, },
{ {
@@ -55,23 +47,36 @@ def add_missing_xcursor(directory) -> None:
"cross_reverse", "cross_reverse",
"diamond_cross", "diamond_cross",
"tcross", "tcross",
"color-picker",
"crosshair", "crosshair",
], ],
}, },
{
"src": "crossed_circle",
"links": [
"forbidden",
"not-allowed",
],
},
{ {
"src": "dnd_no_drop", "src": "dnd_no_drop",
"links": [ "links": [
"no-drop",
# crossed_circle symlinks
"crossed_circle",
"03b6e0fcb3499374a867c041f52298f0", "03b6e0fcb3499374a867c041f52298f0",
"not-allowed",
"forbidden",
"circle", "circle",
"dnd-no-drop",
"no-drop",
], ],
}, },
{"src": "dotbox", "links": ["dot_box_mask", "draped_box", "icon", "target"]}, {"src": "dotbox", "links": ["dot_box_mask", "draped_box", "icon", "target"]},
{
"src": "fd_double_arrow",
"links": [
"fcf1c3c7cd4491d801f1e1c78f100000",
"ne-resize",
"nesw-resize",
"sw-resize",
"size_bdiag",
],
},
{"src": "hand1", "links": ["grab", "openhand"]}, {"src": "hand1", "links": ["grab", "openhand"]},
{ {
"src": "hand2", "src": "hand2",
@@ -87,7 +92,6 @@ def add_missing_xcursor(directory) -> None:
"links": [ "links": [
"arrow", "arrow",
"default", "default",
"center_ptr",
], ],
}, },
{ {
@@ -99,6 +103,7 @@ def add_missing_xcursor(directory) -> None:
"progress", "progress",
], ],
}, },
{"src": "left_side", "links": []},
{ {
"src": "link", "src": "link",
"links": [ "links": [
@@ -135,23 +140,25 @@ def add_missing_xcursor(directory) -> None:
"dnd-ask", "dnd-ask",
], ],
}, },
{"src": "right_ptr", "links": ["draft_large", "draft_small"]}, # required {"src": "right_ptr", "links": ["draft_large", "draft_small"]},
{
"src": "row-resize",
"links": [
"split_v",
],
},
{"src": "sb_down_arrow", "links": ["down-arrow"]}, {"src": "sb_down_arrow", "links": ["down-arrow"]},
{ {
"src": "sb_h_double_arrow", "src": "sb_h_double_arrow",
"links": [ "links": [
"028006030e0e7ebffc7f7070c0600140", "028006030e0e7ebffc7f7070c0600140",
"14fef782d02440884392942c1120523", "14fef782d02440884392942c1120523",
"col-resize", "e-resize",
"ew-resize", "ew-resize",
"h_double_arrow", "h_double_arrow",
"size-hor", "size-hor",
"size_hor", "size_hor",
"split_h",
"left_side",
"w-resize", "w-resize",
"right_side",
"e-resize",
], ],
}, },
{"src": "sb_left_arrow", "links": ["left-arrow"]}, {"src": "sb_left_arrow", "links": ["left-arrow"]},
@@ -163,20 +170,16 @@ def add_missing_xcursor(directory) -> None:
"00008160000006810000408080010102", "00008160000006810000408080010102",
"2870a09082c103050810ffdffffe0204", "2870a09082c103050810ffdffffe0204",
"double_arrow", "double_arrow",
"n-resize",
"ns-resize", "ns-resize",
"row-resize",
"size-ver", "size-ver",
"size_ver", "size_ver",
"split_v",
"v_double_arrow",
"top_side",
"s-resize", "s-resize",
"n-resize", "v_double_arrow",
"bottom_side",
], ],
}, },
{"src": "wait", "links": ["watch"]}, {"src": "wait", "links": ["watch"]},
{"src": "X_cursor", "links": ["pirate", "x-cursor"]}, {"src": "X_cursor", "links": ["x-cursor"]},
{"src": "xterm", "links": ["ibeam", "text"]}, {"src": "xterm", "links": ["ibeam", "text"]},
] ]
+50
View File
@@ -0,0 +1,50 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M57.4357 30.6757L57.3084 139.5C57.3065 141.145 58.622 142.494 60.2652 142.579C67.1894 142.936 84.704 144.456 95.9356 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.65 106.757 139.535 104.89 138.326 103.789L57.854 30.4912C57.6936 30.3451 57.436 30.4587 57.4357 30.6757Z" fill="#0000FF"/>
<path d="M53.4357 30.671V30.6711L53.3084 139.495C53.3039 143.333 56.3505 146.382 60.0591 146.573C63.4195 146.747 69.343 147.203 75.7615 148.383C82.2406 149.575 88.9154 151.452 93.9584 154.319C95.8016 155.367 97.242 156.454 98.5664 157.514C98.7898 157.692 99.0212 157.88 99.2593 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.735 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5476 27.534L60.5476 27.534C57.8202 25.0498 53.44 26.9819 53.4357 30.671Z" stroke="#0000FF" stroke-width="8"/>
</g>
<path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#00FF00"/>
<g filter="url(#filter1_d)">
<rect x="77" y="28" width="96" height="96" rx="30" fill="#0000FF"/>
</g>
<g transform="translate(85.5,36)">
<g transform="scale(0.8)">
<g>
<animateTransform attributeName="transform" type="rotate" repeatCount="1" values="0 50 50;360 50 50" keyTimes="0;1" dur="2s" keySplines="0.5 0.5 0.5 0.5" calcMode="spline"/>
<path fill="#923db3" d="M51.8,9.9c-8.2-6.6-20.5-4.3-26,4.5c1.9-0.3,3.8-0.4,5.7-0.1c9.9-5.7,22.9-0.9,26.9,9.8 C58.5,18.7,56.1,13.4,51.8,9.9z"/>
<path fill="#f5468e" d="M44.1,23c-4-6.9-12.3-10.3-20-8.1c-7.4,2-12.6,8.8-12.8,16.5c1.5-1.2,3.1-2.2,4.9-2.9 c5.7-9.8,19.4-12.2,28.1-5C44.3,23.3,44.2,23.1,44.1,23z"/>
<path fill="#ff803f" d="M31.4,29.5c-6.8-3.9-15.6-2.8-21.1,2.7c-5.6,5.4-6.8,14.1-3.1,20.9c0.7-1.8,1.6-3.5,2.8-5 c0-11.4,10.7-20.3,21.9-18.4C31.7,29.7,31.5,29.6,31.4,29.5z"/>
<path fill="#c6d63c" d="M12.1,57c0.8-7.1,5.6-13,12.1-15.4c-8.1-0.2-15.4,5.2-17.5,13c-2,7.5,1.2,15.5,7.8,19.6 c-0.3-1.9-0.4-3.8-0.1-5.7C12.4,65,11.6,61,12.1,57z"/>
<path fill="#923db3" d="M28.4,83.8c-9.8-5.7-12.2-19.4-5-28.1c-7.1,3.8-10.7,12.2-8.6,20c2,7.5,8.8,12.8,16.5,13 C30.1,87.2,29.1,85.6,28.4,83.8z"/>
<path fill="#f5468e" d="M48.2,90.1c-11.4,0-20.3-10.7-18.4-21.9c-4.2,6.8-3.2,15.6,2.3,21.4c5.4,5.7,14.2,7,21.1,3.3 C51.4,92.2,49.7,91.2,48.2,90.1z"/>
<path fill="#ff803f" d="M68.5,85.6c-9.9,5.7-22.9,0.9-26.9-9.8c-0.2,8.1,5.2,15.4,13,17.5c7.5,2,15.5-1.2,19.6-7.8 C72.3,85.8,70.4,85.9,68.5,85.6z"/>
<path fill="#c6d63c" d="M83.8,71.6c-5.7,9.8-19.4,12.2-28.1,5c3.8,7.1,12.2,10.7,20,8.6c7.5-2,12.8-8.8,13-16.5 C87.2,69.9,85.6,70.9,83.8,71.6z"/>
<path fill="#923db3" d="M92.9,46.8c-0.7,1.8-1.6,3.5-2.8,5c0,11.4-10.7,20.3-21.9,18.4c6.8,4.2,15.6,3.2,21.4-2.3 C95.3,62.5,96.6,53.7,92.9,46.8z"/>
<path fill="#f5468e" d="M85.5,25.8c0.3,1.9,0.4,3.8,0.1,5.7c5.7,9.9,0.9,22.9-9.8,26.9c8.1,0.2,15.4-5.2,17.5-13 C95.3,37.9,92.1,29.8,85.5,25.8z"/>
<path fill="#ff803f" d="M71.6,16.2C67.8,6.4,56,2.2,46.8,7.1c1.8,0.7,3.5,1.6,5,2.8c11.4,0,20.3,10.7,18.4,21.9 C73.1,27.1,73.6,21.3,71.6,16.2z"/>
<path fill="#c6d63c" d="M85.5,25.8c-1.4-8.2-8.6-14.3-16.9-14.5c1.2,1.5,2.2,3.1,2.9,4.9c9.8,5.7,12.2,19.4,5,28.1 C83.2,40.7,86.8,33.2,85.5,25.8z"/>
</g>
</g>
</g>
<defs>
<filter id="filter0_d" x="45.3084" y="22.4099" width="106.011" height="154.027" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter1_d" x="73" y="28" width="104" height="106" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

+38
View File
@@ -0,0 +1,38 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<rect x="11" y="11" width="178" height="178" rx="50" fill="#0000FF"/>
</g>
<g transform="translate(100,100)">
<g transform="scale(1.5)">
<g transform="translate(-50,-50)">
<g>
<animateTransform attributeName="transform" type="rotate" repeatCount="1" values="0 50 50;360 50 50" keyTimes="0;1" dur="2s" keySplines="0.5 0.5 0.5 0.5" calcMode="spline"/>
<path fill="#923db3" d="M51.8,9.9c-8.2-6.6-20.5-4.3-26,4.5c1.9-0.3,3.8-0.4,5.7-0.1c9.9-5.7,22.9-0.9,26.9,9.8 C58.5,18.7,56.1,13.4,51.8,9.9z"/>
<path fill="#f5468e" d="M44.1,23c-4-6.9-12.3-10.3-20-8.1c-7.4,2-12.6,8.8-12.8,16.5c1.5-1.2,3.1-2.2,4.9-2.9 c5.7-9.8,19.4-12.2,28.1-5C44.3,23.3,44.2,23.1,44.1,23z"/>
<path fill="#ff803f" d="M31.4,29.5c-6.8-3.9-15.6-2.8-21.1,2.7c-5.6,5.4-6.8,14.1-3.1,20.9c0.7-1.8,1.6-3.5,2.8-5 c0-11.4,10.7-20.3,21.9-18.4C31.7,29.7,31.5,29.6,31.4,29.5z"/>
<path fill="#c6d63c" d="M12.1,57c0.8-7.1,5.6-13,12.1-15.4c-8.1-0.2-15.4,5.2-17.5,13c-2,7.5,1.2,15.5,7.8,19.6 c-0.3-1.9-0.4-3.8-0.1-5.7C12.4,65,11.6,61,12.1,57z"/>
<path fill="#923db3" d="M28.4,83.8c-9.8-5.7-12.2-19.4-5-28.1c-7.1,3.8-10.7,12.2-8.6,20c2,7.5,8.8,12.8,16.5,13 C30.1,87.2,29.1,85.6,28.4,83.8z"/>
<path fill="#f5468e" d="M48.2,90.1c-11.4,0-20.3-10.7-18.4-21.9c-4.2,6.8-3.2,15.6,2.3,21.4c5.4,5.7,14.2,7,21.1,3.3 C51.4,92.2,49.7,91.2,48.2,90.1z"/>
<path fill="#ff803f" d="M68.5,85.6c-9.9,5.7-22.9,0.9-26.9-9.8c-0.2,8.1,5.2,15.4,13,17.5c7.5,2,15.5-1.2,19.6-7.8 C72.3,85.8,70.4,85.9,68.5,85.6z"/>
<path fill="#c6d63c" d="M83.8,71.6c-5.7,9.8-19.4,12.2-28.1,5c3.8,7.1,12.2,10.7,20,8.6c7.5-2,12.8-8.8,13-16.5 C87.2,69.9,85.6,70.9,83.8,71.6z"/>
<path fill="#923db3" d="M92.9,46.8c-0.7,1.8-1.6,3.5-2.8,5c0,11.4-10.7,20.3-21.9,18.4c6.8,4.2,15.6,3.2,21.4-2.3 C95.3,62.5,96.6,53.7,92.9,46.8z"/>
<path fill="#f5468e" d="M85.5,25.8c0.3,1.9,0.4,3.8,0.1,5.7c5.7,9.9,0.9,22.9-9.8,26.9c8.1,0.2,15.4-5.2,17.5-13 C95.3,37.9,92.1,29.8,85.5,25.8z"/>
<path fill="#ff803f" d="M71.6,16.2C67.8,6.4,56,2.2,46.8,7.1c1.8,0.7,3.5,1.6,5,2.8c11.4,0,20.3,10.7,18.4,21.9 C73.1,27.1,73.6,21.3,71.6,16.2z"/>
<path fill="#c6d63c" d="M85.5,25.8c-1.4-8.2-8.6-14.3-16.9-14.5c1.2,1.5,2.2,3.1,2.9,4.9c9.8,5.7,12.2,19.4,5,28.1 C83.2,40.7,86.8,33.2,85.5,25.8z"/>
</g>
</g>
</g>
</g>
<defs>
<filter id="filter0_d" x="7" y="11" width="186" height="188" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

+24
View File
@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<rect x="20" y="20" width="160" height="160" rx="50" fill="url(#paint0_linear)"/>
</g>
<path d="M97.3333 66.0007L97.167 66.167C96.0921 66.2262 95.05 66.375 94.0003 66.5003L101.5 77.6669C102.836 74.2349 106.33 72.2322 110.334 72.3336C111.216 72.3549 112.085 72.6125 113 72.8333C113.111 72.8599 113.223 72.8013 113.334 72.8333C114.547 73.1901 115.693 73.6951 116.834 74.1666L119.5 70C113.722 67.4069 107.097 66 100 66C99.171 66 98.3171 66.1272 97.5003 66.1667L97.3333 66.0007ZM123.667 72.3339L121.167 76.3339C129.279 81.1751 134.667 89.0527 134.667 98.0003C134.667 112.728 120.34 124.667 102.667 124.667C84.9935 124.667 70.6667 112.728 70.6667 98.0003C70.6667 91.671 73.3878 85.9062 77.8333 81.3338L73.1667 74.3339C65.0789 80.1611 60 88.585 60 98.0003C60 115.673 77.9086 130 100 130C122.091 130 140 115.673 140 98.0003C140 87.4291 133.544 78.1606 123.667 72.3339Z" fill="white"/>
<path d="M140 136H118.5L97 104L129.25 56H134.625L110.438 93.3333L140 136Z" fill="white"/>
<path d="M60 56H81L102 88L70.5 136H65.25L88.875 98.6667L60 56Z" fill="white"/>
<defs>
<filter id="filter0_d" x="16" y="20" width="168" height="170" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<linearGradient id="paint0_linear" x1="100" y1="20" x2="100" y2="180" gradientUnits="userSpaceOnUse">
<stop stop-color="#F7A61F"/>
<stop offset="1" stop-color="#EF6501"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

+14 -14
View File
@@ -1,21 +1,21 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d)">
<path d="M120.282 99.5C120.282 110.978 110.978 120.282 99.5 120.282C88.0222 120.282 78.7177 110.978 78.7177 99.5C78.7177 88.0223 88.0222 78.7178 99.5 78.7178C110.978 78.7178 120.282 88.0223 120.282 99.5Z" fill="white"/> <path d="M120.282 99.5C120.282 110.978 110.978 120.282 99.4999 120.282C88.0222 120.282 78.7177 110.978 78.7177 99.5C78.7177 88.0223 88.0222 78.7178 99.4999 78.7178C110.978 78.7178 120.282 88.0223 120.282 99.5Z" fill="#0000FF"/>
<path d="M94.4038 23.0608C96.5756 18.9797 102.424 18.9797 104.596 23.0608L123.467 58.5204C124.891 61.1981 123.992 64.5108 121.308 65.9235C115.869 68.7863 106.724 72.9449 99.5 72.9449C92.2761 72.9449 83.1314 68.7863 77.692 65.9235C75.0078 64.5108 74.1084 61.1981 75.5334 58.5204L94.4038 23.0608Z" fill="white"/> <path d="M94.4038 23.0608C96.5756 18.9797 102.424 18.9797 104.596 23.0608L123.467 58.5204C124.891 61.1981 123.992 64.5108 121.308 65.9235C115.869 68.7863 106.724 72.9449 99.5 72.9449C92.2761 72.9449 83.1314 68.7863 77.692 65.9235C75.0078 64.5108 74.1084 61.1981 75.5334 58.5204L94.4038 23.0608Z" fill="#0000FF"/>
<path d="M23.0608 104.538C18.9797 102.366 18.9797 96.5176 23.0608 94.3457L58.5204 75.4753C61.1981 74.0504 64.5108 74.9497 65.9235 77.6339C68.7863 83.0733 72.9449 92.2181 72.9449 99.4419C72.9449 106.666 68.7863 115.811 65.9235 121.25C64.5108 123.934 61.1981 124.833 58.5204 123.408L23.0608 104.538Z" fill="white"/> <path d="M23.0608 104.538C18.9797 102.366 18.9797 96.5176 23.0608 94.3457L58.5204 75.4753C61.1981 74.0504 64.5108 74.9497 65.9235 77.6339C68.7863 83.0733 72.9449 92.2181 72.9449 99.4419C72.9449 106.666 68.7863 115.811 65.9235 121.25C64.5108 123.934 61.1981 124.833 58.5204 123.408L23.0608 104.538Z" fill="#0000FF"/>
<path d="M104.538 175.939C102.366 180.02 96.5175 180.02 94.3457 175.939L75.4753 140.48C74.0503 137.802 74.9496 134.489 77.6338 133.077C83.0732 130.214 92.218 126.055 99.4418 126.055C106.666 126.055 115.81 130.214 121.25 133.077C123.934 134.489 124.833 137.802 123.408 140.48L104.538 175.939Z" fill="white"/> <path d="M104.538 175.939C102.366 180.02 96.5175 180.02 94.3457 175.939L75.4753 140.48C74.0503 137.802 74.9496 134.489 77.6338 133.077C83.0732 130.214 92.218 126.055 99.4418 126.055C106.666 126.055 115.81 130.214 121.25 133.077C123.934 134.489 124.833 137.802 123.408 140.48L104.538 175.939Z" fill="#0000FF"/>
<path d="M175.939 104.538C180.02 102.366 180.02 96.5176 175.939 94.3457L140.48 75.4753C137.802 74.0504 134.489 74.9497 133.077 77.6339C130.214 83.0733 126.055 92.2181 126.055 99.4419C126.055 106.666 130.214 115.811 133.077 121.25C134.489 123.934 137.802 124.833 140.48 123.408L175.939 104.538Z" fill="white"/> <path d="M175.939 104.538C180.02 102.366 180.02 96.5176 175.939 94.3457L140.48 75.4753C137.802 74.0504 134.489 74.9497 133.077 77.6339C130.214 83.0733 126.055 92.2181 126.055 99.4419C126.055 106.666 130.214 115.811 133.077 121.25C134.489 123.934 137.802 124.833 140.48 123.408L175.939 104.538Z" fill="#0000FF"/>
<path d="M120.282 99.5C120.282 110.978 110.978 120.282 99.5 120.282C88.0222 120.282 78.7177 110.978 78.7177 99.5C78.7177 88.0223 88.0222 78.7178 99.5 78.7178C110.978 78.7178 120.282 88.0223 120.282 99.5Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/> <path d="M120.282 99.5C120.282 110.978 110.978 120.282 99.4999 120.282C88.0222 120.282 78.7177 110.978 78.7177 99.5C78.7177 88.0223 88.0222 78.7178 99.4999 78.7178C110.978 78.7178 120.282 88.0223 120.282 99.5Z" stroke="#0000FF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M94.4038 23.0608C96.5756 18.9797 102.424 18.9797 104.596 23.0608L123.467 58.5204C124.891 61.1981 123.992 64.5108 121.308 65.9235C115.869 68.7863 106.724 72.9449 99.5 72.9449C92.2761 72.9449 83.1314 68.7863 77.692 65.9235C75.0078 64.5108 74.1084 61.1981 75.5334 58.5204L94.4038 23.0608Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/> <path d="M94.4038 23.0608C96.5756 18.9797 102.424 18.9797 104.596 23.0608L123.467 58.5204C124.891 61.1981 123.992 64.5108 121.308 65.9235C115.869 68.7863 106.724 72.9449 99.5 72.9449C92.2761 72.9449 83.1314 68.7863 77.692 65.9235C75.0078 64.5108 74.1084 61.1981 75.5334 58.5204L94.4038 23.0608Z" stroke="#0000FF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.0608 104.538C18.9797 102.366 18.9797 96.5176 23.0608 94.3457L58.5204 75.4753C61.1981 74.0504 64.5108 74.9497 65.9235 77.6339C68.7863 83.0733 72.9449 92.2181 72.9449 99.4419C72.9449 106.666 68.7863 115.811 65.9235 121.25C64.5108 123.934 61.1981 124.833 58.5204 123.408L23.0608 104.538Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/> <path d="M23.0608 104.538C18.9797 102.366 18.9797 96.5176 23.0608 94.3457L58.5204 75.4753C61.1981 74.0504 64.5108 74.9497 65.9235 77.6339C68.7863 83.0733 72.9449 92.2181 72.9449 99.4419C72.9449 106.666 68.7863 115.811 65.9235 121.25C64.5108 123.934 61.1981 124.833 58.5204 123.408L23.0608 104.538Z" stroke="#0000FF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M104.538 175.939C102.366 180.02 96.5175 180.02 94.3457 175.939L75.4753 140.48C74.0503 137.802 74.9496 134.489 77.6338 133.077C83.0732 130.214 92.218 126.055 99.4418 126.055C106.666 126.055 115.81 130.214 121.25 133.077C123.934 134.489 124.833 137.802 123.408 140.48L104.538 175.939Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/> <path d="M104.538 175.939C102.366 180.02 96.5175 180.02 94.3457 175.939L75.4753 140.48C74.0503 137.802 74.9496 134.489 77.6338 133.077C83.0732 130.214 92.218 126.055 99.4418 126.055C106.666 126.055 115.81 130.214 121.25 133.077C123.934 134.489 124.833 137.802 123.408 140.48L104.538 175.939Z" stroke="#0000FF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M175.939 104.538C180.02 102.366 180.02 96.5176 175.939 94.3457L140.48 75.4753C137.802 74.0504 134.489 74.9497 133.077 77.6339C130.214 83.0733 126.055 92.2181 126.055 99.4419C126.055 106.666 130.214 115.811 133.077 121.25C134.489 123.934 137.802 124.833 140.48 123.408L175.939 104.538Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/> <path d="M175.939 104.538C180.02 102.366 180.02 96.5176 175.939 94.3457L140.48 75.4753C137.802 74.0504 134.489 74.9497 133.077 77.6339C130.214 83.0733 126.055 92.2181 126.055 99.4419C126.055 106.666 130.214 115.811 133.077 121.25C134.489 123.934 137.802 124.833 140.48 123.408L175.939 104.538Z" stroke="#0000FF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</g> </g>
<path d="M99.7871 25L119.308 61.915C119.308 61.915 107.902 69.084 99.7871 69.084C91.6719 69.084 80.2662 61.915 80.2662 61.915L99.7871 25Z" fill="#4D4D4D"/> <path d="M99.7871 25L119.308 61.915C119.308 61.915 107.902 69.084 99.7871 69.084C91.6719 69.084 80.2662 61.915 80.2662 61.915L99.7871 25Z" fill="#00FF00"/>
<path d="M99.7871 175L80.2662 138.085C80.2662 138.085 91.6719 130.916 99.7871 130.916C107.902 130.916 119.308 138.085 119.308 138.085L99.7871 175Z" fill="#4D4D4D"/> <path d="M99.7871 175L80.2662 138.085C80.2662 138.085 91.6719 130.916 99.7871 130.916C107.902 130.916 119.308 138.085 119.308 138.085L99.7871 175Z" fill="#00FF00"/>
<path d="M24 100L61.0198 80.5343C61.0198 80.5343 68.2091 91.9078 68.2091 100C68.2091 108.092 61.0198 119.466 61.0198 119.466L24 100Z" fill="#4D4D4D"/> <path d="M24 100L61.0198 80.5343C61.0198 80.5343 68.2091 91.9078 68.2091 100C68.2091 108.092 61.0198 119.466 61.0198 119.466L24 100Z" fill="#00FF00"/>
<path d="M175 100L137.98 80.5343C137.98 80.5343 130.791 91.9078 130.791 100C130.791 108.092 137.98 119.466 137.98 119.466L175 100Z" fill="#4D4D4D"/> <path d="M175 100L137.98 80.5343C137.98 80.5343 130.791 91.9078 130.791 100C130.791 108.092 137.98 119.466 137.98 119.466L175 100Z" fill="#00FF00"/>
<circle cx="100" cy="100" r="16" fill="#F67400"/> <circle cx="100" cy="100" r="16" fill="#F67400"/>
<defs> <defs>
<filter id="filter0_d" x="14.5" y="18.5" width="170" height="172" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d" x="14.5" y="18.5" width="170" height="172" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

+37
View File
@@ -0,0 +1,37 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g clip-path="url(#clip0)">
<g filter="url(#filter0_d)">
<path d="M146.719 112.224L159.945 157.664L114.503 144.439C114.503 144.439 116.647 135.722 120.612 128.596C120.113 128.139 113.496 121.533 113.496 121.533L123.781 111.248C123.781 111.248 130.833 118.356 130.869 118.336C137.996 114.368 146.719 112.224 146.719 112.224Z" fill="#00FF00"/>
<path d="M84.0638 71.4665L73.7467 81.7836C73.7467 81.7836 66.727 74.6431 66.6906 74.6634C59.5633 78.631 50.8408 80.7757 50.8408 80.7757L37.6151 35.335L83.0563 48.5605C83.0563 48.5605 80.9129 57.2776 76.9475 64.4036C77.4466 64.8608 84.0638 71.4665 84.0638 71.4665Z" fill="#00FF00"/>
<path d="M150.079 111.246C149.555 109.445 147.705 108.377 145.883 108.825L146.719 112.224C145.883 108.825 145.883 108.825 145.882 108.825L145.881 108.825L145.878 108.826L145.87 108.828L145.845 108.834L145.757 108.857C145.682 108.875 145.576 108.903 145.44 108.939C145.168 109.01 144.778 109.115 144.291 109.253C143.318 109.529 141.95 109.937 140.352 110.474C137.819 111.325 134.639 112.522 131.512 114.054C130.984 113.527 130.388 112.929 129.791 112.33C128.909 111.444 128.028 110.557 127.366 109.892L126.568 109.088L126.345 108.862L126.286 108.803L126.271 108.788L126.267 108.784L126.266 108.783L126.266 108.783C126.266 108.783 126.266 108.783 123.781 111.248L126.266 108.783C125.61 108.122 124.719 107.75 123.788 107.748C122.857 107.746 121.964 108.115 121.306 108.773L111.021 119.058C110.364 119.715 109.996 120.606 109.996 121.534C109.996 122.463 110.366 123.354 111.023 124.01L113.496 121.533C111.023 124.01 111.023 124.01 111.023 124.01L111.023 124.01L111.024 124.011L111.028 124.015L111.042 124.029L111.098 124.084L111.309 124.295L112.066 125.05C112.695 125.677 113.538 126.518 114.398 127.374C115.04 128.012 115.711 128.68 116.312 129.276C114.79 132.391 113.6 135.554 112.753 138.075C112.216 139.672 111.808 141.039 111.533 142.012C111.395 142.499 111.29 142.888 111.218 143.16C111.183 143.296 111.155 143.403 111.136 143.477L111.114 143.565L111.108 143.59L111.106 143.598L111.105 143.601L111.105 143.602C111.105 143.603 111.105 143.603 114.503 144.439L111.105 143.603C110.657 145.425 111.724 147.275 113.525 147.799L158.966 161.025C160.193 161.382 161.516 161.042 162.419 160.139C163.323 159.236 163.662 157.913 163.305 156.686L150.079 111.246ZM86.5386 73.9414C87.1954 73.2847 87.5642 72.3938 87.5638 71.465C87.5634 70.5362 87.1938 69.6457 86.5365 68.9895L84.0638 71.4665C86.5365 68.9895 86.5365 68.9895 86.5364 68.9894L86.5362 68.9892L86.5353 68.9883L86.5317 68.9847L86.5174 68.9704L86.4618 68.915L86.2507 68.7042L85.4935 67.949C84.8649 67.3221 84.0213 66.4812 83.1618 65.6258C82.52 64.987 81.8485 64.3192 81.2473 63.723C82.77 60.6087 83.9596 57.4456 84.8067 54.9245C85.3434 53.3272 85.7516 51.9602 86.0271 50.9874C86.1649 50.5005 86.2699 50.111 86.3414 49.8393C86.3771 49.7034 86.4045 49.5968 86.4235 49.5222L86.4456 49.4344L86.4519 49.409L86.4539 49.401L86.4546 49.3982L86.4549 49.3971C86.455 49.3966 86.4551 49.3962 83.0563 48.5605L86.4551 49.3962C86.9029 47.5748 85.8354 45.7241 84.0344 45.1999L38.5932 31.9744C37.3668 31.6175 36.0434 31.9569 35.1402 32.8601C34.2371 33.7633 33.8976 35.0867 34.2546 36.3131L47.4802 81.7538C48.0044 83.5548 49.8551 84.6224 51.6765 84.1745L50.8408 80.7757C51.6765 84.1745 51.6769 84.1744 51.6774 84.1743L51.6785 84.174L51.6813 84.1733L51.6892 84.1713L51.7147 84.165L51.8025 84.1429C51.8772 84.1239 51.9838 84.0965 52.1198 84.0607C52.3917 83.9892 52.7814 83.8842 53.2685 83.7463C54.2419 83.4707 55.6097 83.0621 57.2078 82.5251C59.7373 81.6751 62.9128 80.4804 66.0367 78.9505C66.56 79.4785 67.1502 80.0756 67.7413 80.6745C68.6196 81.5643 69.497 82.4551 70.155 83.1236L70.9498 83.9312L71.1723 84.1574L71.2308 84.217L71.2458 84.2322L71.2495 84.236L71.2505 84.237L71.2507 84.2372C71.2508 84.2373 71.2508 84.2373 73.7467 81.7836L71.2508 84.2373C71.9052 84.9029 72.7983 85.2796 73.7317 85.2836C74.6652 85.2876 75.5615 84.9185 76.2216 84.2585L86.5386 73.9414Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<g filter="url(#filter1_d)">
<path d="M103.013 103.106C104.542 103.152 105.744 101.95 105.697 100.421L105.463 92.6695C105.416 91.1404 104.139 89.8633 102.61 89.817L94.8582 89.5821C93.3292 89.5358 92.1272 90.7377 92.1735 92.2668L92.4084 100.019C92.4548 101.548 93.7319 102.825 95.2609 102.871L103.013 103.106Z" fill="#18A0FB"/>
<path d="M102.907 106.604C106.451 106.712 109.303 103.86 109.196 100.315L108.961 92.5634C108.859 89.1846 106.095 86.421 102.716 86.3186L94.9642 86.0837C91.4198 85.9763 88.5677 88.8283 88.6751 92.3728L88.9101 100.125C89.0124 103.504 91.776 106.267 95.1549 106.37L102.907 106.604Z" stroke="#0000FF" stroke-width="7"/>
</g>
</g>
<defs>
<filter id="filter0_d" x="26.6149" y="28.3347" width="144.33" height="146.33" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter1_d" x="81.1722" y="82.5808" width="35.5267" height="37.5267" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.1 KiB

+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M87.7852 109.412L138.475 92.5044L129.147 73.6584L146.924 55.8701L141.291 50.2336L123.515 68.0225L104.682 58.6883L87.7852 109.412Z" fill="#0000FF"/>
<path d="M52.186 148.975V61.2991H60.1512V141.005H139.803V148.975H52.186Z" fill="#0000FF"/>
<path d="M84.4645 108.306C84.0456 109.564 84.3732 110.95 85.3108 111.888C86.2484 112.825 87.635 113.152 88.8926 112.732L139.583 95.8245C140.543 95.5043 141.317 94.7842 141.706 93.8499C142.095 92.9157 142.061 91.8587 141.612 90.9517L133.398 74.3563L149.399 58.3441C150.765 56.9775 150.765 54.7627 149.4 53.3961L143.767 47.7597C143.111 47.1027 142.22 46.7337 141.291 46.7336C140.363 46.7336 139.472 47.1027 138.816 47.7596L122.816 63.77L106.236 55.5523C105.329 55.1026 104.271 55.0679 103.336 55.4572C102.402 55.8464 101.681 56.6214 101.361 57.5821L84.4645 108.306ZM48.686 148.975C48.686 150.908 50.253 152.475 52.186 152.475H139.803C141.736 152.475 143.303 150.908 143.303 148.975V141.005C143.303 139.072 141.736 137.505 139.803 137.505H63.6512V61.2991C63.6512 59.3661 62.0842 57.7991 60.1512 57.7991H52.186C50.253 57.7991 48.686 59.3661 48.686 61.2991V148.975Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<path d="M87.7852 109.412L138.475 92.5044L129.147 73.6584L146.924 55.8701L141.291 50.2336L123.515 68.0225L104.682 58.6883L87.7852 109.412Z" fill="#00FF00"/>
<path d="M52.186 148.975V61.2991H60.1512V141.005H139.803V148.975H52.186Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="41.186" y="43.2336" width="116.738" height="122.742" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M111.325 109.412L60.6345 92.5046L69.9629 73.6586L52.186 55.8703L57.8184 50.2339L75.5952 68.0227L94.428 58.6885L111.325 109.412Z" fill="#0000FF"/>
<path d="M146.924 148.976V61.2993H138.959V141.005H59.3067V148.976H146.924Z" fill="#0000FF"/>
<path d="M110.217 112.733C111.475 113.152 112.861 112.825 113.799 111.888C114.737 110.951 115.064 109.564 114.645 108.306L97.7486 57.5824C97.4286 56.6217 96.7082 55.8467 95.7734 55.4574C94.8386 55.0682 93.781 55.1029 92.8737 55.5526L76.2937 63.7702L60.2941 47.7598C59.6377 47.103 58.7471 46.7339 57.8184 46.7339C56.8897 46.7339 55.9991 47.103 55.3427 47.7599L49.7103 53.3963C48.3446 54.763 48.3446 56.9778 49.7104 58.3444L65.7121 74.3565L57.4977 90.952C57.0488 91.859 57.0144 92.9159 57.4035 93.8502C57.7925 94.7844 58.567 95.5046 59.527 95.8248L110.217 112.733ZM146.924 152.476C148.857 152.476 150.424 150.909 150.424 148.976V61.2993C150.424 59.3663 148.857 57.7993 146.924 57.7993H138.959C137.026 57.7993 135.459 59.3663 135.459 61.2993V137.505H59.3067C57.3737 137.505 55.8067 139.072 55.8067 141.005V148.976C55.8067 150.909 57.3737 152.476 59.3067 152.476H146.924Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<path d="M111.325 109.412L60.6345 92.5046L69.9629 73.6586L52.186 55.8703L57.8184 50.2339L75.5952 68.0227L94.428 58.6885L111.325 109.412Z" fill="#00FF00"/>
<path d="M146.924 148.976V61.2993H138.959V141.005H59.3067V148.976H146.924Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="41.186" y="43.2339" width="116.738" height="122.742" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M99.9154 128.485L76.0197 80.6617L95.9327 73.937V48.7793H103.898V73.937L123.811 80.6617L99.9154 128.485Z" fill="#0000FF"/>
<path d="M32.2114 152.101V144.13H167.62V152.101H32.2114Z" fill="#0000FF"/>
<path d="M96.7844 130.05C97.3771 131.236 98.5893 131.985 99.9154 131.985C101.241 131.985 102.454 131.236 103.046 130.05L126.942 82.2261C127.394 81.3208 127.433 80.264 127.047 79.3282C126.661 78.3925 125.89 77.6695 124.931 77.3457L107.398 71.4248V48.7793C107.398 46.8463 105.831 45.2793 103.898 45.2793H95.9327C93.9997 45.2793 92.4327 46.8463 92.4327 48.7793V71.4248L74.8999 77.3457C73.941 77.6695 73.1693 78.3925 72.7837 79.3282C72.3981 80.264 72.4364 81.3208 72.8888 82.2261L96.7844 130.05ZM28.7114 152.101C28.7114 154.034 30.2784 155.601 32.2114 155.601H167.62C169.553 155.601 171.12 154.034 171.12 152.101V144.13C171.12 142.197 169.553 140.63 167.62 140.63H32.2114C30.2784 140.63 28.7114 142.197 28.7114 144.13V152.101Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<path d="M99.9154 128.485L76.0197 80.6617L95.9327 73.937V48.7793H103.898V73.937L123.811 80.6617L99.9154 128.485Z" fill="#00FF00"/>
<path d="M32.2114 152.101V144.13H167.62V152.101H32.2114Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="21.2114" y="41.7793" width="157.408" height="127.321" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

+3 -3
View File
@@ -1,10 +1,10 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d)">
<path d="M99.7344 30.4801L55.3856 129.857C54.715 131.36 55.3687 133.127 56.8356 133.873C63.0168 137.013 78.4017 145.521 86.0678 155.921C91.821 163.726 90.3303 168.935 100.027 168.965C109.723 168.996 107.765 163.777 113.568 156.008C121.289 145.67 136.386 137.267 142.472 134.155C143.927 133.41 144.581 131.657 143.924 130.16L100.192 30.4816C100.104 30.2829 99.8228 30.282 99.7344 30.4801Z" fill="white"/> <path d="M99.7344 30.4801L55.3856 129.857C54.715 131.36 55.3687 133.127 56.8356 133.873C63.0168 137.013 78.4017 145.521 86.0678 155.921C91.821 163.726 90.3303 168.935 100.027 168.965C109.723 168.996 107.765 163.777 113.568 156.008C121.289 145.67 136.386 137.267 142.472 134.155C143.927 133.41 144.581 131.657 143.924 130.16L100.192 30.4816C100.104 30.2829 99.8228 30.282 99.7344 30.4801Z" fill="#0000FF"/>
<path d="M100.203 30.4768L103.855 28.8745L147.587 128.553C149.12 132.048 147.576 136.037 144.293 137.716C141.341 139.226 136.209 142.017 130.899 145.668C125.543 149.351 120.251 153.744 116.772 158.401C115.523 160.075 114.68 161.622 113.951 163.091C113.8 163.395 113.642 163.724 113.478 164.066C112.928 165.208 112.306 166.501 111.631 167.561C110.629 169.134 109.269 170.64 107.14 171.656C105.116 172.622 102.749 172.974 100.014 172.965C97.2694 172.956 94.9035 172.586 92.8692 171.635C90.7457 170.642 89.3352 169.181 88.2657 167.615C87.4812 166.466 86.7852 165.098 86.1653 163.879C86.0264 163.606 85.8913 163.34 85.7598 163.086C84.9804 161.58 84.106 160.001 82.848 158.294C79.4059 153.625 74.07 149.197 68.6347 145.475C63.2502 141.787 58.0235 138.963 55.0236 137.439C51.7129 135.756 50.1685 131.733 51.7328 128.227L96.0816 28.85L99.7344 30.4801L96.0816 28.85C97.5851 25.4811 102.372 25.4962 103.855 28.8745L100.203 30.4768ZM100.203 30.4768L100.194 30.4804L100.203 30.4768Z" stroke="white" stroke-width="8"/> <path d="M96.0816 28.85L96.0816 28.85L51.7328 128.227C50.1685 131.733 51.7129 135.756 55.0236 137.439L55.0236 137.439C58.0235 138.963 63.2502 141.787 68.6347 145.475C74.07 149.197 79.4059 153.625 82.848 158.294C84.106 160.001 84.9804 161.58 85.7598 163.086C85.8913 163.34 86.0264 163.606 86.1654 163.879C86.7853 165.098 87.4812 166.467 88.2657 167.615C89.3352 169.181 90.7457 170.642 92.8692 171.635C94.9035 172.586 97.2694 172.956 100.014 172.965C102.749 172.974 105.116 172.622 107.14 171.656C109.269 170.64 110.629 169.134 111.631 167.561C112.306 166.501 112.928 165.208 113.478 164.066C113.642 163.724 113.8 163.395 113.951 163.091C114.68 161.622 115.523 160.075 116.772 158.401C120.251 153.744 125.543 149.351 130.899 145.668C136.209 142.017 141.341 139.226 144.293 137.716C147.576 136.037 149.12 132.048 147.587 128.553L103.855 28.8745L100.203 30.4765L103.855 28.8745C102.372 25.4962 97.5851 25.4811 96.0816 28.85Z" stroke="#0000FF" stroke-width="8"/>
</g> </g>
<path d="M99.9644 29.9644L54.9818 130.762C54.5348 131.764 54.9638 132.938 55.9461 133.426C61.3914 136.132 78.0019 144.979 86.0676 155.921C91.8208 163.726 90.3301 168.935 100.027 168.965C109.723 168.996 107.765 163.777 113.567 156.008C121.694 145.127 137.991 136.391 143.353 133.709C144.328 133.221 144.756 132.057 144.318 131.059L99.9644 29.9644Z" fill="#4D4D4D"/> <path d="M99.9644 29.9644L54.9818 130.762C54.5348 131.764 54.9638 132.938 55.9461 133.426C61.3914 136.132 78.0019 144.979 86.0676 155.921C91.8208 163.727 90.3301 168.935 100.027 168.965C109.723 168.996 107.765 163.777 113.567 156.008C121.694 145.127 137.991 136.391 143.353 133.709C144.328 133.221 144.756 132.057 144.318 131.059L99.9644 29.9644Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="43.1163" y="22.332" width="113.069" height="164.633" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d" x="43.1163" y="22.332" width="113.069" height="164.633" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <feFlood flood-opacity="0" result="BackgroundImageFix"/>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<path d="M96.5263 28.5C94.5933 28.5 93.0263 30.067 93.0263 32V92.2505H81.9078L76.0027 74.6379C75.68 73.6754 74.9552 72.9004 74.0165 72.514C73.0778 72.1275 72.0175 72.1677 71.1107 72.6241L23.4265 96.6241C22.2453 97.2187 21.5 98.4281 21.5 99.7505C21.5 101.073 22.2453 102.282 23.4265 102.877L71.1107 126.877C72.0175 127.333 73.0778 127.373 74.0165 126.987C74.9552 126.601 75.68 125.826 76.0027 124.863L81.9078 107.25H93.0263V168C93.0263 169.933 94.5933 171.5 96.5263 171.5H104.474C106.407 171.5 107.974 169.933 107.974 168V107.25H119.092L124.997 124.863C125.32 125.826 126.045 126.601 126.984 126.987C127.922 127.373 128.983 127.333 129.889 126.877L177.574 102.877C178.755 102.282 179.5 101.073 179.5 99.7505C179.5 98.4281 178.755 97.2187 177.574 96.6241L129.889 72.6241C128.983 72.1677 127.922 72.1275 126.984 72.514C126.045 72.9004 125.32 73.6754 124.997 74.6379L119.092 92.2505H107.974V32C107.974 30.067 106.407 28.5 104.474 28.5H96.5263Z" fill="#0000FF" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M96.5263 32V95.7505H79.3898L72.6842 75.7505L25 99.7505L72.6842 123.75L79.3898 103.75H96.5263V168H104.474V103.75H121.61L128.316 123.75L176 99.7505L128.316 75.7505L121.61 95.7505H104.474V32H96.5263Z" fill="#00FF00"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<path d="M95.3428 78.4737L95.3269 78.4645L95.3266 78.4643L95.3259 78.4639C95.3256 78.4637 95.3254 78.4636 95.3251 78.4634C95.3251 78.4634 95.3251 78.4634 95.3251 78.4634C93.956 77.6649 92.2211 77.8861 91.0961 79.0027L80.9261 89.0972C80.2641 89.7544 79.8918 90.6485 79.8918 91.5813C79.8918 92.5141 80.2641 93.4083 80.9261 94.0654L83.5311 96.651L39.5632 140.472C39.0773 140.957 38.7445 141.573 38.606 142.245L36.572 152.115C36.3334 153.273 36.6954 154.473 37.5344 155.306L44.7663 162.484C45.5736 163.285 46.72 163.644 47.8402 163.447L58.0101 161.652C58.7154 161.528 59.3654 161.19 59.8727 160.684L103.867 116.836L106.464 119.414C107.829 120.768 110.031 120.768 111.395 119.414L121.565 109.319C122.703 108.19 122.928 106.431 122.111 105.051L122.111 105.051L122.11 105.051L122.101 105.035C122.092 105.019 122.076 104.992 122.056 104.956C122.014 104.884 121.95 104.772 121.87 104.629C121.71 104.34 121.485 103.925 121.235 103.432C120.797 102.567 120.322 101.539 119.971 100.563L126.393 102.157C126.467 102.175 126.542 102.191 126.617 102.205C138.862 104.403 152.337 97.4073 159.39 86.789C162.981 81.3838 165.04 74.8657 164.377 67.8934C163.712 60.8969 160.339 53.7809 153.657 47.1488C146.892 40.434 139.606 37.5209 132.471 37.5001C125.422 37.4795 118.93 40.2803 113.617 44.2395C108.306 48.1976 103.984 53.4473 101.226 58.703C98.5481 63.804 97.0237 69.5436 98.312 74.2988L99.901 80.608C98.9011 80.2564 97.8451 79.7758 96.96 79.3343C96.4623 79.0859 96.0438 78.8626 95.7529 78.7032C95.6078 78.6237 95.4956 78.5607 95.4223 78.5191C95.3857 78.4983 95.359 78.483 95.3428 78.4737ZM119.482 98.5547C119.482 98.5547 119.482 98.5567 119.482 98.5605C119.482 98.5566 119.482 98.5547 119.482 98.5547ZM100.408 82.7299C100.408 82.7299 100.408 82.7288 100.408 82.7265C100.408 82.7288 100.408 82.7299 100.408 82.7299ZM101.905 81.0813C101.907 81.0811 101.908 81.081 101.908 81.081L101.905 81.0813Z" fill="#0000FF" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M101.698 73.4111L103.732 81.4868C105.486 88.4508 93.5617 81.4868 93.5617 81.4868L83.3918 91.5813L108.93 116.93L119.1 106.835C119.1 106.835 112.084 94.9997 119.1 96.7407L127.236 98.7597C148.479 102.573 175.978 74.2358 151.191 49.6329C126.405 25.0299 97.8557 59.4111 101.698 73.4111Z" fill="#00FF00"/>
<path d="M96.9517 88.2165L42.034 142.951L40 152.822L47.232 160L57.4019 158.205L112.32 103.471L96.9517 88.2165ZM97.8557 97.6381L102.828 102.573L71.6398 133.53L59.4359 135.773L97.8557 97.6381Z" fill="#00FF00"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

+22
View File
@@ -0,0 +1,22 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M57.4357 30.6757L57.3084 139.5C57.3065 141.145 58.622 142.494 60.2653 142.579C67.1894 142.936 84.704 144.456 95.9356 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.65 106.757 139.535 104.89 138.326 103.789L57.8541 30.4912C57.6936 30.3451 57.436 30.4587 57.4357 30.6757Z" fill="#0000FF"/>
<path d="M53.4357 30.671V30.6711L53.3084 139.495C53.304 143.333 56.3505 146.382 60.0592 146.573C63.4196 146.747 69.3431 147.203 75.7615 148.383C82.2406 149.575 88.9155 151.452 93.9584 154.319C95.8016 155.367 97.242 156.454 98.5665 157.514C98.7898 157.692 99.0213 157.88 99.2593 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.735 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5476 27.534L60.5476 27.534C57.8202 25.0498 53.4401 26.9819 53.4357 30.671Z" stroke="#0000FF" stroke-width="8"/>
</g>
<path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#00FF00"/>
<path d="M91.349 61H77C74.2386 61 72 63.2386 72 66V69C72 71.7614 74.2386 74 77 74H105.621L91.349 61Z" fill="#3DAEE9"/>
<path d="M113.307 81H89C86.2386 81 84 83.2386 84 86V89C84 91.7614 86.2386 94 89 94H127.579L113.307 81Z" fill="#3DAEE9"/>
<path d="M135.264 101H105C102.239 101 100 103.239 100 106V109C100 111.761 102.239 114 105 114H134.083C136.207 111.036 138.08 108.682 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L135.264 101Z" fill="#3DAEE9"/>
<defs>
<filter id="filter0_d" x="45.3084" y="22.4099" width="106.011" height="154.027" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

+3 -3
View File
@@ -1,10 +1,10 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d)">
<path d="M57.4358 30.6757L57.3085 139.5C57.3065 141.145 58.622 142.494 60.2653 142.579C67.1894 142.936 84.7041 144.456 95.9356 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.651 106.757 139.535 104.89 138.326 103.789L57.8541 30.4912C57.6937 30.3451 57.436 30.4587 57.4358 30.6757Z" fill="white"/> <path d="M57.4358 30.6757L57.3085 139.5C57.3065 141.145 58.622 142.494 60.2653 142.579C67.1894 142.936 84.7041 144.456 95.9356 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.651 106.757 139.535 104.89 138.326 103.789L57.8541 30.4912C57.6937 30.3451 57.436 30.4587 57.4358 30.6757Z" fill="#0000FF"/>
<path d="M53.4358 30.671V30.6711L53.3085 139.495C53.304 143.333 56.3505 146.382 60.0592 146.573C63.4196 146.747 69.3431 147.203 75.7616 148.383C82.2406 149.575 88.9155 151.452 93.9584 154.319C95.8017 155.367 97.2421 156.454 98.5665 157.514C98.7898 157.692 99.0213 157.88 99.2593 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.735 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5476 27.534L60.5476 27.534C57.8202 25.0498 53.4401 26.9819 53.4358 30.671Z" stroke="white" stroke-width="8"/> <path d="M53.4358 30.671V30.6711L53.3085 139.495C53.304 143.333 56.3505 146.382 60.0592 146.573C63.4196 146.747 69.3431 147.203 75.7616 148.383C82.2406 149.575 88.9155 151.452 93.9584 154.319C95.8017 155.367 97.2421 156.454 98.5665 157.514C98.7898 157.692 99.0213 157.88 99.2593 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.735 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5476 27.534L60.5476 27.534C57.8202 25.0498 53.4401 26.9819 53.4358 30.671Z" stroke="#0000FF" stroke-width="8"/>
</g> </g>
<path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#4D4D4D"/> <path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#00FF00"/>
<g filter="url(#filter1_d)"> <g filter="url(#filter1_d)">
<rect x="77" y="28" width="96" height="96" rx="30" fill="#11D116"/> <rect x="77" y="28" width="96" height="96" rx="30" fill="#11D116"/>
</g> </g>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

+30
View File
@@ -0,0 +1,30 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<path d="M99.89 10.7407C96.2393 10.7407 92.7014 12.7766 90.6802 15.4733C88.6591 18.1699 87.9422 21.3681 87.9422 24.6892V88.4538H24.2204C20.9015 88.4538 17.7055 89.1712 15.0106 91.1937C12.3157 93.2162 10.2812 96.7565 10.2812 100.41C10.2812 104.063 12.3157 107.603 15.0106 109.626C17.7055 111.648 20.9015 112.366 24.2204 112.366H87.9422V176.13C87.9422 179.451 88.6591 182.649 90.6802 185.346C92.7014 188.043 96.2393 190.079 99.89 190.079C103.541 190.079 107.079 188.043 109.1 185.346C111.121 182.649 111.838 179.451 111.838 176.13V112.366H175.56C178.879 112.366 182.075 111.648 184.769 109.626C187.464 107.603 189.499 104.063 189.499 100.41C189.499 96.7565 187.464 93.2162 184.769 91.1937C182.075 89.1712 178.879 88.4538 175.56 88.4538H111.838V24.6892C111.838 21.3681 111.121 18.1699 109.1 15.4733C107.079 12.7766 103.541 10.7407 99.89 10.7407ZM99.89 18.7113C101.881 18.7113 103.873 20.7039 103.873 24.6892V96.4244H175.56C183.525 96.4244 183.525 104.395 175.56 104.395H103.873V176.13C103.873 184.101 95.9074 184.101 95.9074 176.13V104.395H24.2204C16.2552 104.395 16.2552 96.4244 24.2204 96.4244H95.9074V24.6892C95.9074 20.7039 97.8987 18.7113 99.89 18.7113Z" fill="#0000FF"/>
<path d="M103.873 96.4241V104.395H175.56C183.525 104.395 183.525 96.4241 175.56 96.4241H103.873Z" fill="url(#paint0_radial)"/>
<path d="M95.9077 96.4241V104.395H24.2205C16.2553 104.395 16.2553 96.4241 24.2205 96.4241H95.9077Z" fill="url(#paint1_radial)"/>
<path d="M103.873 104.395H95.9077L95.9071 176.13C95.9071 184.1 103.872 184.1 103.872 176.13L103.873 104.395Z" fill="url(#paint2_radial)"/>
<path d="M103.873 96.4241H95.9077L95.9071 24.6882C95.9071 16.7176 103.872 16.7176 103.872 24.6882L103.873 96.4241Z" fill="url(#paint3_radial)"/>
<defs>
<radialGradient id="paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(99.8903 100.409) rotate(90) scale(81.6987 81.6437)">
<stop stop-color="#00FF00" stop-opacity="0.107143"/>
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
<stop offset="1" stop-color="#00FF00"/>
</radialGradient>
<radialGradient id="paint1_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(99.8903 100.409) rotate(90) scale(81.6987 81.6437)">
<stop stop-color="#00FF00" stop-opacity="0.107143"/>
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
<stop offset="1" stop-color="#00FF00"/>
</radialGradient>
<radialGradient id="paint2_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(99.8903 100.409) rotate(90) scale(81.6987 81.6437)">
<stop stop-color="#00FF00" stop-opacity="0.107143"/>
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
<stop offset="1" stop-color="#00FF00"/>
</radialGradient>
<radialGradient id="paint3_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(99.8903 100.409) rotate(90) scale(81.6987 81.6437)">
<stop stop-color="#00FF00" stop-opacity="0.107143"/>
<stop offset="0.510417" stop-color="#00FF00" stop-opacity="0.77"/>
<stop offset="1" stop-color="#00FF00"/>
</radialGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

+3 -3
View File
@@ -1,10 +1,10 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d)">
<path d="M57.4357 30.6757L57.3084 139.5C57.3065 141.145 58.622 142.494 60.2652 142.579C67.1894 142.936 84.704 144.456 95.9356 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.65 106.757 139.535 104.89 138.326 103.789L57.854 30.4912C57.6936 30.3451 57.436 30.4587 57.4357 30.6757Z" fill="white"/> <path d="M57.4357 30.6757L57.3084 139.5C57.3065 141.145 58.622 142.494 60.2652 142.579C67.1894 142.936 84.704 144.456 95.9356 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.65 106.757 139.535 104.89 138.326 103.789L57.854 30.4912C57.6936 30.3451 57.436 30.4587 57.4357 30.6757Z" fill="#0000FF"/>
<path d="M53.4357 30.671V30.6711L53.3084 139.495C53.3039 143.333 56.3505 146.382 60.0591 146.573C63.4195 146.747 69.343 147.203 75.7615 148.383C82.2406 149.575 88.9154 151.452 93.9584 154.319C95.8016 155.367 97.242 156.454 98.5664 157.514C98.7898 157.692 99.0212 157.88 99.2593 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.735 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5476 27.534L60.5476 27.534C57.8202 25.0498 53.44 26.9819 53.4357 30.671Z" stroke="white" stroke-width="8"/> <path d="M53.4357 30.671V30.6711L53.3084 139.495C53.3039 143.333 56.3505 146.382 60.0591 146.573C63.4195 146.747 69.343 147.203 75.7615 148.383C82.2406 149.575 88.9154 151.452 93.9584 154.319C95.8016 155.367 97.242 156.454 98.5664 157.514C98.7898 157.692 99.0212 157.88 99.2593 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.734 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5476 27.534L60.5476 27.534C57.8202 25.0498 53.44 26.9819 53.4357 30.671Z" stroke="#0000FF" stroke-width="8"/>
</g> </g>
<path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#4D4D4D"/> <path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#00FF00"/>
<g filter="url(#filter1_d)"> <g filter="url(#filter1_d)">
<rect x="77" y="28" width="96" height="96" rx="30" fill="#ED1515"/> <rect x="77" y="28" width="96" height="96" rx="30" fill="#ED1515"/>
</g> </g>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

+2 -2
View File
@@ -3,8 +3,8 @@
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d)">
<rect x="20" y="20" width="160" height="160" rx="50" fill="#ED1515"/> <rect x="20" y="20" width="160" height="160" rx="50" fill="#ED1515"/>
</g> </g>
<path d="M137.72 60.125C120.475 43.766 94.1096 39.8943 72.4468 52.3753C50.7839 64.8568 40.9612 89.5786 46.5353 112.662L137.72 60.125Z" fill="white"/> <path d="M133.077 66.0625C118.183 51.9343 95.4128 48.5905 76.7041 59.3696C57.9952 70.149 49.5119 91.4997 54.3259 111.435L133.077 66.0625Z" fill="white"/>
<path d="M153.465 87.3388L62.2798 139.876C79.5248 156.235 105.89 160.105 127.553 147.624C149.216 135.143 159.039 110.422 153.465 87.3388Z" fill="white"/> <path d="M146.674 89.5654L67.9234 134.938C82.8168 149.066 105.587 152.409 124.296 141.63C143.004 130.851 151.488 109.501 146.674 89.5654Z" fill="white"/>
<defs> <defs>
<filter id="filter0_d" x="16" y="20" width="168" height="170" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d" x="16" y="20" width="168" height="170" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <feFlood flood-opacity="0" result="BackgroundImageFix"/>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M33 167H167V33H33V167ZM40.8824 40.8824H96.5515V56.4007H104.434V40.8824H159.118V96.3052H144.338V104.188H159.118V159.118H104.434V144.092H96.5515V159.118H40.8824V104.188H56.6471V96.3052H40.8824V40.8824Z" fill="#0000FF"/>
<path d="M33 167H167V33H33V167ZM40.8824 40.8824H96.5515V56.4007H104.434V40.8824H159.118V96.3052H144.338V104.188H159.118V159.118H104.434V144.092H96.5515V159.118H40.8824V104.188H56.6471V96.3052H40.8824V40.8824Z" stroke="#0000FF" stroke-width="25"/>
</g>
<path d="M32 167V168H33H167H168V167V33V32H167H33H32V33V167ZM56.6471 95.3052H41.8824V41.8824H95.5515V56.4007V57.4007H96.5515H104.434H105.434V56.4007V41.8824H158.118V95.3052H144.338H143.338V96.3052V104.188V105.188H144.338H158.118V158.118H105.434V144.092V143.092H104.434H96.5515H95.5515V144.092V158.118H41.8824V105.188H56.6471H57.6471V104.188V96.3052V95.3052H56.6471Z" fill="#00FF00" stroke="#00FF00" stroke-width="2"/>
<defs>
<filter id="filter0_d" x="16.5" y="20.5" width="167" height="169" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

+37
View File
@@ -0,0 +1,37 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g clip-path="url(#clip0)">
<g filter="url(#filter0_d)">
<path d="M146.719 80.7757L159.945 35.335L114.503 48.5605C114.503 48.5605 116.647 57.2776 120.612 64.4036C120.113 64.8608 113.496 71.4665 113.496 71.4665L123.781 81.7516C123.781 81.7516 130.833 74.6431 130.869 74.6634C137.996 78.631 146.719 80.7757 146.719 80.7757Z" fill="#00FF00"/>
<path d="M84.0638 121.533L73.7467 111.216C73.7467 111.216 66.727 118.356 66.6906 118.336C59.5633 114.368 50.8408 112.224 50.8408 112.224L37.6151 157.664L83.0563 144.439C83.0563 144.439 80.9129 135.722 76.9475 128.596C77.4466 128.139 84.0638 121.533 84.0638 121.533Z" fill="#00FF00"/>
<path d="M145.883 84.1745C147.705 84.6224 149.555 83.5548 150.079 81.7538L163.305 36.3131C163.662 35.0867 163.323 33.7633 162.419 32.8601C161.516 31.9569 160.193 31.6175 158.966 31.9744L113.525 45.1999C111.724 45.7241 110.657 47.5748 111.105 49.3962L114.503 48.5605C111.105 49.3962 111.105 49.3966 111.105 49.3971L111.105 49.3982L111.106 49.401L111.108 49.409L111.114 49.4344L111.136 49.5222C111.155 49.5968 111.183 49.7034 111.218 49.8393C111.29 50.111 111.395 50.5005 111.533 50.9874C111.808 51.9602 112.216 53.3272 112.753 54.9246C113.6 57.4456 114.79 60.6087 116.312 63.723C115.711 64.3192 115.04 64.987 114.398 65.6258C113.538 66.4812 112.695 67.3221 112.066 67.949L111.309 68.7042L111.098 68.915L111.042 68.9704L111.028 68.9847L111.024 68.9883L111.023 68.9892L111.023 68.9894C111.023 68.9895 111.023 68.9895 113.496 71.4665L111.023 68.9895C110.366 69.6457 109.996 70.5362 109.996 71.465C109.996 72.3938 110.364 73.2847 111.021 73.9414L121.306 84.2264C121.964 84.8845 122.857 85.2534 123.788 85.2515C124.719 85.2497 125.61 84.8772 126.266 84.2165L123.781 81.7516C126.266 84.2165 126.266 84.2165 126.266 84.2164L126.266 84.2162L126.267 84.2152L126.271 84.2114L126.286 84.1963L126.345 84.137L126.568 83.9118L127.366 83.1078C128.028 82.4423 128.909 81.5556 129.791 80.6698C130.388 80.0704 130.984 79.4728 131.512 78.9451C134.639 80.4776 137.819 81.6741 140.352 82.5251C141.95 83.0621 143.318 83.4707 144.291 83.7462C144.778 83.8842 145.168 83.9892 145.44 84.0607C145.576 84.0965 145.682 84.1239 145.757 84.1429L145.845 84.165L145.87 84.1713L145.878 84.1733L145.881 84.174L145.882 84.1743C145.883 84.1744 145.883 84.1745 146.719 80.7757L145.883 84.1745ZM87.5638 121.534C87.5642 120.606 87.1954 119.715 86.5386 119.058L76.2216 108.741C75.5615 108.081 74.6652 107.712 73.7317 107.716C72.7983 107.72 71.9052 108.096 71.2508 108.762L73.7467 111.216C71.2508 108.762 71.2508 108.762 71.2507 108.762L71.2505 108.762L71.2495 108.763L71.2458 108.767L71.2308 108.782L71.1723 108.842L70.9498 109.068L70.155 109.876C69.497 110.544 68.6196 111.435 67.7413 112.325C67.1502 112.924 66.56 113.521 66.0367 114.049C62.9128 112.519 59.7373 111.324 57.2078 110.474C55.6097 109.937 54.2419 109.529 53.2685 109.253C52.7814 109.115 52.3917 109.01 52.1198 108.939C51.9838 108.903 51.8772 108.875 51.8025 108.857L51.7147 108.834L51.6892 108.828L51.6813 108.826L51.6785 108.825L51.6774 108.825C51.6769 108.825 51.6765 108.825 50.8408 112.224L51.6765 108.825C49.8551 108.377 48.0044 109.445 47.4802 111.246L34.2546 156.686C33.8976 157.913 34.2371 159.236 35.1402 160.139C36.0434 161.042 37.3668 161.382 38.5932 161.025L84.0344 147.799C85.8354 147.275 86.9029 145.425 86.4551 143.603L83.0563 144.439C86.4551 143.603 86.455 143.603 86.4549 143.602L86.4546 143.601L86.4539 143.598L86.4519 143.59L86.4456 143.565L86.4235 143.477C86.4045 143.403 86.3771 143.296 86.3414 143.16C86.2699 142.888 86.1649 142.499 86.0271 142.012C85.7516 141.039 85.3434 139.672 84.8067 138.075C83.9596 135.554 82.77 132.391 81.2473 129.276C81.8485 128.68 82.52 128.012 83.1618 127.374C84.0213 126.518 84.8649 125.677 85.4935 125.05L86.2507 124.295L86.4618 124.084L86.5174 124.029L86.5317 124.015L86.5353 124.011L86.5362 124.01L86.5364 124.01C86.5365 124.01 86.5365 124.01 84.0638 121.533L86.5365 124.01C87.1938 123.354 87.5634 122.463 87.5638 121.534ZM68.3933 115.278L68.393 115.278L68.3933 115.278Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<g filter="url(#filter1_d)">
<path d="M103.013 89.8934C104.542 89.8471 105.744 91.049 105.697 92.578L105.463 100.33C105.416 101.859 104.139 103.136 102.61 103.182L94.8582 103.417C93.3292 103.464 92.1272 102.262 92.1735 100.733L92.4084 92.9807C92.4548 91.4517 93.7319 90.1746 95.2609 90.1283L103.013 89.8934Z" fill="#18A0FB"/>
<path d="M109.196 92.6841C109.303 89.1396 106.451 86.2876 102.907 86.395L95.1549 86.6299C91.776 86.7323 89.0124 89.4959 88.9101 92.8747L88.6751 100.627C88.5677 104.171 91.4198 107.023 94.9642 106.916L102.716 106.681C106.095 106.578 108.859 103.815 108.961 100.436L109.196 92.6841Z" stroke="#0000FF" stroke-width="7"/>
</g>
</g>
<defs>
<filter id="filter0_d" x="26.6149" y="28.3347" width="144.33" height="146.33" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter1_d" x="81.1722" y="82.8921" width="35.5267" height="37.5267" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M88.5498 37.498C85.2559 33.8393 81.0353 31.2939 75.7371 31.6822H75.5308C65.8423 32.5577 58.9924 41.3654 60.6516 50.9989L68.9178 100.641C65.789 98.4255 61.9952 94.6274 59.205 93.371C52.739 90.4593 46.82 90.0923 42.0526 91.5016C32.5179 94.3202 29.6532 103.549 29.6532 103.549L28 108.326L32.1331 111.234C41.2362 117.411 50.4799 132.387 59.205 146.336C63.5676 153.311 67.9055 159.909 72.8443 165.237C77.7831 170.566 83.7036 175.048 91.2367 175L149.72 174.792H156.126L156.333 168.353C156.333 168.353 156.922 156.756 157.986 143.013C159.05 129.271 160.697 113.251 162.532 105.834L172.452 65.7464C175.312 54.7339 166.592 44.1336 155.299 44.9758C151.833 45.1752 148.777 46.7118 146.206 48.7145L146.413 42.691C147.06 32.63 138.858 24.386 128.848 25.036C123.216 25.3863 119.366 29.0375 116.655 33.5519C113.697 22.458 92.7418 21.7743 88.5498 37.4984V37.498Z" fill="#0000FF"/>
</g>
<path d="M102.232 32.0172C97.0131 32.3326 92.558 37.3609 92.8938 42.5569L95.5914 89.4688C95.7262 91.8118 93.6084 92.2926 93.3088 90.5021L86.0461 47.1034C85.3326 42.1949 80.4301 38.2697 75.4633 38.6303C69.9984 39.1197 65.6046 44.8188 66.5406 50.2033L76.5008 109.722C76.534 110.561 76.6728 111.397 76.9159 112.201C76.5261 113.775 76.2937 114.888 76.2937 114.888C43.0927 81.8224 35 105.588 35 105.588C57.5614 120.759 71.2464 168.124 90.6116 168L149.335 167.793C149.335 167.793 151.524 121.137 155.768 104.142L165.728 64.2566C167.322 58.1765 161.645 51.392 155.353 51.857C151.097 52.0997 147.193 55.3689 146.223 59.5034L137.715 93.1891C137.254 95.0172 136.81 94.2841 136.885 92.7758L139.375 42.5573C139.739 36.9478 134.425 31.6552 128.792 32.0176C123.924 32.3178 119.649 36.6697 119.455 41.524L117.172 87.4026C117.056 89.7338 115.445 89.7796 115.304 87.1963L112.814 41.5244C112.604 36.2566 107.515 31.6849 102.232 32.018V32.0172Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="24" y="25" width="153" height="160" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M91.0533 27C86.1976 27 81.439 29.3955 78.4142 33.4317C75.3894 37.4679 73.9155 43.0078 73.9155 49.2966V97.3199C70.1253 94.5133 65.6666 90.2317 62.3475 88.7443C55.6402 85.7387 49.5118 85.149 44.5671 86.6004C34.6777 89.5034 31.4996 99.035 31.4996 99.035L30 103.966L34.2844 106.967C43.7151 113.34 53.2736 128.971 62.3475 143.414C66.8845 150.635 71.3573 157.407 76.4862 162.923C81.615 168.439 87.9468 173.05 95.7662 173L156.177 172.786L162.389 172.572L163.032 166.569L169.887 97.9639C170.904 88.1246 164.942 79.7431 157.248 77.1681C153.534 75.9254 149.274 76.563 145.465 78.2401C142.965 74.4065 139.694 71.5075 135.611 70.522C132.134 69.6827 128.432 70.4232 125.114 71.8083C122.732 68.4041 119.618 65.9258 115.903 64.7335C113.51 63.9657 110.782 64.5605 108.191 64.9474V49.297C108.191 43.0082 106.717 37.4683 103.692 33.4321C100.667 29.3959 95.9086 27.0004 91.0529 27.0004L91.0533 27Z" fill="#0000FF"/>
</g>
<path d="M95.5183 166L156.061 165.607L162.915 96.7201C164.353 82.757 147.134 76.9471 142.354 89.8314C142.416 74.3477 126.566 72.4104 121.793 82.9426C122.391 70.1501 106.219 65.1987 101.232 76.054V48.4996C101.232 27.8335 80.6708 27.8335 80.6708 48.4996V110.498C46.4024 76.0544 38 100.804 38 100.804C61.2868 116.607 75.5304 166.129 95.5183 166Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="26" y="27" width="148" height="156" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

+3 -3
View File
@@ -1,10 +1,10 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d)">
<path d="M57.4356 30.6757L57.3084 139.5C57.3064 141.145 58.6219 142.494 60.2652 142.579C67.1893 142.936 84.7039 144.456 95.9355 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.65 106.757 139.535 104.89 138.326 103.789L57.854 30.4912C57.6936 30.3451 57.4359 30.4587 57.4356 30.6757Z" fill="white"/> <path d="M57.4356 30.6757L57.3084 139.5C57.3064 141.145 58.6219 142.494 60.2652 142.579C67.1893 142.936 84.7039 144.456 95.9355 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.65 106.757 139.535 104.89 138.326 103.789L57.854 30.4912C57.6936 30.3451 57.4359 30.4587 57.4356 30.6757Z" fill="#0000FF"/>
<path d="M53.4356 30.671V30.6711L53.3084 139.495C53.3039 143.333 56.3504 146.382 60.0591 146.573C63.4195 146.747 69.343 147.203 75.7614 148.383C82.2405 149.575 88.9154 151.452 93.9583 154.319C95.8016 155.367 97.2419 156.454 98.5664 157.514C98.7897 157.692 99.0212 157.88 99.2592 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.734 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5475 27.534L60.5475 27.534C57.8201 25.0498 53.44 26.9819 53.4356 30.671Z" stroke="white" stroke-width="8"/> <path d="M53.4356 30.671V30.6711L53.3084 139.495C53.3039 143.333 56.3504 146.382 60.0591 146.573C63.4195 146.747 69.343 147.203 75.7614 148.383C82.2405 149.575 88.9154 151.452 93.9583 154.319C95.8016 155.367 97.2419 156.454 98.5664 157.514C98.7897 157.692 99.0212 157.88 99.2592 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.734 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5475 27.534L60.5475 27.534C57.8201 25.0498 53.44 26.9819 53.4356 30.671Z" stroke="#0000FF" stroke-width="8"/>
</g> </g>
<path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#4D4D4D"/> <path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="45.3083" y="22.4099" width="106.011" height="154.027" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d" x="45.3083" y="22.4099" width="106.011" height="154.027" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <feFlood flood-opacity="0" result="BackgroundImageFix"/>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M71.8702 100.44L119.694 124.336L126.419 104.423H151.576V96.4575H126.419L119.694 76.5445L71.8702 100.44Z" fill="#0000FF"/>
<path d="M48.255 168.144H56.2255V32.7356H48.255V168.144Z" fill="#0000FF"/>
<path d="M70.3058 97.3092C69.1196 97.9019 68.3702 99.1141 68.3702 100.44C68.3702 101.766 69.1196 102.978 70.3058 103.571L118.129 127.467C119.035 127.919 120.092 127.957 121.027 127.572C121.963 127.186 122.686 126.414 123.01 125.456L128.931 107.923H151.576C153.509 107.923 155.076 106.356 155.076 104.423V96.4575C155.076 94.5245 153.509 92.9575 151.576 92.9575H128.931L123.01 75.4246C122.686 74.4658 121.963 73.694 121.027 73.3084C120.092 72.9229 119.035 72.9612 118.129 73.4135L70.3058 97.3092ZM44.755 168.144C44.755 170.077 46.322 171.644 48.255 171.644H56.2255C58.1585 171.644 59.7255 170.077 59.7255 168.144V32.7356C59.7255 30.8026 58.1585 29.2356 56.2255 29.2356H48.255C46.322 29.2356 44.755 30.8026 44.755 32.7356V168.144Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<path d="M71.8702 100.44L119.694 124.336L126.419 104.423H151.576V96.4575H126.419L119.694 76.5445L71.8702 100.44Z" fill="#00FF00"/>
<path d="M48.255 168.144H56.2255V32.7356H48.255V168.144Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="37.255" y="25.7356" width="125.321" height="159.408" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

+32
View File
@@ -0,0 +1,32 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M57.4357 30.6757L57.3084 139.5C57.3065 141.145 58.622 142.494 60.2652 142.579C67.1894 142.936 84.704 144.456 95.9356 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.65 106.757 139.535 104.89 138.326 103.789L57.854 30.4912C57.6936 30.3451 57.436 30.4587 57.4357 30.6757Z" fill="#0000FF"/>
<path d="M53.4357 30.671V30.6711L53.3084 139.495C53.3039 143.333 56.3505 146.382 60.0591 146.573C63.4195 146.747 69.343 147.203 75.7615 148.383C82.2406 149.575 88.9154 151.452 93.9584 154.319C95.8016 155.367 97.242 156.454 98.5664 157.514C98.7898 157.692 99.0212 157.88 99.2593 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.734 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5476 27.534L60.5476 27.534C57.8202 25.0498 53.44 26.9819 53.4357 30.671Z" stroke="#0000FF" stroke-width="8"/>
</g>
<path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#00FF00"/>
<g filter="url(#filter1_d)">
<rect x="77" y="28" width="96" height="96" rx="30" fill="#18C087"/>
</g>
<path d="M105.996 104C105.996 104 105.996 97.4118 105.996 90.8235C105.996 84.2353 112.53 84.2353 112.53 84.2353H125.597V100.706L155 74.3529L125.597 48V64.4706C125.597 64.4706 125.597 64.4706 112.53 64.4706C99.4618 64.4706 86.394 90.8235 105.996 104Z" fill="white"/>
<defs>
<filter id="filter0_d" x="45.3084" y="22.4099" width="106.011" height="154.027" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter1_d" x="73" y="28" width="104" height="106" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M125.979 39.035C120.977 39.3437 117.034 41.9247 114.027 45.4364C108.675 40.0986 102.957 40.7557 101.19 40.8009C94.553 41.2028 90.1675 45.6713 87.4673 51.1757C84.4262 49.3368 81.1278 47.806 77.2861 48.0853C77.2125 48.0842 77.1388 48.0842 77.0651 48.0853C66.7665 49.0088 59.7215 58.2447 61.3507 68.3934V68.6137L63.1214 80.3129C62.9712 80.3836 62.8239 80.4548 62.6787 80.5333C59.2816 83.085 54.144 86.5159 50.2843 92.2325C46.4246 97.949 44.4927 106.388 47.407 115.631C50.5888 125.723 56.5627 136.237 63.3427 144.548C66.7327 148.703 70.3847 152.132 74.1878 154.923C77.991 157.713 81.9609 160.032 87.0249 160L149.661 159.779C153.226 159.786 156.52 156.706 156.743 153.157C156.743 153.157 170.258 130.189 166.261 73.2493V73.029C164.922 57.7287 159.796 50.4458 147.89 51.1757C147.813 51.1804 147.746 51.17 147.669 51.1757C145.891 51.2979 144.615 52.5659 143.021 53.1623C141.104 45.0118 134.878 38.4616 125.979 39.035H125.979Z" fill="#0000FF"/>
</g>
<path d="M101.329 47.894C95.7977 48.2313 91.0753 53.6088 91.4312 59.1656L92.1133 69.0153C92.2865 71.5191 89.9636 72.0426 89.6938 70.1203L88.8387 64.0278C88.0824 58.7784 82.8857 54.5807 77.6209 54.9664C71.8281 55.4897 67.1706 61.5845 68.1627 67.343L71.8773 90.6745C71.9125 91.5724 71.6577 96.1998 71.6577 96.1998L66.8186 86.2542C59.75 91.6036 49.4685 98.4443 54.2044 113.578C59.8094 131.488 76.5711 153.066 86.8347 153L149.082 152.779C161.127 125.96 158.878 100.91 158.76 83.1605L158.682 71.4326C158.64 64.7124 154.354 57.6746 147.684 58.1719C143.172 58.4314 139.035 61.9277 138.006 66.3493L136.764 72.9939C136.394 74.9753 135.738 74.1602 135.885 72.5519L137.28 57.2904C137.666 51.2914 132.032 45.6313 126.062 46.0188C120.901 46.3399 116.37 50.994 116.164 56.1854L114.989 66.8056C114.714 69.2865 113.159 69.3477 113.009 66.585L112.547 58.0614C112.324 52.4277 106.93 47.5386 101.33 47.8948L101.329 47.894Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="42" y="39" width="129" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M144.599 25.0769C142.815 25.2699 141.149 26.0598 139.87 27.3186L39.5577 127.947C38.7327 128.876 38.136 129.985 37.8153 131.185L29.3523 156.592C28.9265 157.976 28.8859 159.451 29.2349 160.857C29.5839 162.264 30.3094 163.548 31.3332 164.573C32.3571 165.597 33.6406 166.323 35.0458 166.672C36.4511 167.022 37.9249 166.981 39.3088 166.555L64.698 158.086C65.8976 157.765 67.0058 157.168 67.9338 156.342L168.246 55.7138C169.014 54.9705 169.624 54.0807 170.041 53.0965C170.458 52.1124 170.673 51.0539 170.673 49.985C170.673 48.916 170.458 47.8581 170.041 46.8739C169.624 45.8897 169.014 44.9994 168.246 44.2561L151.32 27.3186C150.448 26.4515 149.388 25.7981 148.222 25.4092C147.056 25.0203 145.816 24.9065 144.599 25.0769Z" fill="#0000FF"/>
</g>
<path d="M145.595 33.0476L45.2827 133.676L36.8197 159.082L62.2088 150.614L162.521 49.9851L145.595 33.0476ZM145.843 44.5053L151.319 49.9851L140.865 60.4465L135.389 54.9667L145.843 44.5053Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="25" y="25" width="149.673" height="151.907" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

+22
View File
@@ -0,0 +1,22 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<rect x="20" y="20" width="160" height="160" rx="50" fill="url(#paint0_linear)"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M77.4651 139.167C77.4651 143.495 81.1282 147 85.6507 147H116.349C120.871 147 124.534 143.495 124.534 139.167V136.876C124.534 135.036 125.866 133.487 127.664 133.077C137.489 131.628 145 123.5 145 113.709C145 109.303 143.484 105.229 140.907 101.958V88.5638C140.907 68.9211 123.039 53 101 53C78.9601 53 61.0928 68.9211 61.0928 88.5638V101.958C58.5148 105.229 57 109.302 57 113.709C57 123.5 64.5105 131.628 74.3333 133.077C76.1344 133.487 77.4654 135.036 77.4654 136.876V139.167H77.4651ZM73.3719 100C73.3719 94.5954 77.9566 90.2086 83.6046 90.2086C89.2523 90.2086 93.837 94.5954 93.837 100C93.837 105.404 89.2523 109.792 83.6046 109.792C77.9566 109.792 73.3719 105.404 73.3719 100ZM108.162 100C108.162 94.5954 112.747 90.2086 118.395 90.2086C124.043 90.2086 128.628 94.5954 128.628 100C128.628 105.404 124.043 109.792 118.395 109.792C112.747 109.792 108.162 105.404 108.162 100ZM90.9094 120.915L98.1139 114.022C99.7104 112.493 102.289 112.493 103.885 114.022L111.089 120.915C112.643 122.402 112.643 124.812 111.089 126.3C109.533 127.787 107.016 127.787 105.461 126.3L101 122.032L96.5373 126.3C94.9845 127.788 92.4662 127.788 90.9097 126.3C89.3563 124.812 89.3563 122.402 90.9094 120.915Z" fill="white"/>
<defs>
<filter id="filter0_d" x="16" y="20" width="168" height="170" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<linearGradient id="paint0_linear" x1="100" y1="20" x2="100" y2="180" gradientUnits="userSpaceOnUse">
<stop stop-color="#ED1515"/>
<stop offset="1" stop-color="#FF0045"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M79.7853 56.6301V80.5419H55.8896V120.395H79.7853V144.307H119.611V120.395H143.507V80.5419H119.611V56.6301H79.7853Z" fill="#0000FF"/>
<path d="M79.7853 53.1301C77.8523 53.1301 76.2853 54.6971 76.2853 56.6301V77.0419H55.8896C53.9567 77.0419 52.3896 78.6089 52.3896 80.5419V120.395C52.3896 122.328 53.9567 123.895 55.8896 123.895H76.2853V144.307C76.2853 146.24 77.8523 147.807 79.7853 147.807H119.611C121.544 147.807 123.111 146.24 123.111 144.307V123.895H143.507C145.44 123.895 147.007 122.328 147.007 120.395V80.5419C147.007 78.6089 145.44 77.0419 143.507 77.0419H123.111V56.6301C123.111 54.6971 121.544 53.1301 119.611 53.1301H79.7853Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<path d="M79.7853 56.6301V80.5419H55.8896V120.395H79.7853V144.307H119.611V120.395H143.507V80.5419H119.611V56.6301H79.7853Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="44.8896" y="49.6301" width="109.618" height="111.677" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

+3 -3
View File
@@ -1,10 +1,10 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d)">
<path d="M57.4358 30.6757L57.3085 139.5C57.3065 141.145 58.622 142.494 60.2653 142.579C67.1894 142.936 84.7041 144.456 95.9356 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.651 106.757 139.535 104.89 138.326 103.789L57.8541 30.4912C57.6937 30.3451 57.436 30.4587 57.4358 30.6757Z" fill="white"/> <path d="M57.4358 30.6757L57.3085 139.5C57.3065 141.145 58.622 142.494 60.2653 142.579C67.1894 142.936 84.7041 144.456 95.9356 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C123.949 127.16 134.328 113.346 138.623 108.029C139.651 106.757 139.535 104.89 138.326 103.789L57.8541 30.4912C57.6937 30.3451 57.436 30.4587 57.4358 30.6757Z" fill="#0000FF"/>
<path d="M53.4358 30.671V30.6711L53.3085 139.495C53.304 143.333 56.3505 146.382 60.0592 146.573C63.4196 146.747 69.3431 147.203 75.7616 148.383C82.2406 149.575 88.9155 151.452 93.9584 154.319C95.8017 155.367 97.2421 156.454 98.5665 157.514C98.7898 157.692 99.0213 157.88 99.2593 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.735 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5476 27.534L60.5476 27.534C57.8202 25.0498 53.4401 26.9819 53.4358 30.671Z" stroke="white" stroke-width="8"/> <path d="M53.4358 30.671V30.6711L53.3085 139.495C53.304 143.333 56.3505 146.382 60.0592 146.573C63.4196 146.747 69.3431 147.203 75.7616 148.383C82.2406 149.575 88.9155 151.452 93.9584 154.319C95.8017 155.367 97.2421 156.454 98.5665 157.514C98.7898 157.692 99.0213 157.88 99.2593 158.073C100.321 158.935 101.513 159.903 102.697 160.633C104.31 161.629 106.193 162.39 108.537 162.435C110.782 162.477 113.094 161.854 115.606 160.746C118.108 159.642 120.128 158.359 121.584 156.654C123.116 154.86 123.746 152.931 124.023 151.087C124.209 149.844 124.252 148.409 124.29 147.143C124.301 146.763 124.312 146.399 124.326 146.059C124.394 144.421 124.536 142.665 124.998 140.628C126.283 134.959 129.332 128.794 132.729 123.252C136.096 117.758 139.651 113.122 141.735 110.543C144.052 107.674 143.841 103.402 141.019 100.832L60.5476 27.534L60.5476 27.534C57.8202 25.0498 53.4401 26.9819 53.4358 30.671Z" stroke="#0000FF" stroke-width="8"/>
</g> </g>
<path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#4D4D4D"/> <path d="M57.4365 30.1108L57.3074 140.49C57.3061 141.587 58.1752 142.485 59.2712 142.532C65.3462 142.791 84.1186 144.123 95.9357 150.842C104.365 155.635 105.12 161 113.991 157.086C122.863 153.173 118.953 149.2 121.097 139.744C124.099 126.499 135.438 111.893 139.247 107.264C139.94 106.422 139.858 105.184 139.052 104.45L57.4365 30.1108Z" fill="#00FF00"/>
<g filter="url(#filter1_d)"> <g filter="url(#filter1_d)">
<rect x="77" y="28" width="96" height="96" rx="30" fill="#3DAEE9"/> <rect x="77" y="28" width="96" height="96" rx="30" fill="#3DAEE9"/>
</g> </g>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

+3 -3
View File
@@ -1,10 +1,10 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none"> <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d)">
<path d="M137.588 30.6757L137.715 139.5C137.717 141.145 136.402 142.494 134.758 142.579C127.834 142.936 110.32 144.456 99.0879 150.842C90.6588 155.635 89.9039 161 81.0322 157.086C72.1604 153.173 76.0706 149.2 73.9269 139.744C71.0744 127.16 60.6956 113.346 56.4007 108.029C55.373 106.757 55.4887 104.89 56.6977 103.789L137.169 30.4912C137.33 30.3451 137.588 30.4587 137.588 30.6757Z" fill="white"/> <path d="M137.588 30.6757L137.715 139.5C137.717 141.145 136.402 142.494 134.758 142.579C127.834 142.936 110.32 144.456 99.0879 150.842C90.6588 155.635 89.9039 161 81.0322 157.086C72.1604 153.173 76.0706 149.2 73.9269 139.744C71.0744 127.16 60.6956 113.346 56.4007 108.029C55.373 106.757 55.4887 104.89 56.6977 103.789L137.169 30.4912C137.33 30.3451 137.588 30.4587 137.588 30.6757Z" fill="#0000FF"/>
<path d="M141.588 30.671V30.6711L141.715 139.495C141.72 143.333 138.673 146.382 134.964 146.573C131.604 146.747 125.68 147.203 119.262 148.383C112.783 149.575 106.108 151.452 101.065 154.319C99.2219 155.367 97.7815 156.454 96.4571 157.514C96.2337 157.692 96.0023 157.88 95.7642 158.073C94.7024 158.935 93.5103 159.903 92.3267 160.633C90.7132 161.629 88.8306 162.39 86.4867 162.435C84.2412 162.477 81.9292 161.854 79.4178 160.746C76.9152 159.642 74.8959 158.359 73.4393 156.654C71.9072 154.86 71.2771 152.931 71.0007 151.087C70.8144 149.844 70.7716 148.409 70.7337 147.143C70.7224 146.763 70.7115 146.399 70.6973 146.059C70.6291 144.421 70.4876 142.665 70.0259 140.628C68.7409 134.959 65.6914 128.794 62.2943 123.252C58.9271 117.758 55.3721 113.122 53.289 110.543C50.9719 107.674 51.1824 103.402 54.0041 100.832L134.476 27.534L134.476 27.534C137.203 25.0498 141.583 26.9819 141.588 30.671Z" stroke="white" stroke-width="8"/> <path d="M141.588 30.671V30.6711L141.715 139.495C141.72 143.333 138.673 146.382 134.964 146.573C131.604 146.747 125.68 147.203 119.262 148.383C112.783 149.575 106.108 151.452 101.065 154.319C99.2219 155.367 97.7815 156.454 96.4571 157.514C96.2337 157.692 96.0023 157.88 95.7642 158.073C94.7024 158.935 93.5103 159.903 92.3267 160.633C90.7132 161.629 88.8306 162.39 86.4867 162.435C84.2412 162.477 81.9292 161.854 79.4178 160.746C76.9152 159.642 74.8959 158.359 73.4393 156.654C71.9072 154.86 71.2771 152.931 71.0007 151.087C70.8144 149.844 70.7716 148.409 70.7337 147.143C70.7224 146.763 70.7115 146.399 70.6973 146.059C70.6291 144.421 70.4876 142.665 70.0259 140.628C68.7409 134.959 65.6914 128.794 62.2943 123.252C58.9271 117.758 55.3721 113.122 53.289 110.543C50.9719 107.674 51.1824 103.402 54.0041 100.832L134.476 27.534L134.476 27.534C137.203 25.0498 141.583 26.9819 141.588 30.671Z" stroke="#0000FF" stroke-width="8"/>
</g> </g>
<path d="M137.587 30.1108L137.716 140.49C137.717 141.587 136.848 142.485 135.752 142.532C129.677 142.791 110.905 144.123 99.0879 150.842C90.6588 155.635 89.9039 161 81.0321 157.086C72.1603 153.173 76.0705 149.2 73.9269 139.744C70.9247 126.499 59.5852 111.893 55.7765 107.264C55.0838 106.422 55.1658 105.184 55.9718 104.45L137.587 30.1108Z" fill="#4D4D4D"/> <path d="M137.587 30.1108L137.716 140.49C137.717 141.587 136.848 142.485 135.752 142.532C129.677 142.791 110.905 144.123 99.0879 150.842C90.6588 155.635 89.9039 161 81.0321 157.086C72.1603 153.173 76.0705 149.2 73.9269 139.744C70.9247 126.499 59.5852 111.893 55.7765 107.264C55.0838 106.422 55.1658 105.184 55.9718 104.45L137.587 30.1108Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="43.7045" y="22.4099" width="106.011" height="154.027" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d" x="43.7045" y="22.4099" width="106.011" height="154.027" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <feFlood flood-opacity="0" result="BackgroundImageFix"/>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M127.961 100.44L80.1374 76.5441L73.4127 96.4572H48.255V104.422H73.4127L80.1374 124.335L127.961 100.44Z" fill="#0000FF"/>
<path d="M151.576 32.7358H143.606V168.144H151.576V32.7358Z" fill="#0000FF"/>
<path d="M129.525 103.571C130.712 102.978 131.461 101.766 131.461 100.44C131.461 99.1137 130.712 97.9016 129.525 97.3088L81.7018 73.4132C80.7965 72.9608 79.7397 72.9225 78.8039 73.3081C77.8682 73.6937 77.1452 74.4654 76.8214 75.4243L70.9005 92.9572H48.255C46.322 92.9572 44.755 94.5242 44.755 96.4572V104.422C44.755 106.355 46.322 107.922 48.255 107.922H70.9005L76.8214 125.455C77.1452 126.414 77.8682 127.186 78.8039 127.571C79.7397 127.957 80.7965 127.919 81.7018 127.466L129.525 103.571ZM155.076 32.7358C155.076 30.8028 153.509 29.2358 151.576 29.2358H143.606C141.673 29.2358 140.106 30.8028 140.106 32.7358V168.144C140.106 170.077 141.673 171.644 143.606 171.644H151.576C153.509 171.644 155.076 170.077 155.076 168.144V32.7358Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<path d="M127.961 100.44L80.1374 76.5441L73.4127 96.4572H48.255V104.422H73.4127L80.1374 124.335L127.961 100.44Z" fill="#00FF00"/>
<path d="M151.576 32.7358H143.606V168.144H151.576V32.7358Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="37.255" y="25.7358" width="125.321" height="159.408" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<path d="M29 103.974C29 105.907 30.567 107.474 32.5 107.474H92.7505V118.592L75.1379 124.497C74.1754 124.82 73.4004 125.545 73.014 126.484C72.6275 127.422 72.6677 128.483 73.1241 129.389L97.1241 177.074C97.7187 178.255 98.9281 179 100.25 179C101.573 179 102.782 178.255 103.377 177.074L127.377 129.389C127.833 128.483 127.873 127.422 127.487 126.484C127.101 125.545 126.326 124.82 125.363 124.497L107.75 118.592V107.474H168.5C170.433 107.474 172 105.907 172 103.974V96.0263C172 94.0933 170.433 92.5263 168.5 92.5263H107.75V81.4078L125.363 75.5027C126.326 75.18 127.101 74.4552 127.487 73.5165C127.873 72.5778 127.833 71.5175 127.377 70.6107L103.377 22.9265C102.782 21.7453 101.573 21 100.25 21C98.9281 21 97.7187 21.7453 97.1241 22.9265L73.1241 70.6107C72.6677 71.5175 72.6275 72.5778 73.014 73.5165C73.4004 74.4552 74.1754 75.18 75.1379 75.5027L92.7505 81.4078V92.5263H32.5C30.567 92.5263 29 94.0933 29 96.0263V103.974Z" fill="#0000FF" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32.5 103.974H96.2505V121.11L76.2505 127.816L100.25 175.5L124.25 127.816L104.25 121.11V103.974H168.5V96.0263H104.25V78.8898L124.25 72.1842L100.25 24.5L76.2505 72.1842L96.2505 78.8898V96.0263H32.5V103.974Z" fill="#00FF00"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<path d="M97.4321 167.685C98.0469 168.804 99.2227 169.5 100.5 169.5C101.777 169.5 102.953 168.804 103.568 167.685L127.068 124.889C127.971 123.245 127.417 121.182 125.812 120.211L124 123.205C125.812 120.211 125.812 120.21 125.812 120.21L125.811 120.209L125.808 120.208L125.801 120.203L125.777 120.189L125.694 120.14C125.652 120.115 125.601 120.084 125.539 120.048C125.495 120.022 125.446 119.993 125.392 119.962C125.132 119.81 124.757 119.595 124.284 119.331C123.338 118.804 121.995 118.081 120.384 117.285C117.804 116.011 114.463 114.513 110.934 113.35C110.933 113.11 110.932 112.854 110.931 112.583C110.925 110.452 110.924 107.404 110.926 103.741C110.931 96.4827 110.949 86.8241 110.967 77.1234L110.967 76.8533C110.986 67.0636 111.004 57.2533 111.008 49.8533C111.01 46.1539 111.009 43.0527 111.003 40.8564C111 39.7594 110.995 38.8811 110.989 38.2646C110.986 37.9582 110.983 37.7044 110.978 37.5164C110.976 37.4251 110.973 37.3303 110.97 37.2455C110.968 37.2054 110.965 37.1432 110.959 37.0737C110.958 37.0514 110.955 37.0189 110.951 36.9795C110.949 36.9636 110.948 36.9474 110.946 36.931C110.931 36.7868 110.907 36.6285 110.869 36.4587C110.793 36.1168 110.665 35.7376 110.46 35.3435C110.039 34.5327 109.37 33.8019 108.455 33.214C106.722 32.1014 104.117 31.5 100.244 31.5C96.3699 31.5 93.7657 32.1014 92.0326 33.214C91.1169 33.8019 90.4482 34.5327 90.0272 35.3435C89.8226 35.7376 89.6943 36.1168 89.6183 36.4587C89.5805 36.6285 89.556 36.7868 89.5411 36.931C89.5398 36.9433 89.5386 36.9554 89.5375 36.9674C89.5336 37.0043 89.5308 37.035 89.529 37.0572C89.523 37.1291 89.5195 37.1935 89.5174 37.2358C89.5131 37.3245 89.51 37.4226 89.5077 37.5163C89.5029 37.709 89.4989 37.967 89.4955 38.2764C89.4887 38.8992 89.4837 39.7834 89.4802 40.8854C89.4731 43.092 89.4719 46.2026 89.4746 49.9104C89.4799 57.313 89.5006 67.1144 89.5212 76.8971L89.5213 76.9541C89.542 86.7576 89.5627 96.5375 89.5677 103.87C89.5702 107.536 89.5689 110.586 89.5617 112.719C89.5607 113.003 89.5597 113.27 89.5585 113.52C86.1304 114.686 82.9063 116.146 80.4176 117.383C78.862 118.156 77.5679 118.855 76.6581 119.364C76.2027 119.618 75.8424 119.825 75.5925 119.971C75.4675 120.044 75.37 120.102 75.3019 120.142L75.2221 120.19L75.1991 120.204L75.1919 120.208L75.1894 120.209L75.1884 120.21C75.188 120.21 75.1876 120.211 77 123.205L75.1876 120.211C73.583 121.182 73.0293 123.245 73.9321 124.889L97.4321 167.685Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M100.5 166L77 123.205C77 123.205 84.9272 118.407 93.0206 116.102C93.1871 116.054 92.856 37.9968 93.0206 37.3186C93.0206 37.3186 93.0206 35 100.244 35C107.467 35 107.467 37.3186 107.467 37.3186C107.614 37.9124 107.321 115.92 107.467 115.959C115.735 118.202 124 123.205 124 123.205L100.5 166Z" fill="#00FF00"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

+32
View File
@@ -0,0 +1,32 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M53.7635 73.7204L12.28 96.4999L53.7637 119.28C53.7637 119.28 58.412 111.6 60.6469 103.757C61.3231 103.787 70.6731 103.795 70.6731 103.795V89.25C70.6731 89.25 60.6603 89.2901 60.6489 89.25C58.4147 81.4046 53.7635 73.7204 53.7635 73.7204Z" fill="#00FF00"/>
<path d="M126.887 89.2046V103.795C126.887 103.795 136.9 103.71 136.911 103.75C139.145 111.595 143.797 119.279 143.797 119.279L185.28 96.4999L143.796 73.72C143.796 73.72 139.148 81.3995 136.913 89.2423C136.237 89.2127 126.887 89.2046 126.887 89.2046Z" fill="#00FF00"/>
<path d="M53.7635 73.7204L56.7577 71.908C55.7864 70.3034 53.7229 69.7497 52.0788 70.6525L10.5954 93.432C9.47581 94.0468 8.78003 95.2226 8.78003 96.4999C8.78003 97.7771 9.4758 98.953 10.5954 99.5678L52.079 122.348C53.7231 123.251 55.7867 122.697 56.7579 121.092L53.7637 119.28C56.7579 121.092 56.7581 121.092 56.7584 121.091L56.759 121.09L56.7605 121.088L56.7647 121.081L56.7782 121.058L56.8246 120.981C56.864 120.915 56.92 120.82 56.9908 120.698C57.1324 120.456 57.3336 120.106 57.5804 119.664C58.0735 118.782 58.7515 117.526 59.5014 116.017C60.6851 113.636 62.0806 110.558 63.206 107.279C64.0527 107.283 64.9997 107.285 65.9053 107.287C67.1178 107.29 68.309 107.292 69.1968 107.293L70.2662 107.295L70.5645 107.295L70.643 107.295L70.6632 107.295L70.6683 107.295L70.6696 107.295H70.6699C70.67 107.295 70.6701 107.295 70.6731 103.795L70.6701 107.295C71.5988 107.296 72.4899 106.928 73.1469 106.271C73.8039 105.615 74.1731 104.724 74.1731 103.795V89.25C74.1731 88.3193 73.8024 87.4269 73.143 86.7701C72.4836 86.1134 71.5897 85.7463 70.6591 85.75L70.6731 89.25C70.6591 85.75 70.659 85.75 70.659 85.75L70.6586 85.75L70.6573 85.75L70.6519 85.75L70.6306 85.7501L70.5471 85.7504L70.2298 85.7516L69.0967 85.7556C68.1587 85.7587 66.9084 85.7625 65.6582 85.765C64.8123 85.7667 63.9683 85.7678 63.2219 85.7678C62.0942 82.4727 60.6916 79.378 59.5026 76.9855C58.7523 75.4758 58.074 74.2197 57.5806 73.3366C57.3337 72.8946 57.1324 72.5447 56.9907 72.3019C56.9198 72.1805 56.8638 72.0857 56.8244 72.0195L56.778 71.9417L56.7645 71.9193L56.7602 71.9122L56.7588 71.9098L56.7582 71.9088C56.7579 71.9084 56.7577 71.908 53.7635 73.7204ZM126.89 85.7046C125.961 85.7038 125.07 86.0722 124.413 86.7287C123.756 87.3851 123.387 88.2758 123.387 89.2046V103.795C123.387 104.729 123.76 105.623 124.423 106.281C125.086 106.938 125.983 107.303 126.917 107.295L126.887 103.795C126.917 107.295 126.917 107.295 126.917 107.295H126.917L126.919 107.295L126.924 107.295L126.945 107.295L127.029 107.294L127.346 107.291L128.479 107.282C129.417 107.275 130.667 107.266 131.918 107.257C132.759 107.252 133.599 107.247 134.342 107.244C135.469 110.534 136.87 113.625 138.057 116.014C138.808 117.524 139.486 118.78 139.979 119.663C140.226 120.105 140.428 120.455 140.569 120.698C140.64 120.819 140.696 120.914 140.736 120.98L140.782 121.058L140.796 121.081L140.8 121.088L140.801 121.09L140.802 121.091C140.802 121.091 140.802 121.092 143.797 119.279L140.802 121.092C141.774 122.696 143.837 123.25 145.481 122.347L186.965 99.5678C188.084 98.953 188.78 97.7772 188.78 96.4999C188.78 95.2226 188.084 94.0468 186.965 93.432L145.481 70.6521C143.837 69.7493 141.773 70.303 140.802 71.9076L143.796 73.72C140.802 71.9076 140.802 71.908 140.802 71.9084L140.801 71.9094L140.8 71.9118L140.795 71.9189L140.782 71.9413L140.735 72.0191C140.696 72.0853 140.64 72.18 140.569 72.3013C140.428 72.544 140.226 72.8936 139.98 73.3354C139.487 74.218 138.809 75.4734 138.059 76.9824C136.875 79.3639 135.479 82.4418 134.354 85.7206C133.507 85.7171 132.56 85.7145 131.655 85.7124C130.442 85.7095 129.251 85.7076 128.363 85.7063L127.294 85.705L126.996 85.7047L126.917 85.7046L126.897 85.7046L126.892 85.7046L126.89 85.7046L126.89 85.7046C126.89 85.7046 126.89 85.7046 126.887 89.2046L126.89 85.7046ZM133.545 104.708L133.545 104.708L133.545 104.708Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<g filter="url(#filter1_d)">
<path d="M91.1155 98.1781C90.0015 97.1297 90.0015 95.4299 91.1155 94.3814L96.763 89.0661C97.877 88.0177 99.6831 88.0177 100.797 89.0661L106.445 94.3814C107.559 95.4299 107.559 97.1297 106.445 98.1781L100.797 103.493C99.6831 104.542 97.877 104.542 96.763 103.493L91.1155 98.1781Z" fill="#18A0FB"/>
<path d="M88.7167 91.8327C86.1345 94.2631 86.1345 98.2965 88.7167 100.727L94.3643 106.042C96.8259 108.359 100.734 108.359 103.196 106.042L108.843 100.727C111.426 98.2965 111.426 94.2631 108.843 91.8327L103.196 86.5174C100.734 84.2006 96.8259 84.2006 94.3643 86.5174L88.7167 91.8327Z" stroke="#0000FF" stroke-width="7"/>
</g>
<defs>
<filter id="filter0_d" x="1.28003" y="66.719" width="195" height="69.5619" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter1_d" x="79.28" y="81.2798" width="39" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 5.9 KiB

+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<path d="M33.3152 97.4319C32.1957 98.0467 31.4999 99.2225 31.4999 100.5C31.4999 101.777 32.1957 102.953 33.3152 103.568L76.1105 127.068C77.7546 127.97 79.8181 127.417 80.7893 125.812L77.7951 124C80.7893 125.812 80.7896 125.812 80.7898 125.811L80.7904 125.81L80.792 125.808L80.7965 125.8L80.8108 125.776L80.8603 125.693C80.9024 125.623 80.9623 125.521 81.0381 125.391C81.1897 125.131 81.405 124.757 81.6688 124.284C82.1959 123.338 82.9193 121.995 83.715 120.383C84.9894 117.803 86.4864 114.463 87.6503 110.933C87.8901 110.932 88.1459 110.931 88.4169 110.931C90.5483 110.924 93.5959 110.923 97.2592 110.926C104.517 110.93 114.176 110.948 123.876 110.967L124.147 110.967C133.936 110.985 143.747 111.004 151.147 111.008C154.846 111.01 157.947 111.009 160.143 111.003C161.24 110.999 162.119 110.995 162.735 110.989C163.042 110.986 163.295 110.982 163.483 110.978C163.575 110.976 163.67 110.973 163.754 110.969C163.772 110.969 163.794 110.968 163.818 110.966C163.85 110.964 163.887 110.962 163.926 110.959C163.949 110.957 163.981 110.955 164.02 110.951C164.036 110.949 164.053 110.948 164.069 110.946C164.213 110.931 164.371 110.907 164.541 110.869C164.883 110.793 165.262 110.664 165.656 110.46C166.467 110.039 167.198 109.37 167.786 108.454C168.898 106.721 169.5 104.117 169.5 100.243C169.5 96.3697 168.898 93.7654 167.786 92.0324C167.198 91.1167 166.467 90.4479 165.656 90.0269C165.262 89.8223 164.883 89.6941 164.541 89.618C164.371 89.5802 164.213 89.5558 164.069 89.5408C164.056 89.5395 164.043 89.5382 164.031 89.537C163.995 89.5332 163.965 89.5306 163.943 89.5287C163.871 89.5227 163.806 89.5192 163.764 89.5172C163.675 89.5128 163.577 89.5098 163.484 89.5074C163.291 89.5026 163.033 89.4986 162.724 89.4953C162.101 89.4885 161.216 89.4835 160.114 89.4799C157.908 89.4729 154.797 89.4717 151.089 89.4743C143.687 89.4796 133.885 89.5003 124.103 89.521L124.046 89.5211C114.242 89.5418 104.462 89.5624 97.1302 89.5675C93.4634 89.57 90.4137 89.5686 88.2809 89.5614C87.9969 89.5605 87.7298 89.5594 87.4801 89.5583C86.3135 86.1302 84.8534 82.906 83.6166 80.4174C82.8435 78.8618 82.1446 77.5676 81.6363 76.6578C81.382 76.2025 81.1746 75.8422 81.0288 75.5923C80.9559 75.4673 80.8983 75.3698 80.8578 75.3017L80.8101 75.2218L80.7962 75.1988L80.7919 75.1917L80.7904 75.1892L80.7898 75.1882C80.7896 75.1878 80.7893 75.1874 77.7951 76.9998L80.7893 75.1874C79.8181 73.5828 77.7546 73.0291 76.1105 73.9319L33.3152 97.4319Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M34.9999 100.5L77.7951 76.9998C77.7951 76.9998 82.5933 84.927 84.8981 93.0203C84.9456 93.1869 163.003 92.8558 163.681 93.0203C163.681 93.0203 166 93.0203 166 100.243C166 107.466 163.681 107.466 163.681 107.466C163.087 107.614 85.0802 107.321 85.0407 107.466C82.7981 115.734 77.7951 124 77.7951 124L34.9999 100.5Z" fill="#00FF00"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<path d="M167.685 103.568C168.804 102.953 169.5 101.777 169.5 100.5C169.5 99.2227 168.804 98.0469 167.685 97.4321L124.889 73.9321C123.245 73.0293 121.182 73.583 120.211 75.1876L123.205 77C120.211 75.1876 120.21 75.188 120.21 75.1885L120.209 75.1895L120.208 75.192L120.203 75.1994L120.189 75.2233L120.14 75.3063C120.097 75.3771 120.038 75.4785 119.962 75.6085C119.81 75.8684 119.595 76.2431 119.331 76.7163C118.804 77.6616 118.081 79.0052 117.285 80.6163C116.011 83.1963 114.513 86.5366 113.35 90.0665C113.11 90.0674 112.854 90.0683 112.583 90.0691C110.452 90.0753 107.404 90.0764 103.741 90.074C96.4849 90.0694 86.8302 90.0514 77.1325 90.0332L76.8533 90.0327C67.0636 90.0144 57.2533 89.9962 49.8533 89.9917C46.1539 89.9895 43.0527 89.9907 40.8564 89.9971C39.7594 90.0003 38.8811 90.0048 38.2646 90.0109C37.9582 90.0139 37.7044 90.0175 37.5164 90.0217C37.4251 90.0238 37.3303 90.0265 37.2455 90.0303C37.2054 90.0321 37.1432 90.0352 37.0737 90.0407C37.0514 90.0424 37.0189 90.0451 36.9794 90.0491C36.9635 90.0506 36.9474 90.0522 36.931 90.0538C36.7868 90.0688 36.6285 90.0933 36.4587 90.131C36.1168 90.2071 35.7376 90.3354 35.3435 90.54C34.5327 90.9609 33.8019 91.6297 33.214 92.5454C32.1014 94.2785 31.5 96.8827 31.5 100.756C31.5 104.63 32.1014 107.234 33.214 108.967C33.8019 109.883 34.5327 110.552 35.3435 110.973C35.7376 111.177 36.1168 111.306 36.4587 111.382C36.6285 111.42 36.7868 111.444 36.931 111.459C36.9438 111.46 36.9565 111.462 36.9691 111.463C37.0052 111.467 37.0353 111.469 37.0572 111.471C37.1291 111.477 37.1935 111.481 37.2358 111.483C37.3245 111.487 37.4226 111.49 37.5163 111.492C37.709 111.497 37.967 111.501 38.2764 111.504C38.8992 111.511 39.7834 111.516 40.8854 111.52C43.092 111.527 46.2026 111.528 49.9104 111.525C57.311 111.52 67.109 111.499 76.889 111.479L76.9541 111.479C86.7576 111.458 96.5375 111.437 103.87 111.432C107.536 111.43 110.586 111.431 112.719 111.438C113.003 111.439 113.27 111.44 113.52 111.442C114.686 114.87 116.146 118.094 117.383 120.582C118.156 122.138 118.855 123.432 119.364 124.342C119.618 124.797 119.825 125.158 119.971 125.407C120.044 125.532 120.102 125.63 120.142 125.698L120.19 125.778L120.204 125.801L120.208 125.808L120.209 125.811L120.21 125.812C120.21 125.812 120.211 125.812 123.205 124L120.211 125.812C121.182 127.417 123.245 127.971 124.889 127.068L167.685 103.568Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M166 100.5L123.205 124C123.205 124 118.407 116.073 116.102 107.979C116.054 107.813 37.9968 108.144 37.3186 107.979C37.3186 107.979 35 107.979 35 100.756C35 93.5334 37.3186 93.5334 37.3186 93.5334C37.9124 93.3862 115.92 93.6788 115.959 93.5334C118.202 85.2655 123.205 77 123.205 77L166 100.5Z" fill="#00FF00"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<path d="M103.568 33.3153C102.953 32.1958 101.777 31.5 100.5 31.5C99.2227 31.5 98.0469 32.1958 97.4321 33.3153L73.9321 76.1106C73.0293 77.7547 73.583 79.8182 75.1876 80.7895L77 77.7952C75.1876 80.7895 75.188 80.7897 75.1885 80.7899L75.1895 80.7906L75.192 80.7921L75.1994 80.7966L75.2233 80.8109L75.3063 80.8605C75.3771 80.9025 75.4785 80.9624 75.6085 81.0382C75.8684 81.1898 76.2431 81.4051 76.7163 81.6689C77.6616 82.196 79.0052 82.9194 80.6163 83.7151C83.1963 84.9895 86.5366 86.4866 90.0665 87.6504C90.0674 87.8903 90.0683 88.146 90.0691 88.417C90.0753 90.5485 90.0764 93.596 90.074 97.2593C90.0694 104.515 90.0513 114.17 90.0332 123.867L90.0327 124.147C90.0144 133.936 89.9962 143.747 89.9917 151.147C89.9895 154.846 89.9907 157.947 89.9971 160.144C90.0003 161.241 90.0048 162.119 90.0109 162.735C90.0139 163.042 90.0175 163.296 90.0217 163.484C90.0238 163.575 90.0265 163.67 90.0303 163.755C90.0321 163.795 90.0352 163.857 90.0407 163.926C90.0424 163.949 90.0451 163.981 90.0491 164.021C90.0506 164.037 90.0522 164.053 90.0538 164.069C90.0688 164.213 90.0933 164.371 90.131 164.541C90.2071 164.883 90.3354 165.262 90.54 165.656C90.9609 166.467 91.6297 167.198 92.5454 167.786C94.2785 168.899 96.8827 169.5 100.756 169.5C104.63 169.5 107.234 168.899 108.967 167.786C109.883 167.198 110.552 166.467 110.973 165.656C111.177 165.262 111.306 164.883 111.382 164.541C111.42 164.371 111.444 164.213 111.459 164.069C111.46 164.057 111.461 164.045 111.463 164.033C111.466 163.996 111.469 163.965 111.471 163.943C111.477 163.871 111.481 163.807 111.483 163.764C111.487 163.675 111.49 163.577 111.492 163.484C111.497 163.291 111.501 163.033 111.504 162.724C111.511 162.101 111.516 161.217 111.52 160.115C111.527 157.908 111.528 154.797 111.525 151.09C111.52 143.686 111.499 133.884 111.479 124.1L111.479 124.046C111.458 114.242 111.437 104.462 111.432 97.1303C111.43 93.4636 111.431 90.4138 111.438 88.2811C111.439 87.997 111.44 87.7299 111.442 87.4802C114.87 86.3136 118.094 84.8535 120.582 83.6167C122.138 82.8436 123.432 82.1447 124.342 81.6365C124.797 81.3821 125.158 81.1748 125.407 81.0289C125.532 80.956 125.63 80.8984 125.698 80.8579L125.778 80.8102L125.801 80.7964L125.808 80.792L125.811 80.7905L125.812 80.7899C125.812 80.7897 125.812 80.7895 124 77.7952L125.812 80.7895C127.417 79.8182 127.971 77.7547 127.068 76.1106L103.568 33.3153Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M100.5 35L124 77.7952C124 77.7952 116.073 82.5934 107.979 84.8983C107.813 84.9457 108.144 163.003 107.979 163.681C107.979 163.681 107.979 166 100.756 166C93.5334 166 93.5334 163.681 93.5334 163.681C93.3862 163.088 93.6788 85.0803 93.5334 85.0408C85.2655 82.7982 77 77.7952 77 77.7952L100.5 35Z" fill="#00FF00"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

+32
View File
@@ -0,0 +1,32 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M121.559 51.4834L98.7799 10L76 51.4837C76 51.4837 83.6795 56.1319 91.5223 58.3669C91.4927 59.043 91.4846 68.3931 91.4846 68.3931H106.03C106.03 68.3931 105.99 58.3803 106.03 58.3688C113.875 56.1346 121.559 51.4834 121.559 51.4834Z" fill="#00FF00"/>
<path d="M106.075 124.607H98.5H91.4846C91.4846 124.607 91.5701 134.62 91.53 134.631C83.6847 136.865 76.0004 141.517 76.0004 141.517L98.7799 183L121.56 141.516C121.56 141.516 113.88 136.868 106.037 134.633C106.067 133.957 106.075 124.607 106.075 124.607Z" fill="#00FF00"/>
<path d="M121.559 51.4834L123.372 54.4777C124.976 53.5064 125.53 51.4429 124.627 49.7988L101.848 8.31535C101.233 7.19578 100.057 6.5 98.7799 6.5C97.5027 6.5 96.3268 7.19577 95.712 8.31533L72.9321 49.799C72.0293 51.4431 72.583 53.5066 74.1877 54.4779L76 51.4837C74.1877 54.4779 74.188 54.4781 74.1884 54.4784L74.1894 54.479L74.1919 54.4804L74.1989 54.4847L74.2213 54.4982L74.2991 54.5446C74.3653 54.584 74.46 54.6399 74.5814 54.7108C74.824 54.8524 75.1736 55.0535 75.6154 55.3004C76.4981 55.7935 77.7534 56.4714 79.2624 57.2214C81.644 58.4051 84.7219 59.8006 88.0006 60.926C87.9971 61.7727 87.9945 62.7197 87.9924 63.6252C87.9895 64.8378 87.9876 66.0289 87.9864 66.9167L87.985 67.9862L87.9847 68.2845L87.9847 68.363L87.9846 68.3832L87.9846 68.3883L87.9846 68.3896L87.9846 68.3899C87.9846 68.39 87.9846 68.39 91.4846 68.3931L87.9846 68.39C87.9838 69.3188 88.3522 70.2098 89.0087 70.8669C89.6652 71.5239 90.5559 71.8931 91.4846 71.8931H106.03C106.961 71.8931 107.853 71.5224 108.51 70.863C109.166 70.2035 109.534 69.3097 109.53 68.379L106.03 68.3931C109.53 68.379 109.53 68.379 109.53 68.3789V68.3786L109.53 68.3773L109.53 68.3719L109.53 68.3505L109.529 68.267L109.528 67.9498L109.524 66.8167C109.521 65.8787 109.517 64.6284 109.515 63.3782C109.513 62.5323 109.512 61.6883 109.512 60.9419C112.807 59.8141 115.902 58.4116 118.294 57.2226C119.804 56.4723 121.06 55.794 121.943 55.3006C122.385 55.0536 122.735 54.8523 122.978 54.7107C123.099 54.6398 123.194 54.5838 123.26 54.5444L123.338 54.498L123.361 54.4845L123.368 54.4802L123.37 54.4787L123.371 54.4781C123.371 54.4779 123.372 54.4777 121.559 51.4834ZM109.575 124.61C109.576 123.681 109.208 122.79 108.551 122.133C107.895 121.476 107.004 121.107 106.075 121.107H98.5H91.4846C90.5512 121.107 89.6564 121.48 88.9992 122.143C88.342 122.806 87.9768 123.703 87.9848 124.637L91.4846 124.607C87.9848 124.637 87.9848 124.637 87.9848 124.637L87.9848 124.637L87.9848 124.639L87.9848 124.644L87.985 124.665L87.9857 124.749L87.9883 125.066L87.9975 126.199C88.0048 127.137 88.0143 128.387 88.0224 129.638C88.0279 130.479 88.0328 131.319 88.0362 132.062C84.7455 133.189 81.6552 134.59 79.2656 135.777C77.7558 136.528 76.4998 137.206 75.6166 137.699C75.1746 137.946 74.8248 138.148 74.582 138.289C74.4605 138.36 74.3658 138.416 74.2995 138.456L74.2217 138.502L74.1993 138.516L74.1923 138.52L74.1898 138.521L74.1888 138.522C74.1884 138.522 74.188 138.522 76.0004 141.517L74.188 138.522C72.5834 139.494 72.0297 141.557 72.9325 143.201L95.712 184.685C96.3268 185.804 97.5026 186.5 98.7799 186.5C100.057 186.5 101.233 185.804 101.848 184.685L124.628 143.201C125.531 141.557 124.977 139.493 123.372 138.522L121.56 141.516C123.372 138.522 123.372 138.522 123.371 138.522L123.37 138.521L123.368 138.52L123.361 138.515L123.339 138.502L123.261 138.455C123.195 138.416 123.1 138.36 122.978 138.289C122.736 138.148 122.386 137.946 121.944 137.7C121.062 137.207 119.806 136.529 118.297 135.779C115.916 134.595 112.838 133.199 109.559 132.074C109.563 131.227 109.565 130.28 109.567 129.375C109.57 128.162 109.572 126.971 109.573 126.083L109.575 125.014L109.575 124.716L109.575 124.637L109.575 124.617L109.575 124.612V124.61V124.61C109.575 124.61 109.575 124.61 106.075 124.607L109.575 124.61ZM90.5717 131.265L90.5714 131.265L90.5717 131.265Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<g filter="url(#filter1_d)">
<path d="M97.1017 88.8355C98.1501 87.7215 99.8499 87.7215 100.898 88.8355L106.214 94.483C107.262 95.597 107.262 97.403 106.214 98.517L100.898 104.165C99.8499 105.278 98.1501 105.278 97.1017 104.165L91.7863 98.517C90.7379 97.403 90.7379 95.597 91.7863 94.483L97.1017 88.8355Z" fill="#18A0FB"/>
<path d="M106.214 98.517L108.762 100.916L103.447 106.563C101.017 109.146 96.9833 109.146 94.553 106.563L89.2376 100.916C86.9208 98.4541 86.9208 94.5459 89.2376 92.0842L94.553 86.4367C96.9833 83.8544 101.017 83.8544 103.447 86.4367M106.214 98.517L103.447 86.4367M106.214 98.517L108.762 100.916C111.079 98.4541 111.079 94.5459 108.762 92.0842L103.447 86.4367M106.214 98.517L103.447 86.4367" stroke="#0000FF" stroke-width="7"/>
</g>
<defs>
<filter id="filter0_d" x="64.999" y="3" width="67.5619" height="197" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter1_d" x="80" y="81" width="38" height="41" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M87.7852 89.7969L138.475 106.705L129.147 125.551L146.924 143.339L141.291 148.975L123.515 131.187L104.682 140.521L87.7852 89.7969Z" fill="#0000FF"/>
<path d="M52.186 50.2336V137.91H60.1512V58.2042H139.803V50.2336H52.186Z" fill="#0000FF"/>
<path d="M88.8926 86.4767C87.635 86.0572 86.2484 86.3843 85.3108 87.3215C84.3732 88.2587 84.0456 89.6453 84.4645 90.903L101.361 141.627C101.681 142.588 102.402 143.363 103.336 143.752C104.271 144.141 105.329 144.106 106.236 143.657L122.816 135.439L138.816 151.449C139.472 152.106 140.363 152.475 141.291 152.475C142.22 152.475 143.111 152.106 143.767 151.449L149.4 145.813C150.765 144.446 150.765 142.232 149.399 140.865L133.398 124.853L141.612 108.257C142.061 107.35 142.095 106.293 141.706 105.359C141.317 104.425 140.543 103.705 139.583 103.385L88.8926 86.4767ZM52.186 46.7336C50.253 46.7336 48.686 48.3006 48.686 50.2336V137.91C48.686 139.843 50.253 141.41 52.186 141.41H60.1512C62.0842 141.41 63.6512 139.843 63.6512 137.91V61.7042H139.803C141.736 61.7042 143.303 60.1372 143.303 58.2042V50.2336C143.303 48.3006 141.736 46.7336 139.803 46.7336H52.186Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<path d="M87.7852 89.7969L138.475 106.705L129.147 125.551L146.924 143.339L141.291 148.975L123.515 131.187L104.682 140.521L87.7852 89.7969Z" fill="#00FF00"/>
<path d="M52.186 50.2336V137.91H60.1512V58.2042H139.803V50.2336H52.186Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="41.186" y="43.2336" width="116.738" height="122.742" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M111.325 89.7971L60.6345 106.705L69.9629 125.551L52.186 143.339L57.8184 148.976L75.5952 131.187L94.428 140.521L111.325 89.7971Z" fill="#0000FF"/>
<path d="M146.924 50.2339V137.91H138.959V58.2045H59.3067V50.2339H146.924Z" fill="#0000FF"/>
<path d="M114.645 90.9032C115.064 89.6455 114.737 88.259 113.799 87.3218C112.861 86.3845 111.475 86.0575 110.217 86.4769L59.527 103.385C58.567 103.705 57.7925 104.425 57.4035 105.359C57.0144 106.294 57.0488 107.351 57.4977 108.258L65.7121 124.853L49.7104 140.865C48.3446 142.232 48.3446 144.447 49.7103 145.813L55.3427 151.45C55.9991 152.107 56.8897 152.476 57.8184 152.476C58.7471 152.476 59.6377 152.107 60.2941 151.45L76.2937 135.439L92.8737 143.657C93.781 144.107 94.8386 144.141 95.7734 143.752C96.7082 143.363 97.4286 142.588 97.7486 141.627L114.645 90.9032ZM150.424 50.2339C150.424 48.3009 148.857 46.7339 146.924 46.7339H59.3067C57.3737 46.7339 55.8067 48.3009 55.8067 50.2339V58.2045C55.8067 60.1375 57.3737 61.7045 59.3067 61.7045H135.459V137.91C135.459 139.843 137.026 141.41 138.959 141.41H146.924C148.857 141.41 150.424 139.843 150.424 137.91V50.2339Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<path d="M111.325 89.7971L60.6345 106.705L69.9629 125.551L52.186 143.339L57.8184 148.976L75.5952 131.187L94.428 140.521L111.325 89.7971Z" fill="#00FF00"/>
<path d="M146.924 50.2339V137.91H138.959V58.2045H59.3067V50.2339H146.924Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="41.186" y="43.2339" width="116.738" height="122.742" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M99.9154 72.3945L76.0197 120.218L95.9327 126.943V152.101H103.898V126.943L123.811 120.218L99.9154 72.3945Z" fill="#0000FF"/>
<path d="M32.2114 48.7793V56.7498H167.62V48.7793H32.2114Z" fill="#0000FF"/>
<path d="M103.046 70.8301C102.454 69.6439 101.241 68.8945 99.9154 68.8945C98.5893 68.8945 97.3771 69.6439 96.7844 70.8301L72.8888 118.654C72.4364 119.559 72.3981 120.616 72.7837 121.552C73.1693 122.487 73.941 123.21 74.8999 123.534L92.4327 129.455V152.101C92.4327 154.034 93.9997 155.601 95.9327 155.601H103.898C105.831 155.601 107.398 154.034 107.398 152.101V129.455L124.931 123.534C125.89 123.21 126.661 122.487 127.047 121.552C127.433 120.616 127.394 119.559 126.942 118.654L103.046 70.8301ZM32.2114 45.2793C30.2784 45.2793 28.7114 46.8463 28.7114 48.7793V56.7498C28.7114 58.6828 30.2784 60.2498 32.2114 60.2498H167.62C169.553 60.2498 171.12 58.6828 171.12 56.7498V48.7793C171.12 46.8463 169.553 45.2793 167.62 45.2793H32.2114Z" stroke="#0000FF" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<path d="M99.9154 72.3945L76.0197 120.218L95.9327 126.943V152.101H103.898V126.943L123.811 120.218L99.9154 72.3945Z" fill="#00FF00"/>
<path d="M32.2114 48.7793V56.7498H167.62V48.7793H32.2114Z" fill="#00FF00"/>
<defs>
<filter id="filter0_d" x="21.2114" y="41.7793" width="157.408" height="127.321" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<path d="M32.6431 122.353C31.2624 122.353 30.1431 121.233 30.1431 119.853V105.913C30.1431 104.596 30.6162 103.426 31.1332 102.519C31.6594 101.597 32.3262 100.783 32.9346 100.133C32.9806 100.084 33.0264 100.035 33.0722 99.9873C33.0349 99.9494 32.9975 99.9111 32.9601 99.8723C31.8197 98.6889 30.1431 96.5772 30.1431 93.9656V80.0265C30.1431 78.6458 31.2624 77.5265 32.6431 77.5265H40.6137C41.979 77.5265 43.0918 78.6219 43.1133 79.987C43.1133 79.987 43.1133 79.987 43.1133 79.987C43.1134 79.9872 43.1134 79.9873 43.1134 79.9875C43.1134 79.9875 43.1134 79.9875 43.1134 79.9875L43.1134 79.9879L43.1135 79.9941L43.114 80.0231C43.1145 80.0498 43.1154 80.0909 43.1167 80.1455C43.1193 80.2548 43.1237 80.418 43.1307 80.6273C43.1448 81.0463 43.1692 81.6485 43.2107 82.3726C43.294 83.827 43.4446 85.7443 43.7118 87.6434C43.9842 89.5792 44.3573 91.3397 44.8334 92.5576C45.006 92.9992 45.1606 93.2855 45.274 93.4569H155.512C155.626 93.2855 155.78 92.9992 155.953 92.5576C156.429 91.3397 156.802 89.5792 157.074 87.6434C157.342 85.7443 157.492 83.827 157.576 82.3726C157.617 81.6485 157.641 81.0463 157.655 80.6273C157.662 80.418 157.667 80.2548 157.67 80.1455C157.671 80.0909 157.672 80.0498 157.672 80.0231L157.673 79.9941L157.673 79.9879L157.673 79.9875C157.673 79.9873 157.673 79.9871 157.673 79.987C157.694 78.6219 158.807 77.5265 160.173 77.5265H168.143C169.524 77.5265 170.643 78.6458 170.643 80.0265V93.9656C170.643 94.4009 170.529 94.8287 170.313 95.2066C169.452 96.7126 168.321 98.3029 167.438 99.4809C167.406 99.5242 167.373 99.5671 167.341 99.6094C167.509 99.7742 167.68 99.949 167.852 100.133C168.46 100.783 169.127 101.597 169.653 102.519C170.17 103.426 170.643 104.596 170.643 105.913V119.853C170.643 121.233 169.524 122.353 168.143 122.353H160.173C158.807 122.353 157.694 121.257 157.673 119.892C157.673 119.892 157.673 119.892 157.673 119.892L157.673 119.891L157.673 119.885L157.672 119.856C157.672 119.841 157.671 119.821 157.671 119.796C157.671 119.778 157.67 119.757 157.67 119.734C157.667 119.624 157.662 119.461 157.655 119.252C157.641 118.833 157.617 118.231 157.575 117.507C157.492 116.052 157.341 114.135 157.074 112.236C156.802 110.3 156.429 108.539 155.953 107.321C155.78 106.88 155.626 106.594 155.512 106.422H45.274C45.1606 106.594 45.006 106.88 44.8334 107.321C44.3573 108.539 43.9842 110.3 43.7118 112.236C43.4446 114.135 43.294 116.052 43.2107 117.506C43.1692 118.231 43.1448 118.833 43.1307 119.252C43.1237 119.461 43.1193 119.624 43.1167 119.734C43.1154 119.788 43.1145 119.829 43.114 119.856L43.1135 119.885L43.1134 119.891L43.1134 119.892C43.1134 119.892 43.1134 119.892 43.1133 119.892M32.6431 122.353L40.6137 119.853C43.1134 119.892 43.1134 119.892 43.1133 119.892M32.6431 122.353H40.6137C41.979 122.353 43.0918 121.257 43.1133 119.892M32.6431 122.353L43.1133 119.892" stroke="#0000FF" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32.6431 119.853H40.6137C40.6137 119.853 40.8623 103.922 44.848 103.922H155.938C159.923 103.922 160.173 119.853 160.173 119.853H168.143V105.913C168.143 103.018 163.909 99.9395 163.909 99.9395C163.909 99.9395 166.574 96.7091 168.143 93.9656V80.0265H160.173C160.173 80.0265 159.924 95.9569 155.938 95.9569H44.848C40.8623 95.9569 40.6137 80.0265 40.6137 80.0265H32.6431V93.9656C32.6431 97.1254 36.8774 99.9395 36.8774 99.9395C36.8774 99.9395 32.6431 103.018 32.6431 105.913V119.853Z" fill="#00FF00"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

+22
View File
@@ -0,0 +1,22 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<rect x="20" y="20" width="160" height="160" rx="50" fill="url(#paint0_linear)"/>
</g>
<path d="M119.055 58C118.353 58 117.811 58.5353 117.811 59.2279C117.811 59.9205 118.353 60.4558 119.055 60.4558C119.757 60.4558 120.3 59.9205 120.3 59.2279C120.3 58.5353 119.757 58 119.055 58ZM136.202 58.1362C134.442 57.7502 130.313 59.561 130.118 61.6834C129.922 63.8058 129.379 70.1462 128.597 72.4616L123.342 88.0149H115.598L122.374 89.3792C122.374 89.3792 119.747 96.7038 119.747 98.2473C119.747 99.7909 117.267 108.207 116.289 108.207C115.312 108.207 108.36 94.8559 107.577 92.9264C106.795 90.997 103.954 81.3862 101.216 81.1933C98.4785 81.0003 97.0204 84.4482 96.2382 86.3777C95.4559 88.3072 90.2781 102.124 88.9091 101.931C87.5402 101.738 84.3458 89.3986 84.3458 87.4691C84.3458 85.5397 83.7926 80.5111 83.7926 80.5111L86.1435 76.8274L82.2715 77.2364L81.5801 73.5528L83.2395 72.5977L81.3035 71.9156C81.3035 71.9156 79.1581 67.1033 77.9847 65.3668C76.8113 63.6303 74.9425 61.6831 74.9425 61.6831C74.9425 61.6831 80.2921 63.1605 81.8567 62.7746C83.4211 62.3887 87.1491 61.4337 88.9091 61.8196C90.6692 62.2055 94.7547 62.0125 96.5148 61.8196C98.2749 61.6266 100.387 60.7281 100.387 60.7281C100.387 60.7281 98.9859 58.1593 95.2702 58.5452C91.5545 58.9311 91.2796 60.046 89.324 60.046C87.3684 60.046 84.3417 58.4088 81.9949 58.4088C79.6482 58.4088 75.7918 59.547 73.8362 60.3188C71.8806 61.0906 69.749 64.5295 71.9002 79.9651C74.0514 95.4006 69.7392 95.6571 72.8682 103.568C75.9972 111.479 75.8335 121.435 77.9847 124.715C80.1359 127.995 86.3194 132.219 88.0794 132.219C89.8395 132.219 91.746 126.985 92.9194 118.303C94.0927 109.62 96.7341 110.122 96.9296 106.842C97.1252 103.562 99.7665 94.234 100.94 94.4269C102.113 94.6199 102.751 100.368 104.12 103.841C105.489 107.314 104.286 111.23 107.024 117.211C109.762 123.192 111.116 125.288 111.311 127.989C111.507 130.691 113.48 134.185 115.045 133.992C116.609 133.799 121.673 124.974 122.65 123.623C123.628 122.273 125.416 120.622 125.416 120.622L124.448 118.985L128.044 117.075L126.384 115.983L128.597 114.346L126.661 113.527L130.394 108.207L127.352 106.979C127.352 106.979 129.369 105.973 129.565 102.886C129.76 99.7987 129.416 96.2297 130.394 93.3355C131.372 90.4413 133.99 83.3057 133.99 82.148C133.99 80.9904 138 71.5063 138 71.5063L135.373 73.007C135.373 73.007 137.962 58.5218 136.202 58.1359V58.1362ZM103.291 58.409C102.643 58.409 102.184 58.8611 102.184 59.5005C102.184 60.1399 102.643 60.7284 103.291 60.7284C103.939 60.7284 104.535 60.1399 104.535 59.5005C104.535 58.8611 103.939 58.409 103.291 58.409ZM112.971 61.0012C112.215 61.0012 111.588 61.6197 111.588 62.3656C111.588 63.1115 112.215 63.7299 112.971 63.7299C113.727 63.7299 114.353 63.1115 114.353 62.3656C114.353 61.6197 113.727 61.0012 112.971 61.0012ZM107.854 64.9578C107.854 64.9578 105.685 67.244 104.12 67.8229C102.556 68.4017 101.732 68.3824 99.9719 69.7329C98.2118 71.0835 98.5948 69.698 95.2702 70.2787C91.9456 70.8575 91.3983 73.4166 91.3983 73.4166C92.1805 73.4166 93.5674 73.9389 95.1319 73.5528C96.6965 73.1668 97.4156 72.1981 98.589 71.2334C99.7624 70.2687 102.742 69.526 105.088 68.3683C107.435 67.2106 107.854 64.9575 107.854 64.9575V64.9578ZM109.375 72.1887C108.457 72.1887 107.577 72.9201 107.577 73.8259C107.577 74.7317 108.457 75.4631 109.375 75.4631C110.293 75.4631 111.035 74.7317 111.035 73.8259C111.035 72.9201 110.293 72.1887 109.375 72.1887ZM120.3 73.0073C119.76 73.0073 119.332 73.4295 119.332 73.9623C119.332 74.4951 119.76 74.9174 120.3 74.9174C120.84 74.9174 121.268 74.4952 121.268 73.9623C121.268 73.4295 120.84 73.0073 120.3 73.0073ZM115.46 77.646C114.596 77.646 113.939 78.2943 113.939 79.1468C113.939 79.9992 114.596 80.784 115.46 80.784C116.324 80.784 116.981 79.9992 116.981 79.1468C116.981 78.2943 116.324 77.646 115.46 77.646ZM133.298 106.024C132.65 106.024 132.054 106.476 132.054 107.115C132.054 107.755 132.65 108.343 133.298 108.343C133.946 108.343 134.405 107.755 134.405 107.115C134.405 106.476 133.946 106.024 133.298 106.024Z" fill="white"/>
<defs>
<filter id="filter0_d" x="16" y="20" width="168" height="170" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<linearGradient id="paint0_linear" x1="100" y1="20" x2="100" y2="180" gradientUnits="userSpaceOnUse">
<stop stop-color="#2EAFBB"/>
<stop offset="1" stop-color="#2C2F78"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<path d="M77.9801 32.1895C77.9801 30.8087 79.0994 29.6895 80.4801 29.6895H94.4192C95.7362 29.6895 96.907 30.1626 97.8132 30.6796C98.7354 31.2058 99.5497 31.8726 100.2 32.481C100.249 32.5269 100.298 32.5728 100.345 32.6185C100.383 32.5812 100.422 32.5439 100.46 32.5065C101.644 31.3661 103.755 29.6895 106.367 29.6895H120.306C121.687 29.6895 122.806 30.8087 122.806 32.1895V40.16C122.806 41.5254 121.711 42.6382 120.346 42.6597C120.345 42.6597 120.345 42.6597 120.345 42.6597C120.345 42.6597 120.345 42.6597 120.345 42.6597L120.345 42.6597L120.339 42.6599L120.31 42.6604C120.283 42.6609 120.242 42.6618 120.187 42.6631C120.078 42.6657 119.915 42.6701 119.705 42.6771C119.286 42.6911 118.684 42.7156 117.96 42.7571C116.506 42.8404 114.588 42.991 112.689 43.2582C110.753 43.5306 108.993 43.9037 107.775 44.3798C107.333 44.5524 107.047 44.707 106.876 44.8204V155.059C107.047 155.172 107.333 155.327 107.775 155.499C108.993 155.975 110.753 156.348 112.689 156.621C114.588 156.888 116.506 157.039 117.96 157.122C118.684 157.163 119.286 157.188 119.705 157.202C119.915 157.209 120.078 157.213 120.187 157.216C120.242 157.217 120.283 157.218 120.31 157.219L120.339 157.219L120.345 157.219L120.345 157.219C120.345 157.219 120.346 157.219 120.346 157.219C121.711 157.241 122.806 158.354 122.806 159.719V167.69C122.806 169.07 121.687 170.19 120.306 170.19H106.367C105.932 170.19 105.504 170.076 105.126 169.86C103.62 168.999 102.03 167.867 100.852 166.984C100.808 166.952 100.766 166.92 100.723 166.888C100.558 167.055 100.384 167.226 100.2 167.398C99.5497 168.006 98.7354 168.673 97.8132 169.199C96.907 169.716 95.7362 170.19 94.4192 170.19H80.4801C79.0994 170.19 77.9801 169.07 77.9801 167.69V159.719C77.9801 158.354 79.0755 157.241 80.4405 157.219C80.4406 157.219 80.4406 157.219 80.4406 157.219C80.4407 157.219 80.4409 157.219 80.441 157.219L80.4415 157.219L80.4476 157.219L80.4766 157.219C80.5033 157.218 80.5445 157.217 80.5991 157.216C80.7084 157.213 80.8716 157.209 81.0809 157.202C81.4998 157.188 82.1021 157.163 82.8261 157.122C84.2806 157.038 86.1979 156.888 88.0969 156.621C90.0328 156.348 91.7933 155.975 93.0112 155.499C93.4528 155.326 93.7391 155.172 93.9105 155.058V44.8204C93.7391 44.707 93.4528 44.5524 93.0112 44.3798C91.7933 43.9037 90.0329 43.5306 88.097 43.2582C86.1979 42.991 84.2806 42.8404 82.8262 42.7571C82.1021 42.7156 81.4999 42.6911 81.081 42.6771C80.8716 42.6701 80.7084 42.6657 80.5991 42.6631C80.5445 42.6618 80.5034 42.6609 80.4767 42.6604L80.4477 42.6599L80.4415 42.6597L80.4411 42.6597C80.4409 42.6597 80.4408 42.6597 80.4407 42.6597M77.9801 32.1895L80.4801 40.16C80.4411 42.6597 80.4408 42.6597 80.4407 42.6597M77.9801 32.1895V40.16C77.9801 41.5254 79.0755 42.6382 80.4407 42.6597M77.9801 32.1895L80.4407 42.6597" stroke="#0000FF" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M80.4801 32.1895V40.16C80.4801 40.16 96.4105 40.4087 96.4105 44.3944V155.485C96.4105 159.47 80.4801 159.719 80.4801 159.719V167.69H94.4192C97.315 167.69 100.393 163.455 100.393 163.455C100.393 163.455 103.624 166.121 106.367 167.69H120.306V159.719C120.306 159.719 104.376 159.47 104.376 155.485V44.3944C104.376 40.4087 120.306 40.16 120.306 40.16V32.1895H106.367C103.207 32.1895 100.393 36.4238 100.393 36.4238C100.393 36.4238 97.315 32.1895 94.4192 32.1895H80.4801Z" fill="#00FF00"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M86.2988 29C58.599 29 36 51.6482 36 79.4084C36 107.169 58.599 129.817 86.2988 129.817C94.7687 129.817 102.421 127.219 109.352 123.516L111.239 125.406C110.592 126.033 110.078 126.784 109.727 127.613C109.376 128.443 109.195 129.335 109.195 130.237C109.195 131.138 109.376 132.03 109.727 132.86C110.078 133.69 110.592 134.441 111.239 135.068L138.065 161.952C138.69 162.6 139.439 163.115 140.267 163.467C141.095 163.819 141.986 164 142.885 164C143.784 164 144.675 163.819 145.503 163.467C146.331 163.115 147.08 162.6 147.705 161.952L161.957 147.67C162.603 147.043 163.117 146.292 163.468 145.462C163.819 144.632 164 143.74 164 142.839C164 141.938 163.819 141.045 163.468 140.216C163.117 139.386 162.603 138.635 161.957 138.008L135.131 111.124C133.875 109.88 132.181 109.182 130.415 109.182C128.649 109.182 126.955 109.88 125.7 111.124L124.861 110.284C131.76 101.699 136.598 91.3129 136.598 79.4084C136.598 51.6482 113.999 29 86.2988 29Z" fill="#0000FF"/>
</g>
<path d="M86.4286 36C62.4436 36 43 55.495 43 79.5433C43 103.592 62.4436 123.087 86.4286 123.087C95.5279 123.087 103.879 120.137 110.857 115.341L120.879 125.389L116.077 130.204L142.802 157L157 142.765L130.275 115.969L125.473 120.574L116.077 111.154C124.501 103.212 129.857 92.0519 129.857 79.5433C129.857 55.495 110.414 36 86.4286 36Z" fill="#00FF00"/>
<path d="M81.8957 52V75.9118H58V83.8824H81.8957V107.794H89.8609V83.8824H113.757V75.9118H89.8609V52H81.8957Z" fill="#0000FF"/>
<defs>
<filter id="filter0_d" x="32" y="29" width="136" height="145" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" fill="none">
<g filter="url(#filter0_d)">
<path d="M86.2988 29C58.599 29 36 51.6482 36 79.4084C36 107.169 58.599 129.817 86.2988 129.817C94.7687 129.817 102.421 127.219 109.352 123.516L111.239 125.406C110.592 126.033 110.078 126.784 109.727 127.613C109.376 128.443 109.195 129.335 109.195 130.237C109.195 131.138 109.376 132.03 109.727 132.86C110.078 133.69 110.592 134.441 111.239 135.068L138.065 161.952C138.69 162.6 139.439 163.115 140.267 163.467C141.095 163.819 141.986 164 142.885 164C143.784 164 144.675 163.819 145.503 163.467C146.331 163.115 147.08 162.6 147.705 161.952L161.957 147.67C162.603 147.043 163.117 146.292 163.468 145.462C163.819 144.632 164 143.74 164 142.839C164 141.938 163.819 141.045 163.468 140.216C163.117 139.386 162.603 138.635 161.957 138.008L135.131 111.124C133.875 109.88 132.181 109.182 130.415 109.182C128.649 109.182 126.955 109.88 125.7 111.124L124.861 110.284C131.76 101.699 136.598 91.3129 136.598 79.4084C136.598 51.6482 113.999 29 86.2988 29Z" fill="#0000FF"/>
</g>
<path d="M86.4286 36C62.4436 36 43 55.495 43 79.5433C43 103.592 62.4436 123.087 86.4286 123.087C95.5279 123.087 103.879 120.137 110.857 115.341L120.879 125.389L116.077 130.204L142.802 157L157 142.765L130.275 115.969L125.473 120.574L116.077 111.154C124.501 103.212 129.857 92.0519 129.857 79.5433C129.857 55.495 110.414 36 86.4286 36Z" fill="#00FF00"/>
<path d="M113 76H60V84H113V76Z" fill="#0000FF"/>
<defs>
<filter id="filter0_d" x="32" y="29" width="136" height="145" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="2"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB