Merge pull request #65 from ful1e5/dev

v1.2.2 🎊
This commit is contained in:
Kaiz Khatri 2021-10-31 13:53:29 +05:30 committed by GitHub
commit 54ec9fa80d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
48 changed files with 494 additions and 551 deletions

View file

@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [unreleased] ## [unreleased]
## [v1.2.2] - 31 Oct 2021
### Added
- Rounded pointer tail #63
- make binaries inside sub directory `make preapre`
### Changed
- soft shadows in all cursors #62
- fixed some cursor size #64
- cursor preview updated
- project description changed
## [v1.2.1] - 14 Oct 2021 ## [v1.2.1] - 14 Oct 2021
### Added ### Added

View file

@ -6,7 +6,6 @@ clean:
render: bitmapper svg render: bitmapper svg
@cd bitmapper && $(MAKE) @cd bitmapper && $(MAKE)
build: bitmaps build: bitmaps
@cd builder && make build @cd builder && make build
@ -61,11 +60,16 @@ reinstall: uninstall install
BIN_DIR = ../bin BIN_DIR = ../bin
THEMES = White THEMES = White
prepare: bitmaps themes prepare: bitmaps themes
@rm -rf bin && mkdir bin @rm -rf bin
@cd bitmaps && zip -r $(BIN_DIR)/bitmaps.zip * && cd .. @mkdir -p bin/macOSBigSur
@cd themes @$(foreach theme,$(THEMES), mkdir -p bin/macOSBigSur-$(theme);)
@tar -czvf $(BIN_DIR)/macOSBigSur.tar.gz macOSBigSur @cd bitmaps
@zip -r $(BIN_DIR)/macOSBigSur-Windows.zip macOSBigSur-Windows @zip -r $(BIN_DIR)/macOSBigSur/bitmaps.zip macOSBigSur
@$(foreach theme,$(THEMES), tar -czvf $(BIN_DIR)/macOSBigSur-$(theme).tar.gz macOSBigSur-$(theme);) @$(foreach theme,$(THEMES), zip -r $(BIN_DIR)/macOSBigSur-$(theme)/bitmaps.zip macOSBigSur-$(theme);)
@$(foreach theme,$(THEMES), zip -r $(BIN_DIR)/macOSBigSur-$(theme)-Windows.zip macOSBigSur-$(theme)-Windows;) @cd ..
@cd themes
@tar -czvf $(BIN_DIR)/macOSBigSur/macOSBigSur.tar.gz macOSBigSur
@zip -r $(BIN_DIR)/macOSBigSur/macOSBigSur-Windows.zip macOSBigSur-Windows
@$(foreach theme,$(THEMES), tar -czvf $(BIN_DIR)/macOSBigSur-$(theme)/macOSBigSur-$(theme).tar.gz macOSBigSur-$(theme);)
@$(foreach theme,$(THEMES), zip -r $(BIN_DIR)/macOSBigSur-$(theme)/macOSBigSur-$(theme)-Windows.zip macOSBigSur-$(theme)-Windows;)
@cd .. @cd ..

View file

@ -4,7 +4,7 @@
</p> </p>
<p align="center"> <p align="center">
🍎 macOS Cursor Theme 🍎 Naked macOS Cursors
</p> </p>
<!-- Badges --> <!-- Badges -->
@ -122,13 +122,13 @@ sudo mv macOSBigSur /usr/share/icons/
<!-- Preview --> <!-- Preview -->
<p align="center"> <p align="center">
<img title="macOSBigSur" src="https://imgur.com/JWdEEmD.png"> <img title="macOSBigSur" src="https://imgur.com/Q022eSp.png">
</br> </br>
<sub>macOSBigSur Cursors 🍎</sub> <sub>macOSBigSur Cursors 🍎</sub>
</p> </p>
<p align="center"> <p align="center">
<img title="macOSBigSur White" src="https://imgur.com/isFs6UM.png"> <img title="macOSBigSur White" src="https://imgur.com/SFVR945.png">
</br> </br>
<sub>macOSBigSur White Cursors 🍎</sub> <sub>macOSBigSur White Cursors 🍎</sub>
</p> </p>

View file

@ -1,6 +1,6 @@
{ {
"name": "apple_cursor_bitmapper", "name": "apple_cursor_bitmapper",
"version": "1.2.1", "version": "1.2.2",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"render": "yarn ts-node src/index.ts" "render": "yarn ts-node src/index.ts"

View file

@ -29,15 +29,15 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = {
"crosshair.png": {"xhot": 100, "yhot": 100}, "crosshair.png": {"xhot": 100, "yhot": 100},
"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": 94, "yhot": 72}, "hand1.png": {"xhot": 98, "yhot": 66},
"hand2.png": {"xhot": 67, "yhot": 46}, "hand2.png": {"xhot": 69, "yhot": 44},
"left_ptr.png": {"xhot": 53, "yhot": 13}, "left_ptr.png": {"xhot": 53, "yhot": 13},
"left_side.png": {"xhot": 100, "yhot": 100}, "left_side.png": {"xhot": 100, "yhot": 100},
"left_tee.png": {"xhot": 100, "yhot": 100}, "left_tee.png": {"xhot": 100, "yhot": 100},
"link.png": {"xhot": 120, "yhot": 55}, "link.png": {"xhot": 120, "yhot": 55},
"ll_angle.png": {"xhot": 100, "yhot": 100}, "ll_angle.png": {"xhot": 100, "yhot": 100},
"lr_angle.png": {"xhot": 100, "yhot": 100}, "lr_angle.png": {"xhot": 100, "yhot": 100},
"move.png": {"xhot": 80, "yhot": 71}, "move.png": {"xhot": 107, "yhot": 85},
"pencil.png": {"xhot": 81, "yhot": 117}, "pencil.png": {"xhot": 81, "yhot": 117},
"plus.png": {"xhot": 98, "yhot": 100}, "plus.png": {"xhot": 98, "yhot": 100},
"question_arrow.png": {"xhot": 99, "yhot": 99}, "question_arrow.png": {"xhot": 99, "yhot": 99},
@ -53,10 +53,10 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = {
"top_tee.png": {"xhot": 100, "yhot": 100}, "top_tee.png": {"xhot": 100, "yhot": 100},
"ul_angle.png": {"xhot": 100, "yhot": 100}, "ul_angle.png": {"xhot": 100, "yhot": 100},
"ur_angle.png": {"xhot": 100, "yhot": 100}, "ur_angle.png": {"xhot": 100, "yhot": 100},
"vertical-text.png": {"xhot": 96, "yhot": 99}, "vertical-text.png": {"xhot": 103, "yhot": 99},
"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": 104}, "xterm.png": {"xhot": 99, "yhot": 103},
"zoom-in.png": {"xhot": 100, "yhot": 100}, "zoom-in.png": {"xhot": 100, "yhot": 100},
"zoom-out.png": {"xhot": 100, "yhot": 100}, "zoom-out.png": {"xhot": 100, "yhot": 100},
############ ############

View file

@ -1,48 +1,48 @@
<?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_42)">
<circle cx="99" cy="99" r="89" fill="white" fill-opacity="0.46"/> <circle cx="99" cy="99" r="71" fill="white" fill-opacity="0.46"/>
</g> </g>
<g> <g>
<animateTransform attributeName="transform" type="rotate" from="0 99 99" to="360 99 99" additive="sum" begin="0s" dur="0.6s" repeatCount="1"/> <animateTransform attributeName="transform" type="rotate" from="0 99 99" to="360 99 99" additive="sum" begin="0s" dur="0.6s" repeatCount="1"/>
<path d="M35.7225 161.763C19.5726 145.709 10 123.042 10 98.5764C10 90.5352 11.0787 82.7438 13.1003 75.3366C13.1087 75.3317 13.1171 75.3268 13.1255 75.3218C43.1759 57.6981 82.1647 67.9605 99.5144 98.4857C65.2276 98.4857 36.3935 127.079 35.7225 161.763Z" fill="url(#paint0_linear)"/> <path d="M48.4023 149C35.5927 136.164 28 118.04 28 98.4785C28 92.0491 28.8556 85.8194 30.4591 79.8969C30.4658 79.893 30.4724 79.8891 30.4791 79.8851C54.3141 65.7939 85.2388 73.9993 99 98.406C71.8048 98.406 48.9345 121.268 48.4023 149Z" fill="url(#paint0_linear_42)"/>
<path d="M35.7229 161.625C35.7229 161.615 35.7229 161.604 35.7229 161.594C35.7229 126.74 64.9368 98.4858 99.2868 98.4858C82.1115 128.67 90.9361 167.266 120.684 184.693C120.829 184.778 120.975 185.344 121.122 185.428C113.814 187.419 106.131 188 98.2017 188C73.7646 188 51.6562 177.911 35.7229 161.625Z" fill="url(#paint1_linear)"/> <path d="M49 149.08C49 149.072 49 149.063 49 149.055C49 121.41 72.2619 99 99.6136 99C85.9376 122.941 92.9643 153.554 116.651 167.376C116.767 167.444 116.884 167.893 117 167.96C111.181 169.539 105.063 170 98.7496 170C79.2912 170 61.6871 161.998 49 149.08Z" fill="url(#paint1_linear_42)"/>
<path d="M121.121 185.428C91.6056 167.706 81.7985 128.663 99 98.4858C116.325 128.879 154.793 139.293 184.8 121.745C184.838 121.723 185.25 121.767 185.288 121.745C177.153 152.642 152.079 177.397 121.121 185.428Z" fill="url(#paint2_linear)"/> <path d="M116.535 168C92.8619 153.935 84.996 122.95 98.7926 99C112.688 123.121 143.541 131.386 167.609 117.459C167.639 117.442 167.97 117.477 168 117.459C161.475 141.98 141.365 161.627 116.535 168Z" fill="url(#paint2_linear_42)"/>
<path d="M184.99 122.871C186.953 115.426 188 107.598 188 99.5204C188 74.563 178.005 51.9859 161.873 35.7229C161.453 70.9669 133.211 98.4859 99 98.4859C116.239 129.344 154.869 140.844 184.728 123.028C184.815 122.976 184.903 122.924 184.99 122.871Z" fill="url(#paint3_linear)"/> <path d="M167.599 118.188C169.165 112.277 170 106.062 170 99.6492C170 79.8354 162.026 61.9113 149.157 49C148.822 76.9804 126.292 98.8279 99 98.8279C112.752 123.326 143.57 132.456 167.39 118.312C167.46 118.271 167.529 118.229 167.599 118.188Z" fill="url(#paint3_linear_42)"/>
<path d="M162.277 36.4003C162.053 70.7272 133.308 98.4855 99 98.4855C116.223 68.5923 106.912 30.368 77.081 13.109C77.0136 13.07 76.9462 12.611 76.8787 12.5723C84.1354 10.6202 91.7603 10 99.6257 10C124.13 10 146.3 20.0986 162.277 36.4003Z" fill="url(#paint4_linear)"/> <path d="M149 49.1834C148.821 76.727 125.933 99 98.6145 99C112.329 75.0139 104.914 44.3431 81.1611 30.4947C81.1074 30.4634 81.0537 30.095 81 30.064C86.7783 28.4977 92.8497 28 99.1126 28C118.625 28 136.278 36.103 149 49.1834Z" fill="url(#paint4_linear_42)"/>
<path d="M13.0867 75.825C21.4288 45.1392 45.909 20.5293 76.8786 12.572C106.441 30.1284 116.584 68.6749 99.3473 98.4853C82.0448 67.9686 43.0512 58.1819 13.1118 75.8102C13.1034 75.8151 13.0951 75.82 13.0867 75.825Z" fill="url(#paint5_linear)"/> <path d="M30 80.8007C36.6973 56.1559 56.3504 36.3908 81.2135 30C104.947 44.1002 113.09 75.0582 99.2519 99C85.3611 74.491 54.0561 66.6309 30.0202 80.7888C30.0135 80.7928 30.0067 80.7967 30 80.8007Z" fill="url(#paint5_linear_42)"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="2" y="2" width="194" height="194" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_42" x="20" y="20" width="158" height="158" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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"/> <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" result="hardAlpha"/>
<feOffset/> <feOffset/>
<feGaussianBlur stdDeviation="4"/> <feGaussianBlur stdDeviation="4"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_42"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_42" result="shape"/>
</filter> </filter>
<linearGradient id="paint0_linear" x1="46.5939" y1="66.7608" x2="46.5939" y2="187.325" gradientUnits="userSpaceOnUse"> <linearGradient id="paint0_linear_42" x1="57.0252" y1="73.04" x2="57.0252" y2="169.439" gradientUnits="userSpaceOnUse">
<stop stop-color="#52CF30"/> <stop stop-color="#52CF30"/>
<stop offset="1" stop-color="#3BBD1C"/> <stop offset="1" stop-color="#3BBD1C"/>
</linearGradient> </linearGradient>
<linearGradient id="paint1_linear" x1="89.908" y1="98.4858" x2="89.908" y2="203.665" gradientUnits="userSpaceOnUse"> <linearGradient id="paint1_linear_42" x1="92.1457" y1="99" x2="92.1457" y2="182.425" gradientUnits="userSpaceOnUse">
<stop stop-color="#14ADF6"/> <stop stop-color="#14ADF6"/>
<stop offset="1" stop-color="#1191F4"/> <stop offset="1" stop-color="#1191F4"/>
</linearGradient> </linearGradient>
<linearGradient id="paint2_linear" x1="147.072" y1="98.4858" x2="147.072" y2="193.333" gradientUnits="userSpaceOnUse"> <linearGradient id="paint2_linear_42" x1="137.349" y1="99" x2="137.349" y2="174.274" gradientUnits="userSpaceOnUse">
<stop stop-color="#CA70E1"/> <stop stop-color="#CA70E1"/>
<stop offset="1" stop-color="#B452CB"/> <stop offset="1" stop-color="#B452CB"/>
</linearGradient> </linearGradient>
<linearGradient id="paint3_linear" x1="151.473" y1="9.80419" x2="151.473" y2="131.683" gradientUnits="userSpaceOnUse"> <linearGradient id="paint3_linear_42" x1="140.861" y1="28.423" x2="140.861" y2="125.183" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF645D"/> <stop stop-color="#FF645D"/>
<stop offset="1" stop-color="#FF4332"/> <stop offset="1" stop-color="#FF4332"/>
</linearGradient> </linearGradient>
<linearGradient id="paint4_linear" x1="107.943" y1="-5.68098" x2="107.943" y2="98.4855" gradientUnits="userSpaceOnUse"> <linearGradient id="paint4_linear_42" x1="105.735" y1="15.4177" x2="105.735" y2="99" gradientUnits="userSpaceOnUse">
<stop stop-color="#FBB114"/> <stop stop-color="#FBB114"/>
<stop offset="1" stop-color="#FF9508"/> <stop offset="1" stop-color="#FF9508"/>
</linearGradient> </linearGradient>
<linearGradient id="paint5_linear" x1="50.9587" y1="4.68791" x2="50.9587" y2="98.5212" gradientUnits="userSpaceOnUse"> <linearGradient id="paint5_linear_42" x1="60.4045" y1="23.668" x2="60.4045" y2="99.0289" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFD305"/> <stop stop-color="#FFD305"/>
<stop offset="1" stop-color="#FDCF01"/> <stop offset="1" stop-color="#FDCF01"/>
</linearGradient> </linearGradient>

Before

Width:  |  Height:  |  Size: 4 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

Before After
Before After

View file

@ -1,18 +1,18 @@
<?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_40)">
<path d="M64.1027 38C61.3312 38 58.5728 39.068 56.4492 41.197L40.1856 57.1821C35.9382 61.4402 35.9382 68.2697 40.1856 72.5278L68.2483 100.662L40.1856 128.476C35.9381 132.734 35.9382 139.563 40.1856 143.821L56.4492 159.806C60.6965 164.065 67.5088 164.065 71.7562 159.806L99.5 131.992L127.563 159.806C131.81 164.065 138.622 164.065 142.87 159.806L158.815 143.821C163.062 139.563 163.062 132.734 158.815 128.476L131.071 100.662L158.815 72.5278C163.062 68.2697 163.062 61.4402 158.815 57.1821L142.87 41.197C138.622 36.9389 131.81 36.9389 127.563 41.197L99.5 69.0111L71.7562 41.197C69.6325 39.068 66.8742 38 64.1027 38Z" fill="#00FF00"/> <path d="M64.1027 38C61.3312 38 58.5728 39.068 56.4492 41.197L40.1856 57.1821C35.9382 61.4402 35.9382 68.2697 40.1856 72.5278L68.2483 100.662L40.1856 128.476C35.9381 132.734 35.9382 139.563 40.1856 143.821L56.4492 159.806C60.6965 164.065 67.5088 164.065 71.7562 159.806L99.5 131.992L127.563 159.806C131.81 164.065 138.622 164.065 142.87 159.806L158.815 143.821C163.062 139.563 163.062 132.734 158.815 128.476L131.071 100.662L158.815 72.5278C163.062 68.2697 163.062 61.4402 158.815 57.1821L142.87 41.197C138.622 36.9389 131.81 36.9389 127.563 41.197L99.5 69.0111L71.7562 41.197C69.6325 39.068 66.8742 38 64.1027 38Z" fill="#00FF00"/>
<path d="M36.6456 76.0589L61.166 100.641L36.6658 124.924L36.6557 124.934L36.6456 124.945C30.4514 131.154 30.4516 141.143 36.6456 147.352L36.6631 147.37L36.6807 147.387L52.9284 163.357C59.1308 169.554 69.1016 169.548 75.2962 163.337L99.5202 139.052L124.023 163.337C124.027 163.341 124.03 163.345 124.034 163.349C130.236 169.554 140.213 169.55 146.41 163.337L162.355 147.352C168.549 141.143 168.548 131.154 162.355 124.945L162.355 124.945L138.113 100.641L162.355 76.0588C162.358 76.0553 162.362 76.0518 162.365 76.0484C168.548 69.838 168.545 59.8573 162.355 53.651L146.41 37.666C140.213 31.453 130.236 31.4493 124.034 37.6547C124.03 37.6584 124.027 37.6622 124.023 37.666L99.5202 61.9513L75.2962 37.666L71.7562 41.197L75.2962 37.666C72.2114 34.5733 68.1694 33 64.1027 33C60.0445 33 56.0106 34.5668 52.9283 37.6469L36.6807 53.6162L36.6631 53.6335L36.6456 53.651C30.4515 59.8608 30.4515 69.8491 36.6456 76.0589Z" stroke="#0000FF" stroke-width="10" stroke-miterlimit="10"/> <path d="M36.6456 76.0589L61.166 100.641L36.6658 124.924L36.6557 124.934L36.6456 124.945C30.4514 131.154 30.4516 141.143 36.6456 147.352L36.6631 147.37L36.6807 147.387L52.9284 163.357C59.1308 169.554 69.1016 169.548 75.2962 163.337L99.5202 139.052L124.023 163.337C124.027 163.341 124.03 163.345 124.034 163.349C130.236 169.554 140.213 169.55 146.41 163.337L162.355 147.352C168.549 141.143 168.548 131.154 162.355 124.945L162.355 124.945L138.113 100.641L162.355 76.0588C162.358 76.0553 162.362 76.0518 162.365 76.0484C168.548 69.838 168.545 59.8573 162.355 53.651L146.41 37.666C140.213 31.453 130.236 31.4493 124.034 37.6547C124.03 37.6584 124.027 37.6622 124.023 37.666L99.5202 61.9513L75.2962 37.666L71.7562 41.197L75.2962 37.666C72.2114 34.5733 68.1694 33 64.1027 33C60.0445 33 56.0106 34.5668 52.9283 37.6469L36.6807 53.6162L36.6631 53.6335L36.6456 53.651C30.4515 59.8608 30.4515 69.8491 36.6456 76.0589Z" stroke="#0000FF" stroke-width="10" stroke-miterlimit="10"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="5" y="15" width="185" height="185" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="9" y="20" width="175" height="175" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Before After
Before After

View file

@ -1,23 +1,23 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_11)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_11)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M119.044 69.6452H129.063V79.6001H119.044V69.6452ZM129.063 129.375H119.044V119.42H129.063V129.375ZM78.9662 79.6001H68.9468V69.6452H78.9662V79.6001ZM78.9662 129.375H68.9468V119.42H78.9662V129.375ZM99.005 20L19 99.5199L71.3214 151.495L99.005 179L179 99.51L99.005 20Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M119.044 69.6452H129.063V79.6001H119.044V69.6452ZM129.063 129.375H119.044V119.42H129.063V129.375ZM78.9662 79.6001H68.9468V69.6452H78.9662V79.6001ZM78.9662 129.375H68.9468V119.42H78.9662V129.375ZM99.005 20L19 99.5199L71.3214 151.495L99.005 179L179 99.51L99.005 20Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M166 99.005L139.92 71V89.2346H58.2227V71L32 99.005L58.2329 127L58.2227 108.975H139.92L139.91 127L166 99.005Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M166 99.005L139.92 71V89.2346H58.2227V71L32 99.005L58.2329 127L58.2227 108.975H139.92L139.91 127L166 99.005Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.887 99.4651H109.017V59.6042L127 59.6142L99.0647 34L71.1095 59.6042H89.1127V99.4651H89.1923V139.336L71 139.326L98.9353 165L126.851 139.336H108.887V99.4651Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M108.887 99.4651H109.017V59.6042L127 59.6142L99.0647 34L71.1095 59.6042H89.1127V99.4651H89.1923V139.336L71 139.326L98.9353 165L126.851 139.336H108.887V99.4651Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="-3" y="7" width="200" height="199" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_11" x="1" y="12" width="190" height="189" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_11"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_11" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_11">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Before After
Before After

View file

@ -1,18 +1,18 @@
<?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_496)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M111.539 62.5764L86.0578 36.7747L162.375 36.8933L162.492 114.171L136.903 88.2412L100.199 125.356L87.4629 138.266L113.079 164.196L36.6445 164.196V86.7905L62.1348 112.583L111.539 62.5764Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M111.539 62.5764L86.0578 36.7747L162.375 36.8933L162.492 114.171L136.903 88.2412L100.199 125.356L87.4629 138.266L113.079 164.196L36.6445 164.196V86.7905L62.1348 112.583L111.539 62.5764Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M124.445 62.783L107.873 46.2053L153.709 46.3504L153.836 92.1839L137.137 75.4883L74.5657 138.035L91.2829 154.749L45.2925 154.749L45.2925 108.762L61.8828 125.339L124.445 62.783Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M124.445 62.783L107.873 46.2053L153.709 46.3504L153.836 92.1839L137.137 75.4883L74.5657 138.035L91.2829 154.749L45.2925 154.749L45.2925 108.762L61.8828 125.339L124.445 62.783Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="14.6445" y="23.7747" width="165.848" height="167.421" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_496" x="18.6445" y="28.7747" width="155.848" height="157.421" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_496"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_496" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

View file

@ -1,18 +1,18 @@
<?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_496)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M87.5985 62.5764L113.08 36.7747L36.7621 36.8933L36.645 114.171L62.2343 88.2412L98.9385 125.356L111.675 138.266L86.0582 164.196L162.493 164.196V86.7905L137.003 112.583L87.5985 62.5764Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M87.5985 62.5764L113.08 36.7747L36.7621 36.8933L36.645 114.171L62.2343 88.2412L98.9385 125.356L111.675 138.266L86.0582 164.196L162.493 164.196V86.7905L137.003 112.583L87.5985 62.5764Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.6923 62.783L91.2644 46.2053L45.4282 46.3504L45.3013 92.1839L62.0003 75.4883L124.572 138.035L107.855 154.749L153.845 154.749L153.845 108.762L137.255 125.339L74.6923 62.783Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M74.6923 62.783L91.2644 46.2053L45.4282 46.3504L45.3013 92.1839L62.0003 75.4883L124.572 138.035L107.855 154.749L153.845 154.749L153.845 108.762L137.255 125.339L74.6923 62.783Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="14.645" y="23.7747" width="165.848" height="167.421" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_496" x="18.645" y="28.7747" width="155.848" height="157.421" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_496"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_496" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

View file

@ -1,23 +1,18 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_40)">
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M44.27 107.157H79.05V117.832H19V158H179V117.832H118.94V107.157H153.61L98.88 47L44.27 107.157Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M44.27 107.157H79.05V117.832H19V158H179V117.832H118.94V107.157H153.61L98.88 47L44.27 107.157Z" fill="#0000FF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M169 128.201H108.914V97.5192H131.346L98.7897 64L66.5136 97.5192H89.0858V128.201H29V148H169V128.201Z" fill="#00FF00"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M169 128.201H108.914V97.5192H131.346L98.7897 64L66.5136 97.5192H89.0858V128.201H29V148H169V128.201Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="-3" y="34" width="200" height="151" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="1" y="39" width="190" height="141" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

View file

@ -1,24 +1,24 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_40)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.0005 143.925L98.8216 20.5779L151.987 146.113L99.7378 125.025L96.1853 124.702L49.0005 143.925Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M49.0005 143.925L98.8216 20.5779L151.987 146.113L99.7378 125.025L96.1853 124.702L49.0005 143.925Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.578 178.968L83.5004 178.774L84.6152 78.3151L117.36 78.6399L115.578 178.968Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M115.861 163.065C115.704 171.878 108.487 178.925 99.6736 178.872V178.872C90.7546 178.818 83.5809 171.52 83.6798 162.601L84.6152 78.3151L117.36 78.6399L115.861 163.065Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.554 166.415L91.8101 166.277L92.1466 101L108.871 101.121L108.554 166.415Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M108.595 158.016C108.572 162.65 104.789 166.384 100.155 166.346V166.346C95.5422 166.308 91.8293 162.545 91.8531 157.932L92.1466 101L108.871 101.121L108.595 158.016Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M99.2443 42.6052L64.5459 129.454L96.2142 116.502L99.9291 116.763L136.512 131.69L99.2443 42.6052Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M99.2443 42.6052L64.5459 129.454L96.2142 116.502L99.9291 116.763L136.512 131.69L99.2443 42.6052Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="27.0005" y="7.57788" width="142.986" height="198.39" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="31.0005" y="12.5779" width="132.986" height="188.294" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_40">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Before After
Before After

View file

@ -1,27 +1,22 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_40)">
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M96 154C96 165.046 104.954 174 116 174H173V87H96V154Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M96 174H173V87H96V174Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M98.6749 150.399C102.183 158.921 98.1969 168.68 89.7261 172.31V172.31C81.1228 175.997 71.1635 171.968 67.5423 163.337L34 83.3901L65.5803 70L98.6749 150.399Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M105 165.765L74.1137 179L34 83.3901L65.5803 70L105 165.765Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M27 160V22L127 122.12H68.4977L64.9519 123.189L27 160Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27 160V22L127 122.12H68.4977L64.9519 123.189L27 160Z" fill="#0000FF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M156.286 122.875H112.714V114.25H156.286V122.875ZM156.286 140.125H112.714V131.5H156.286V140.125ZM156.286 157.375H112.714V148.75H156.286V157.375ZM104 166H165V97H104V166Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M93 160.351L77.3349 167L51 103.657L66.6396 97L93 160.351Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M35 44V139L60.4538 114.664L64.1231 113.484H105L35 44Z" fill="#00FF00"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M156.286 122.875H112.714V114.25H156.286V122.875ZM156.286 140.125H112.714V131.5H156.286V140.125ZM156.286 157.375H112.714V148.75H156.286V157.375ZM104 166H165V97H104V166Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.7548 152.552C91.5508 156.868 89.5275 161.825 85.2241 163.652V163.652C80.8765 165.497 75.858 163.447 74.0448 159.086L51 103.657L66.6396 97L89.7548 152.552Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M35 44V139L60.4538 114.664L64.1231 113.484H105L35 44Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="5" y="9" width="186" height="197" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="9" y="14" width="176" height="182" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Before After
Before After

View file

@ -1,51 +1,51 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_40)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M57 144C57 170.507 78.4932 192 105 192C131.506 192 153 170.507 153 144C153 117.488 131.506 96 105 96C78.4932 96 57 117.488 57 144Z" fill="url(#paint0_linear)"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M57 144C57 170.507 78.4932 192 105 192C131.506 192 153 170.507 153 144C153 117.488 131.506 96 105 96C78.4932 96 57 117.488 57 144Z" fill="url(#paint0_linear_40)"/>
</g> </g>
<g filter="url(#filter1_d)"> <g filter="url(#filter1_d_40)">
<path d="M130 137.75H79V150.25H130V137.75Z" fill="white"/> <path d="M130 137.75H79V150.25H130V137.75Z" fill="white"/>
<path d="M110.875 119H98.125V169H110.875V119Z" fill="white"/> <path d="M110.875 119H98.125V169H110.875V119Z" fill="white"/>
</g> </g>
<g filter="url(#filter2_d)"> <g filter="url(#filter2_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M53 114.893V8.10718L131 85.581H83.6184L82.6023 86.4078L53 114.893Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M53 114.893V8.10718L131 85.581H83.6184L82.6023 86.4078L53 114.893Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.4287 26.6787V96.3216L78.9996 78.4814L80.0004 77.6161H111.5L60.4287 26.6787Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M60.4287 26.6787V96.3216L78.9996 78.4814L80.0004 77.6161H111.5L60.4287 26.6787Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="43" y="84" width="120" height="120" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="43" y="84" width="120" height="120" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2"/> <feOffset dx="-2"/>
<feGaussianBlur stdDeviation="6"/> <feGaussianBlur stdDeviation="6"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<filter id="filter1_d" x="75" y="119" width="59" height="58" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter1_d_40" x="75" y="119" width="59" height="58" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dy="4"/> <feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/> <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.5 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<filter id="filter2_d" x="32" y="-6.89282" width="118" height="146.786" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter2_d_40" x="32" y="-6.89282" width="118" height="146.786" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-1" dy="5"/> <feOffset dx="-1" dy="5"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="10"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<linearGradient id="paint0_linear" x1="75.4665" y1="108.904" x2="139.4" y2="180.303" gradientUnits="userSpaceOnUse"> <linearGradient id="paint0_linear_40" x1="75.4665" y1="108.904" x2="139.4" y2="180.303" gradientUnits="userSpaceOnUse">
<stop stop-color="#00C500"/> <stop stop-color="#00C500"/>
<stop offset="1" stop-color="#009200"/> <stop offset="1" stop-color="#009200"/>
</linearGradient> </linearGradient>
<clipPath id="clip0"> <clipPath id="clip0_40">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,23 +1,18 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_496)">
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M170 86H113.906V30H86.0934V86H30V114H86.0934V170H113.906V114H170V86Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M180 84H115.893V20H84.1067V84H20V116H84.1067V180H115.893V116H180V84Z" fill="#0000FF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M169.818 94.7369H105.271V30.1819H94.7286V94.7369H30.1816V105.263H94.7286V169.818H105.271V105.263H169.818V94.7369Z" fill="#00FF00"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M161 95.4016H104.606V39H95.3945V95.4016H39V104.599H95.3945V161H104.606V104.599H161V95.4016Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="-2" y="7" width="200" height="200" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_496" x="12" y="22" width="170" height="170" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_496"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_496" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

@ -1,39 +1,39 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_496)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_496)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M57 144C57 170.507 78.4932 192 105 192C131.506 192 153 170.507 153 144C153 117.488 131.506 96 105 96C78.4932 96 57 117.488 57 144Z" fill="url(#paint0_linear)"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M57 144C57 170.507 78.4932 192 105 192C131.506 192 153 170.507 153 144C153 117.488 131.506 96 105 96C78.4932 96 57 117.488 57 144Z" fill="url(#paint0_linear_496)"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M111.957 143.877L124.077 131.757C126.312 129.523 126.312 125.905 124.077 123.671C121.849 121.443 118.232 121.443 115.997 123.671L103.877 135.797L91.7514 123.671C89.5229 121.443 85.9057 121.443 83.6714 123.671C81.4429 125.905 81.4429 129.523 83.6714 131.757L95.7971 143.877L83.6714 155.997C81.4429 158.231 81.4429 161.848 83.6714 164.083C85.9057 166.311 89.5229 166.311 91.7514 164.083L103.877 151.957L115.997 164.083C118.232 166.311 121.849 166.311 124.077 164.083C126.312 161.848 126.312 158.231 124.077 155.997L111.957 143.877Z" fill="#5A5A5A"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M111.957 143.877L124.077 131.757C126.312 129.523 126.312 125.905 124.077 123.671C121.849 121.443 118.232 121.443 115.997 123.671L103.877 135.797L91.7514 123.671C89.5229 121.443 85.9057 121.443 83.6714 123.671C81.4429 125.905 81.4429 129.523 83.6714 131.757L95.7971 143.877L83.6714 155.997C81.4429 158.231 81.4429 161.848 83.6714 164.083C85.9057 166.311 89.5229 166.311 91.7514 164.083L103.877 151.957L115.997 164.083C118.232 166.311 121.849 166.311 124.077 164.083C126.312 161.848 126.312 158.231 124.077 155.997L111.957 143.877Z" fill="#5A5A5A"/>
<g filter="url(#filter1_d)"> <g filter="url(#filter1_d_496)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M53 114.893V8.10718L131 85.581H83.6184L82.6023 86.4078L53 114.893Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M53 114.893V8.10718L131 85.581H83.6184L82.6023 86.4078L53 114.893Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.4287 26.6787V96.3216L78.9996 78.4814L80.0004 77.6161H111.5L60.4287 26.6787Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M60.4287 26.6787V96.3216L78.9996 78.4814L80.0004 77.6161H111.5L60.4287 26.6787Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="43" y="84" width="120" height="120" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_496" x="43" y="84" width="120" height="120" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2"/> <feOffset dx="-2"/>
<feGaussianBlur stdDeviation="6"/> <feGaussianBlur stdDeviation="6"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_496"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_496" result="shape"/>
</filter> </filter>
<filter id="filter1_d" x="32" y="-6.89282" width="118" height="146.786" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter1_d_496" x="32" y="-6.89282" width="118" height="146.786" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-1" dy="5"/> <feOffset dx="-1" dy="5"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="10"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_496"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_496" result="shape"/>
</filter> </filter>
<linearGradient id="paint0_linear" x1="105" y1="96" x2="105" y2="192" gradientUnits="userSpaceOnUse"> <linearGradient id="paint0_linear_496" x1="105" y1="96" x2="105" y2="192" gradientUnits="userSpaceOnUse">
<stop stop-color="#F0F0F0"/> <stop stop-color="#F0F0F0"/>
<stop offset="1" stop-color="#D5D5D5"/> <stop offset="1" stop-color="#D5D5D5"/>
</linearGradient> </linearGradient>
<clipPath id="clip0"> <clipPath id="clip0_496">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 3 KiB

Before After
Before After

View file

@ -1,71 +1,71 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_40)">
<path opacity="0.15" fill-rule="evenodd" clip-rule="evenodd" d="M137 100C137 120.983 119.983 138 99 138C78.0102 138 61 120.983 61 100C61 79.0102 78.0102 62 99 62C119.983 62 137 79.0102 137 100Z" fill="#00FF00"/> <path opacity="0.15" fill-rule="evenodd" clip-rule="evenodd" d="M137 100C137 120.983 119.983 138 99 138C78.0102 138 61 120.983 61 100C61 79.0102 78.0102 62 99 62C119.983 62 137 79.0102 137 100Z" fill="#00FF00"/>
<g opacity="0.3" filter="url(#filter0_d)"> <g opacity="0.3" filter="url(#filter0_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M137 100C137 120.983 119.983 138 99 138C78.0102 138 61 120.983 61 100C61 79.0102 78.0102 62 99 62C119.983 62 137 79.0102 137 100Z" stroke="#00FF00" stroke-width="6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M137 100C137 120.983 119.983 138 99 138C78.0102 138 61 120.983 61 100C61 79.0102 78.0102 62 99 62C119.983 62 137 79.0102 137 100Z" stroke="#00FF00" stroke-width="6"/>
</g> </g>
<g opacity="0.85" filter="url(#filter1_d)"> <g opacity="0.85" filter="url(#filter1_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19 104H96V97H19V104Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M19 104H96V97H19V104Z" fill="#00FF00"/>
</g> </g>
<g opacity="0.85" filter="url(#filter2_d)"> <g opacity="0.85" filter="url(#filter2_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M103 104H179V97H103V104Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M103 104H179V97H103V104Z" fill="#00FF00"/>
</g> </g>
<g opacity="0.85" filter="url(#filter3_d)"> <g opacity="0.85" filter="url(#filter3_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M96 97H103V20H96V97Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M96 97H103V20H96V97Z" fill="#00FF00"/>
</g> </g>
<g opacity="0.85" filter="url(#filter4_d)"> <g opacity="0.85" filter="url(#filter4_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M96 180H103V104H96V180Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M96 180H103V104H96V180Z" fill="#00FF00"/>
</g> </g>
<path opacity="0.85" d="M16.5 104V106.5H19H93.5V180V182.5H96H103H105.5V180V106.5H179H181.5V104V97V94.5H179H105.5V20V17.5H103H96H93.5V20V94.5H19H16.5V97V104ZM98.5 101.5V99.5H100.5V101.5H98.5Z" stroke="#0000FF" stroke-width="5"/> <path opacity="0.85" d="M16.5 104V106.5H19H93.5V180V182.5H96H103H105.5V180V106.5H179H181.5V104V97V94.5H179H105.5V20V17.5H103H96H93.5V20V94.5H19H16.5V97V104ZM98.5 101.5V99.5H100.5V101.5H98.5Z" stroke="#0000FF" stroke-width="5"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="36" y="46" width="122" height="122" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="40" y="51" width="112" height="112" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<filter id="filter1_d" x="-3" y="84" width="117" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter1_d_40" x="1" y="89" width="107" height="37" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<filter id="filter2_d" x="81" y="84" width="116" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter2_d_40" x="85" y="89" width="106" height="37" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<filter id="filter3_d" x="74" y="7" width="47" height="117" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter3_d_40" x="78" y="12" width="37" height="107" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<filter id="filter4_d" x="74" y="91" width="47" height="116" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter4_d_40" x="78" y="96" width="37" height="106" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_40">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Before After
Before After

View file

@ -1,29 +1,29 @@
<?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_493)">
<path d="M37.4302 163L163 37.4299" stroke="#00FF00" stroke-width="15"/> <path d="M37.4302 163L163 37.4299" stroke="#00FF00" stroke-width="15"/>
</g> </g>
<g filter="url(#filter1_d)"> <g filter="url(#filter1_d_493)">
<path d="M37.4302 37.4299L163 163" stroke="#00FF00" stroke-width="15"/> <path d="M37.4302 37.4299L163 163" stroke="#00FF00" stroke-width="15"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="10.127" y="19.1267" width="176.177" height="176.177" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_493" x="14.127" y="24.1267" width="166.177" height="166.177" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_493"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_493" result="shape"/>
</filter> </filter>
<filter id="filter1_d" x="10.127" y="19.1267" width="176.177" height="176.177" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter1_d_493" x="14.127" y="24.1267" width="166.177" height="166.177" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_493"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_493" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Before After
Before After

View file

@ -1,23 +1,23 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_40)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_40)">
<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="#00FF00"/> <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="#00FF00"/>
<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="#00FF00" stroke-width="25"/> <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="#00FF00" stroke-width="25"/>
</g> </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="#0000FF" stroke="#0000FF" stroke-width="2"/> <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="#0000FF" stroke="#0000FF" stroke-width="2"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="-1.5" y="7.5" width="199" height="199" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="2.5" y="12.5" width="189" height="189" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_40">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Before After
Before After

View file

@ -1,26 +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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_40)">
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M67.2954 103.924C66.3827 100.416 65.4699 96.0012 63.514 89.4071C61.9586 84.1972 60.3287 81.3724 59.1366 77.8743C57.6929 73.6184 56.3145 71.1304 54.5169 66.8278C53.2223 63.7505 51.1267 57.0254 50.2606 53.3589C49.1522 48.5979 50.5679 44.7163 52.5331 42.0786C54.8895 38.9078 61.493 37.4954 65.1719 38.7955C68.6273 40.0115 72.1013 43.5845 73.7033 46.1661C76.3857 50.4686 77.0283 52.0774 80.3813 60.5891C84.0416 69.8677 85.6342 78.529 86.072 81.4566L86.8604 86.3348C86.8717 86.4049 86.8625 86.4079 86.8607 86.3369V86.3369C86.5347 76.7122 85.895 57.7643 86.0999 47.3259C86.1185 46.1473 86.696 41.8354 86.8823 40.6382C87.6087 35.9614 89.723 33.1554 93.1504 31.4811C96.9877 29.6011 101.775 29.4701 106.199 31.3221C110.139 32.9403 112.029 36.4665 112.598 40.8813C112.728 41.9009 113.473 50.1132 113.464 51.2356C113.343 60.8229 113.52 66.5846 113.603 71.57C113.641 73.7307 113.631 86.7694 113.762 85.3103C114.33 79.1744 114.637 55.4821 116.966 48.4389C118.307 44.3889 120.738 41.4613 124.361 39.7496C128.375 37.8508 134.727 39.0948 137.437 42.0225C140.092 44.8753 141.591 48.4951 141.927 52.807C142.225 56.5951 141.75 61.1971 141.74 64.4521C141.74 72.5615 141.545 76.836 141.396 84.2907C141.386 84.6462 141.256 87.0781 141.61 85.9931C142.485 83.3741 143.361 80.9235 144.087 79.0247C144.544 77.8556 146.332 73.2817 147.431 70.9901C148.493 68.8014 149.396 67.5387 151.296 64.5549C153.159 61.6273 155.161 60.3646 157.518 59.3077C162.547 57.1096 167.847 60.3552 169.635 64.8355C170.436 66.8465 169.719 71.5046 169.374 75.1711C168.806 81.2228 167.009 87.3867 166.096 90.5856C164.904 94.7666 163.544 102.137 162.929 105.56C162.259 109.246 160.75 118.487 159.585 122.584C158.785 125.399 156.13 131.731 153.513 135.529C153.513 135.529 143.51 147.221 142.411 152.477C141.321 157.743 141.684 157.781 141.47 161.503C141.312 164.14 141.94 167.359 142.322 169.022C142.458 169.615 142.062 170.204 141.458 170.269C139.211 170.51 134.162 170.952 131.104 170.455C127.462 169.875 122.954 162.588 121.79 160.372C120.188 157.304 116.77 157.893 115.438 160.157C113.343 163.739 108.835 170.165 105.65 170.567C99.6689 171.322 87.5089 170.885 77.5997 170.767C76.9795 170.759 76.5083 170.196 76.5824 169.58C76.8994 166.945 77.3046 160.594 74.2994 158.052C71.4587 155.62 66.569 150.719 63.6444 148.137L55.8954 139.523C53.2503 136.156 50.037 129.3 44.3184 120.956C41.0772 116.242 34.7531 110.808 32.3595 106.187C30.2825 102.212 29.2767 97.264 30.5899 93.7938C32.6855 88.2379 36.8767 85.4038 43.2752 86.0118C48.1091 86.4794 51.1733 87.9386 54.8057 91.0346C56.9013 92.8117 60.1425 96.0293 61.791 98.031C63.3091 99.8549 63.6817 100.612 65.3023 102.792C67.4444 105.663 68.115 107.085 67.2954 103.924Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M63.5067 104.312C62.4882 100.407 61.4697 95.4908 59.2872 88.1483C57.5517 82.3472 55.7329 79.2019 54.4027 75.3068C52.7918 70.568 51.2536 67.7977 49.2478 63.0069C47.8033 59.5804 45.4649 52.0921 44.4984 48.0095C43.2616 42.7083 44.8413 38.3862 47.0342 35.4492C49.6636 31.9186 57.032 30.3459 61.1372 31.7936C64.9929 33.1475 68.8694 37.126 70.6569 40.0005C73.65 44.7913 74.3671 46.5827 78.1085 56.0602C82.1929 66.3917 83.97 76.0358 84.4585 79.2957L85.3382 84.7274C85.3509 84.8056 85.3406 84.8089 85.3386 84.7297V84.7297C84.9749 74.0128 84.261 52.9149 84.4897 41.2919C84.5105 39.9797 85.1548 35.1784 85.3627 33.8453C86.1733 28.6379 88.5325 25.5135 92.357 23.6492C96.6388 21.5558 101.981 21.41 106.917 23.4721C111.313 25.2739 113.423 29.2003 114.057 34.1161C114.203 35.2513 115.034 44.3956 115.024 45.6453C114.888 56.3205 115.086 62.7361 115.179 68.2872C115.221 70.693 115.211 85.2113 115.356 83.5866C115.99 76.7545 116.333 50.3737 118.931 42.5313C120.428 38.0217 123.14 34.7618 127.183 32.8559C131.662 30.7417 138.75 32.1269 141.775 35.3867C144.736 38.5632 146.41 42.5938 146.784 47.395C147.116 51.613 146.586 56.7371 146.576 60.3615C146.576 69.3912 146.358 74.1507 146.191 82.4514C146.181 82.8471 146.036 85.555 146.43 84.3469C147.407 81.4307 148.384 78.702 149.195 76.5878C149.704 75.286 151.7 70.1931 152.926 67.6415C154.111 65.2044 155.119 63.7984 157.239 60.4761C159.318 57.2162 161.552 55.8102 164.181 54.6333C169.793 52.1859 175.707 55.7998 177.702 60.7885C178.596 63.0277 177.796 68.2143 177.411 72.2969C176.777 79.0353 174.772 85.8987 173.753 89.4606C172.423 94.116 170.905 102.323 170.22 106.135C169.471 110.238 167.788 120.528 166.489 125.09C165.595 128.225 162.633 135.275 159.712 139.504C159.712 139.504 148.551 152.522 147.324 158.376C146.108 164.239 146.514 164.281 146.275 168.426C146.094 171.429 146.831 175.111 147.254 176.923C147.392 177.515 146.996 178.106 146.392 178.172C143.955 178.436 138.181 178.957 134.707 178.393C130.644 177.747 125.614 169.634 124.315 167.166C122.527 163.75 118.713 164.406 117.227 166.926C114.888 170.915 109.858 178.07 106.304 178.518C99.6031 179.362 85.95 178.868 74.8683 178.739C74.2479 178.731 73.7759 178.172 73.8527 177.556C74.2079 174.712 74.7289 167.458 71.3221 164.583C68.1523 161.875 62.6961 156.418 59.4327 153.543L50.786 143.951C47.8344 140.202 44.2489 132.568 37.8678 123.278C34.2511 118.028 27.1944 111.977 24.5235 106.833C22.2059 102.406 21.0835 96.8968 22.5489 93.0329C24.8872 86.8464 29.564 83.6907 36.7038 84.3677C42.0976 84.8885 45.5168 86.5132 49.57 89.9605C51.9084 91.9393 55.5251 95.522 57.3646 97.7508C59.0586 99.7817 59.4743 100.625 61.2826 103.052C63.673 106.249 64.4213 107.832 63.5067 104.312Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M67.2954 103.924C66.3827 100.416 65.4699 96.0012 63.514 89.4071C61.9586 84.1972 60.3287 81.3724 59.1366 77.8743C57.6929 73.6184 56.3145 71.1304 54.5169 66.8278C53.2223 63.7505 51.1267 57.0254 50.2606 53.3589C49.1522 48.5979 50.5679 44.7163 52.5331 42.0786C54.8895 38.9078 61.493 37.4954 65.1719 38.7955C68.6273 40.0115 72.1013 43.5845 73.7033 46.1661C76.3857 50.4686 77.0283 52.0774 80.3813 60.5891C84.0416 69.8677 85.6342 78.529 86.072 81.4566L86.8604 86.3348C86.8717 86.4049 86.8625 86.4079 86.8607 86.3369V86.3369C86.5347 76.7122 85.895 57.7643 86.0999 47.3259C86.1185 46.1473 86.696 41.8354 86.8823 40.6382C87.6087 35.9614 89.723 33.1554 93.1504 31.4811C96.9877 29.6011 101.775 29.4701 106.199 31.3221C110.139 32.9403 112.029 36.4665 112.598 40.8813C112.728 41.9009 113.473 50.1132 113.464 51.2356C113.343 60.8229 113.52 66.5846 113.603 71.57C113.641 73.7307 113.631 86.7694 113.762 85.3103C114.33 79.1744 114.637 55.4821 116.966 48.4389C118.307 44.3889 120.738 41.4613 124.361 39.7496C128.375 37.8508 134.727 39.0948 137.437 42.0225C140.092 44.8753 141.591 48.4951 141.927 52.807C142.225 56.5951 141.75 61.1971 141.74 64.4521C141.74 72.5615 141.545 76.836 141.396 84.2907C141.386 84.6462 141.256 87.0781 141.61 85.9931C142.485 83.3741 143.361 80.9235 144.087 79.0247C144.544 77.8556 146.332 73.2817 147.431 70.9901C148.493 68.8014 149.396 67.5387 151.296 64.5549C153.159 61.6273 155.161 60.3646 157.518 59.3077C162.547 57.1096 167.847 60.3552 169.635 64.8355C170.436 66.8465 169.719 71.5046 169.374 75.1711C168.806 81.2228 167.009 87.3867 166.096 90.5856C164.904 94.7666 163.544 102.137 162.929 105.56C162.259 109.246 160.75 118.487 159.585 122.584C158.785 125.399 156.13 131.731 153.513 135.529C153.513 135.529 143.51 147.221 142.411 152.477C141.321 157.743 141.684 157.781 141.47 161.503C141.312 164.14 141.94 167.359 142.322 169.022C142.458 169.615 142.062 170.204 141.458 170.269C139.211 170.51 134.162 170.952 131.104 170.455C127.462 169.875 122.954 162.588 121.79 160.372C120.188 157.304 116.77 157.893 115.438 160.157C113.343 163.739 108.835 170.165 105.65 170.567C99.6689 171.322 87.5089 170.885 77.5997 170.767C76.9795 170.759 76.5083 170.196 76.5824 169.58C76.8994 166.945 77.3046 160.594 74.2994 158.052C71.4587 155.62 66.569 150.719 63.6444 148.137L55.8954 139.523C53.2503 136.156 50.037 129.3 44.3184 120.956C41.0772 116.242 34.7531 110.808 32.3595 106.187C30.2825 102.212 29.2767 97.264 30.5899 93.7938C32.6855 88.2379 36.8767 85.4038 43.2752 86.0118C48.1091 86.4794 51.1733 87.9386 54.8057 91.0346C56.9013 92.8117 60.1425 96.0293 61.791 98.031C63.3091 99.8549 63.6817 100.612 65.3023 102.792C67.4444 105.663 68.115 107.085 67.2954 103.924Z" stroke="black" stroke-width="8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M63.5067 104.312C62.4882 100.407 61.4697 95.4908 59.2872 88.1483C57.5517 82.3472 55.7329 79.2019 54.4027 75.3068C52.7918 70.568 51.2536 67.7977 49.2478 63.0069C47.8033 59.5804 45.4649 52.0921 44.4984 48.0095C43.2616 42.7083 44.8413 38.3862 47.0342 35.4492C49.6636 31.9186 57.032 30.3459 61.1372 31.7936C64.9929 33.1475 68.8694 37.126 70.6569 40.0005C73.65 44.7913 74.3671 46.5827 78.1085 56.0602C82.1929 66.3917 83.97 76.0358 84.4585 79.2957L85.3382 84.7274C85.3509 84.8056 85.3406 84.8089 85.3386 84.7297V84.7297C84.9749 74.0128 84.261 52.9149 84.4897 41.2919C84.5105 39.9797 85.1548 35.1784 85.3627 33.8453C86.1733 28.6379 88.5325 25.5135 92.357 23.6492C96.6388 21.5558 101.981 21.41 106.917 23.4721C111.313 25.2739 113.423 29.2003 114.057 34.1161C114.203 35.2513 115.034 44.3956 115.024 45.6453C114.888 56.3205 115.086 62.7361 115.179 68.2872C115.221 70.693 115.211 85.2113 115.356 83.5866C115.99 76.7545 116.333 50.3737 118.931 42.5313C120.428 38.0217 123.14 34.7618 127.183 32.8559C131.662 30.7417 138.75 32.1269 141.775 35.3867C144.736 38.5632 146.41 42.5938 146.784 47.395C147.116 51.613 146.586 56.7371 146.576 60.3615C146.576 69.3912 146.358 74.1507 146.191 82.4514C146.181 82.8471 146.036 85.555 146.43 84.3469C147.407 81.4307 148.384 78.702 149.195 76.5878C149.704 75.286 151.7 70.1931 152.926 67.6415C154.111 65.2044 155.119 63.7984 157.239 60.4761C159.318 57.2162 161.552 55.8102 164.181 54.6333C169.793 52.1859 175.707 55.7998 177.702 60.7885C178.596 63.0277 177.796 68.2143 177.411 72.2969C176.777 79.0353 174.772 85.8987 173.753 89.4606C172.423 94.116 170.905 102.323 170.22 106.135C169.471 110.238 167.788 120.528 166.489 125.09C165.595 128.225 162.633 135.275 159.712 139.504C159.712 139.504 148.551 152.522 147.324 158.376C146.108 164.239 146.514 164.281 146.275 168.426C146.094 171.429 146.831 175.111 147.254 176.923C147.392 177.515 146.996 178.106 146.392 178.172C143.955 178.436 138.181 178.957 134.707 178.393C130.644 177.747 125.614 169.634 124.315 167.166C122.527 163.75 118.713 164.406 117.227 166.926C114.888 170.915 109.858 178.07 106.304 178.518C99.6031 179.362 85.95 178.868 74.8683 178.739C74.2479 178.731 73.7759 178.172 73.8527 177.556C74.2079 174.712 74.7289 167.458 71.3221 164.583C68.1523 161.875 62.6961 156.418 59.4327 153.543L50.786 143.951C47.8344 140.202 44.2489 132.568 37.8678 123.278C34.2511 118.028 27.1944 111.977 24.5235 106.833C22.2059 102.406 21.0835 96.8968 22.5489 93.0329C24.8872 86.8464 29.564 83.6907 36.7038 84.3677C42.0976 84.8885 45.5168 86.5132 49.57 89.9605C51.9084 91.9393 55.5251 95.522 57.3646 97.7508C59.0586 99.7817 59.4743 100.625 61.2826 103.052C63.673 106.249 64.4213 107.832 63.5067 104.312Z" stroke="black" stroke-width="8"/>
</g>
<path d="M136.318 147V111" stroke="black" stroke-width="7" stroke-linecap="round"/>
<path d="M116.418 147V111" stroke="black" stroke-width="7" stroke-linecap="round"/>
<path d="M93.5322 111V146" stroke="black" stroke-width="7" stroke-linecap="round"/>
</g> </g>
<path d="M133 142V110" stroke="black" stroke-width="7" stroke-linecap="round"/>
<path d="M115 142V110" stroke="black" stroke-width="7" stroke-linecap="round"/>
<path d="M94 110V141" stroke="black" stroke-width="7" stroke-linecap="round"/>
<defs> <defs>
<filter id="filter0_d" x="-4.10938" y="5" width="204.219" height="204.999" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="8" y="18" width="178" height="178.999" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Before After
Before After

View file

@ -1,26 +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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_40)">
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M58.3056 139.139C55.5268 135.848 52.1512 129.117 46.1435 120.947C42.7384 116.326 34.2944 107.624 31.7798 103.204C29.5978 99.2982 29.8327 97.5469 30.3512 94.31C31.271 88.5516 37.5722 84.0678 44.2942 84.673C49.3724 85.1223 53.6776 88.2674 57.5522 91.2383C59.8907 93.0263 62.7674 96.5015 64.4992 98.4638C66.0941 100.261 66.4855 101.004 68.188 103.131C70.4384 105.946 71.1429 107.34 70.2819 104.241C69.5872 99.6925 68.4522 91.926 66.8084 85.0581C65.556 79.8499 65.2526 79.0338 64.0589 75.0359C62.7967 70.7813 62.151 67.8012 60.967 63.2899C60.1451 60.0989 58.6677 53.5795 58.2665 49.9117C57.7088 44.896 57.4152 36.7169 60.8496 32.9574C63.5404 30.014 69.7144 29.1246 73.5401 30.9402C78.5498 33.315 81.3971 40.1371 82.6985 42.8604C85.037 47.7569 86.4851 53.4144 87.7473 60.8417C89.3519 70.2953 92.3069 83.4168 92.4047 86.1768C93 90.2 91.7394 75.6686 92.3656 72.4226C92.9331 69.4792 95.5749 66.059 98.8821 65.1329C101.68 64.3535 104.958 64.0693 107.845 64.6286C110.907 65.2155 114.136 67.2694 115.34 69.2042C118.882 74.9259 118.95 86.6169 119.097 85.9934C119.938 82.5457 119.792 74.7242 121.876 71.469C123.246 69.3234 126.739 67.3886 128.598 67.0769C131.474 66.6 135.007 66.4533 138.03 67.0035C140.466 67.4528 143.764 70.1669 144.654 71.469C146.787 74.6233 148 83.5451 148.362 86.6719C148.509 87.9648 149.086 83.0775 151.229 79.9232C155.202 74.064 169.262 72.9269 169.8 85.7825C170.045 91.7793 169.996 91.5042 169.996 95.5387C169.996 100.279 169.879 103.131 169.605 106.56C169.301 110.228 168.46 118.517 167.237 122.534C166.686 124.34 165.302 127.622 163.64 130.718C161.971 133.829 159.645 136.512 157.386 139.226C154.214 143.036 149.913 148.651 149.204 151.848C148.049 157.001 148.431 157.038 148.206 160.697C148.048 163.25 148.691 166.369 149.091 168.012C149.237 168.612 148.835 169.216 148.221 169.278C145.875 169.514 140.541 169.955 137.316 169.472C133.49 168.894 128.754 161.76 127.531 159.578C125.848 156.57 122.257 157.148 120.858 159.367C118.657 162.879 113.921 169.178 110.575 169.573C104.283 170.314 91.4803 169.891 81.0622 169.769C80.4369 169.762 79.9638 169.189 80.0429 168.569C80.3752 165.964 80.7822 159.784 77.6399 157.304C74.6556 154.929 69.5187 150.115 66.4464 147.584L58.3056 139.139Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M55.3275 141.935C52.3502 138.408 48.7334 131.197 42.2966 122.443C38.6483 117.492 29.6011 108.169 26.9069 103.433C24.5691 99.2481 24.8207 97.3716 25.3763 93.9036C26.3618 87.7339 33.1131 82.9298 40.3152 83.5782C45.7561 84.0596 50.3688 87.4293 54.5202 90.6124C57.0258 92.5282 60.1079 96.2516 61.9635 98.354C63.6723 100.28 64.0916 101.075 65.9157 103.355C68.3269 106.371 69.0817 107.864 68.1592 104.543C67.4148 99.6705 66.1988 91.3493 64.4375 83.9908C63.0957 78.4106 62.7707 77.5362 61.4917 73.2528C60.1394 68.6942 59.4474 65.5013 58.179 60.6677C57.2983 57.2488 55.7154 50.2637 55.2855 46.334C54.688 40.96 54.3735 32.1967 58.0532 28.1687C60.9361 25.0151 67.5511 24.0621 71.6501 26.0073C77.0177 28.5518 80.0683 35.8612 81.4626 38.779C83.9682 44.0252 85.5197 50.0869 86.8721 58.0446C88.5914 68.1736 91.7573 82.2322 91.8622 85.1894C92.5 89.5 91.1493 73.9306 91.8203 70.4528C92.4283 67.2992 95.2588 63.6347 98.8022 62.6424C101.8 61.8074 105.312 61.5028 108.405 62.1021C111.686 62.7308 115.146 64.9315 116.435 67.0045C120.23 73.1349 120.304 85.661 120.461 84.9929C121.363 81.2989 121.205 72.9187 123.438 69.4311C124.906 67.1322 128.649 65.0592 130.64 64.7252C133.722 64.2143 137.507 64.0571 140.746 64.6466C143.357 65.128 146.89 68.036 147.844 69.4311C150.129 72.8107 151.429 82.3698 151.817 85.7199C151.974 87.1051 152.593 81.8687 154.889 78.4892C159.145 72.2114 174.209 70.9931 174.786 84.7669C175.048 91.1921 174.996 90.8973 174.996 95.2201C174.996 100.299 174.87 103.355 174.576 107.029C174.251 110.959 173.35 119.84 172.039 124.143C171.43 126.143 169.866 129.832 168.006 133.245C166.316 136.346 163.995 139.028 161.728 141.736C158.311 145.819 153.496 152.043 152.718 155.552C151.481 161.073 151.89 161.112 151.649 165.032C151.478 167.811 152.191 171.214 152.617 172.952C152.765 173.551 152.363 174.155 151.749 174.218C149.28 174.468 143.476 174.957 139.981 174.434C135.882 173.815 130.808 166.172 129.498 163.834C127.695 160.611 123.847 161.23 122.348 163.608C119.989 167.37 114.915 174.12 111.33 174.542C104.571 175.339 90.8016 174.881 79.624 174.751C78.9987 174.744 78.5252 174.174 78.6062 173.554C78.9638 170.816 79.4451 164.083 76.0427 161.397C72.8453 158.853 67.3415 153.695 64.0497 150.983L55.3275 141.935Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58.3056 139.139C55.5268 135.848 52.1512 129.117 46.1435 120.947C42.7384 116.326 34.2944 107.624 31.7798 103.204C29.5978 99.2982 29.8327 97.5469 30.3512 94.31C31.271 88.5516 37.5722 84.0678 44.2942 84.673C49.3724 85.1223 53.6776 88.2674 57.5522 91.2383C59.8907 93.0263 62.7674 96.5015 64.4992 98.4638C66.0941 100.261 66.4855 101.004 68.188 103.131C70.4384 105.946 71.1429 107.34 70.2819 104.241C69.5872 99.6925 68.4522 91.926 66.8084 85.0581C65.556 79.8499 65.2526 79.0338 64.0589 75.0359C62.7967 70.7813 62.151 67.8012 60.967 63.2899C60.1451 60.0989 58.6677 53.5795 58.2665 49.9117C57.7088 44.896 57.4152 36.7169 60.8496 32.9574C63.5404 30.014 69.7144 29.1246 73.5401 30.9402C78.5498 33.315 81.3971 40.1371 82.6985 42.8604C85.037 47.7569 86.4851 53.4144 87.7473 60.8417C89.3519 70.2953 92.3069 83.4168 92.4047 86.1768C93 90.2 91.7394 75.6686 92.3656 72.4226C92.9331 69.4792 95.5749 66.059 98.8821 65.1329C101.68 64.3535 104.958 64.0693 107.845 64.6286C110.907 65.2155 114.136 67.2694 115.34 69.2042C118.882 74.9259 118.95 86.6169 119.097 85.9934C119.938 82.5457 119.792 74.7242 121.876 71.469C123.246 69.3234 126.739 67.3886 128.598 67.0769C131.474 66.6 135.007 66.4533 138.03 67.0035C140.466 67.4528 143.764 70.1669 144.654 71.469C146.787 74.6233 148 83.5451 148.362 86.6719C148.509 87.9648 149.086 83.0775 151.229 79.9232C155.202 74.064 169.262 72.9269 169.8 85.7825C170.045 91.7793 169.996 91.5042 169.996 95.5387C169.996 100.279 169.879 103.131 169.605 106.56C169.301 110.228 168.46 118.517 167.237 122.534C166.686 124.34 165.302 127.622 163.64 130.718C161.971 133.829 159.645 136.512 157.386 139.226C154.214 143.036 149.913 148.651 149.204 151.848C148.049 157.001 148.431 157.038 148.206 160.697C148.048 163.25 148.691 166.369 149.091 168.012C149.237 168.612 148.835 169.216 148.221 169.278C145.875 169.514 140.541 169.955 137.316 169.472C133.49 168.894 128.754 161.76 127.531 159.578C125.848 156.57 122.257 157.148 120.858 159.367C118.657 162.879 113.921 169.178 110.575 169.573C104.283 170.314 91.4803 169.891 81.0622 169.769C80.4369 169.762 79.9638 169.189 80.0429 168.569C80.3752 165.964 80.7822 159.784 77.6399 157.304C74.6556 154.929 69.5187 150.115 66.4464 147.584L58.3056 139.139Z" stroke="black" stroke-width="8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M55.3275 141.935C52.3502 138.408 48.7334 131.197 42.2966 122.443C38.6483 117.492 29.6011 108.169 26.9069 103.433C24.5691 99.2481 24.8207 97.3716 25.3763 93.9036C26.3618 87.7339 33.1131 82.9298 40.3152 83.5782C45.7561 84.0596 50.3688 87.4293 54.5202 90.6124C57.0258 92.5282 60.1079 96.2516 61.9635 98.354C63.6723 100.28 64.0916 101.075 65.9157 103.355C68.3269 106.371 69.0817 107.864 68.1592 104.543C67.4148 99.6705 66.1988 91.3493 64.4375 83.9908C63.0957 78.4106 62.7707 77.5362 61.4917 73.2528C60.1394 68.6942 59.4474 65.5013 58.179 60.6677C57.2983 57.2488 55.7154 50.2637 55.2855 46.334C54.688 40.96 54.3735 32.1967 58.0532 28.1687C60.9361 25.0151 67.5511 24.0621 71.6501 26.0073C77.0177 28.5518 80.0683 35.8612 81.4626 38.779C83.9682 44.0252 85.5197 50.0869 86.8721 58.0446C88.5914 68.1736 91.7573 82.2322 91.8622 85.1894C92.5 89.5 91.1493 73.9306 91.8203 70.4528C92.4283 67.2992 95.2588 63.6347 98.8022 62.6424C101.8 61.8074 105.312 61.5028 108.405 62.1021C111.686 62.7308 115.146 64.9315 116.435 67.0045C120.23 73.1349 120.304 85.661 120.461 84.9929C121.363 81.2989 121.205 72.9187 123.438 69.4311C124.906 67.1322 128.649 65.0592 130.64 64.7252C133.722 64.2143 137.507 64.0571 140.746 64.6466C143.357 65.128 146.89 68.036 147.844 69.4311C150.129 72.8107 151.429 82.3698 151.817 85.7199C151.974 87.1051 152.593 81.8687 154.889 78.4892C159.145 72.2114 174.209 70.9931 174.786 84.7669C175.048 91.1921 174.996 90.8973 174.996 95.2201C174.996 100.299 174.87 103.355 174.576 107.029C174.251 110.959 173.35 119.84 172.039 124.143C171.43 126.143 169.866 129.832 168.006 133.245C166.316 136.346 163.995 139.028 161.728 141.736C158.311 145.819 153.496 152.043 152.718 155.552C151.481 161.073 151.89 161.112 151.649 165.032C151.478 167.811 152.191 171.214 152.617 172.952C152.765 173.551 152.363 174.155 151.749 174.218C149.28 174.468 143.476 174.957 139.981 174.434C135.882 173.815 130.808 166.172 129.498 163.834C127.695 160.611 123.847 161.23 122.348 163.608C119.989 167.37 114.915 174.12 111.33 174.542C104.571 175.339 90.8016 174.881 79.624 174.751C78.9987 174.744 78.5252 174.174 78.6062 173.554C78.9638 170.816 79.4451 164.083 76.0427 161.397C72.8453 158.853 67.3415 153.695 64.0497 150.983L55.3275 141.935Z" stroke="black" stroke-width="8"/>
</g>
<path d="M142 145V112" stroke="black" stroke-width="7" stroke-linecap="round"/>
<path d="M122 145V112" stroke="black" stroke-width="7" stroke-linecap="round"/>
<path d="M99 112V145" stroke="black" stroke-width="7" stroke-linecap="round"/>
</g> </g>
<path d="M139 142V111" stroke="black" stroke-width="7" stroke-linecap="round"/>
<path d="M121 142V111" stroke="black" stroke-width="7" stroke-linecap="round"/>
<path d="M99 111V142" stroke="black" stroke-width="7" stroke-linecap="round"/>
<defs> <defs>
<filter id="filter0_d" x="-0.999023" y="8.00024" width="197.999" height="197.999" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="8.00098" y="18.0002" width="177.999" height="177.999" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Before After
Before After

View file

@ -1,24 +1,24 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_40)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M51 147V7L152 108.571H92.9127L89.3314 109.655L51 147Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M51 147V7L152 108.571H92.9127L89.3314 109.655L51 147Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M129 152.644L97.6787 166L57 69.5129L89.0251 56L129 152.644Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M122.541 137.029C126.12 145.68 122.068 155.6 113.457 159.272V159.272C104.753 162.983 94.6909 158.913 91.0152 150.195L57 69.5129L89.0251 56L122.541 137.029Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M118 146.256L101.589 153L74 88.7524L90.3843 82L118 146.256Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M114.442 137.977C116.398 142.528 114.246 147.799 109.664 149.682V149.682C105.184 151.523 100.055 149.429 98.1442 144.978L74 88.7524L90.3843 82L114.442 137.977Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M59 28V125L84.8174 100.152L88.5391 98.9466H130L59 28Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M59 28V125L84.8174 100.152L88.5391 98.9466H130L59 28Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="29" y="-6" width="141" height="199" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="33" y="-1" width="131" height="183.645" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_40">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Before After
Before After

View file

@ -1,22 +1,22 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_40)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.2744 82.2029L64.0478 45.9404L10.167 99.989L64.7276 154.715L64.4871 118.286L116.685 118.576L134.82 118.699L135.041 155.148L189.088 101.1L134.355 46.3666L134.569 82.629L64.2744 82.2029Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M64.2744 82.2029L64.0478 45.9404L10.167 99.989L64.7276 154.715L64.4871 118.286L116.685 118.576L134.82 118.699L135.041 155.148L189.088 101.1L134.355 46.3666L134.569 82.629L64.2744 82.2029Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M55.2968 91.4843L55.2929 68.0439L22.9844 100.558L55.3038 133.057L55.3062 109.443L143.779 109.426L143.776 133.065L176.296 100.545L143.778 68.0266L143.769 91.4799L55.2968 91.4843Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M55.2968 91.4843L55.2929 68.0439L22.9844 100.558L55.3038 133.057L55.3062 109.443L143.779 109.426L143.776 133.065L176.296 100.545L143.778 68.0266L143.769 91.4799L55.2968 91.4843Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="-11.833" y="32.9404" width="218.921" height="149.207" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="-7.83301" y="37.9404" width="208.921" height="139.207" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_40">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Before After
Before After

View file

@ -1,23 +1,18 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_40)">
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M127.395 149.941V118.204H117.654V173H81V27H117.654V81.8047H127.395V50.1684L182.287 100.11L127.395 149.941Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.395 149.941V118.204H117.654V173H81V27H117.654V81.8047H127.395V50.1684L182.287 100.11L127.395 149.941Z" fill="#0000FF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.066 36V90.8283H136.064V70.3591L166.65 100.067L136.064 129.519V108.922H108.066V163.75H90V36H108.066Z" fill="#00FF00"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.066 36V90.8283H136.064V70.3591L166.65 100.067L136.064 129.519V108.922H108.066V163.75H90V36H108.066Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="59" y="14" width="141.287" height="186" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="63" y="19" width="131.288" height="176" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

View file

@ -1,18 +1,18 @@
<?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_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M148 31L53 31.7193L85.3834 60.4933C82.7049 63.3707 80.499 65.7593 80.0819 66.3034C78.6361 68.1755 72.8434 76.6786 71.101 80.2846C69.3678 83.8813 65.8922 93.1037 64.8727 99.0153C63.9459 104.447 64.0015 114.288 64.1498 118.465C64.2888 122.366 65.6327 130.067 66.9024 133.599C68.9322 139.216 70.0907 142.25 72.6951 146.28C75.6239 150.818 78.1912 153.354 82.2507 157.236C85.8746 160.695 102.53 168.617 102.53 168.617C99.9161 165.306 94.9946 155.788 93.8361 152.478C93.2244 150.725 91.621 142.232 91.2317 138.358C90.7961 134.033 90.5088 127.983 90.6478 123.658C90.7776 119.886 91.5932 116.197 92.5385 112.849C93.5488 109.243 96.5054 104.484 98.9058 101.173C100.787 98.5818 103.058 95.8981 106.293 92.8178C108.647 90.5676 111.4 88.179 114.208 86.1131L147.713 115.874L148 31Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M148 31L53 31.7193L85.3834 60.4933C82.7049 63.3707 80.499 65.7593 80.0819 66.3034C78.6361 68.1755 72.8434 76.6786 71.101 80.2846C69.3678 83.8813 65.8922 93.1037 64.8727 99.0153C63.9459 104.447 64.0015 114.288 64.1498 118.465C64.2888 122.366 65.6327 130.067 66.9024 133.599C68.9322 139.216 70.0907 142.25 72.6951 146.28C75.6239 150.818 78.1912 153.354 82.2507 157.236C85.8746 160.695 102.53 168.617 102.53 168.617C99.9161 165.306 94.9946 155.788 93.8361 152.478C93.2244 150.725 91.621 142.232 91.2317 138.358C90.7961 134.033 90.5088 127.983 90.6478 123.658C90.7776 119.886 91.5932 116.197 92.5385 112.849C93.5488 109.243 96.5054 104.484 98.9058 101.173C100.787 98.5818 103.058 95.8981 106.293 92.8178C108.647 90.5676 111.4 88.179 114.208 86.1131L147.713 115.874L148 31Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M138.233 97.0143L138.197 39.8784L81.3056 39.9154L97.9084 56.5646C96.6341 57.9136 94.8981 59.7522 93.8731 61.0365C91.3153 64.2425 89.7824 65.998 88.2403 67.7996C87.1507 69.0747 85.821 70.7285 84.7591 72.1791C83.2909 74.184 82.1736 76.152 81.4256 77.4917C80.4006 79.3026 79.3387 81.7418 78.0367 84.4212C76.2268 88.1538 75.6174 91.3137 75.091 93.4942C74.7309 94.9725 73.8906 98.7698 73.5582 102.299C73.2996 104.979 73.4843 108.065 73.4843 109.312C73.4843 111.492 73.2627 114.116 73.7336 118.366C74.1676 122.256 76.4669 130.849 78.1844 134.277C79.625 137.168 82.4506 142.869 82.4506 142.869C82.4506 142.869 80.8808 128.844 81.3794 121.757C81.6749 117.71 83.5494 110.827 85.9318 105.792C86.3474 104.932 86.4212 103.851 87.6494 101.893C88.6005 100.396 89.8655 98.3263 90.9274 96.6448C92.9035 93.5311 96.9665 88.5604 97.9361 87.2669C99.4966 85.188 104.031 81.058 106.598 78.7944C107.909 77.6395 111.15 74.9231 113.92 72.6226L138.233 97.0143Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M138.233 97.0143L138.197 39.8784L81.3056 39.9154L97.9084 56.5646C96.6341 57.9136 94.8981 59.7522 93.8731 61.0365C91.3153 64.2425 89.7824 65.998 88.2403 67.7996C87.1507 69.0747 85.821 70.7285 84.7591 72.1791C83.2909 74.184 82.1736 76.152 81.4256 77.4917C80.4006 79.3026 79.3387 81.7418 78.0367 84.4212C76.2268 88.1538 75.6174 91.3137 75.091 93.4942C74.7309 94.9725 73.8906 98.7698 73.5582 102.299C73.2996 104.979 73.4843 108.065 73.4843 109.312C73.4843 111.492 73.2627 114.116 73.7336 118.366C74.1676 122.256 76.4669 130.849 78.1844 134.276C79.625 137.168 82.4506 142.869 82.4506 142.869C82.4506 142.869 80.8808 128.844 81.3794 121.757C81.6749 117.71 83.5494 110.827 85.9318 105.792C86.3474 104.932 86.4212 103.851 87.6494 101.893C88.6005 100.396 89.8655 98.3263 90.9274 96.6448C92.9035 93.5311 96.9665 88.5604 97.9361 87.2669C99.4966 85.188 104.031 81.058 106.598 78.7944C107.909 77.6395 111.15 74.9231 113.92 72.6226L138.233 97.0143Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="31" y="18" width="135" height="177.617" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="35" y="23" width="125" height="167.617" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Before After
Before After

View file

@ -1,19 +1,19 @@
<?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_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M143.295 73.2714L88.7414 127.843L108.892 148.007L52.9932 147.996V92.0903L73.1546 112.254L127.73 57.7047L143.295 73.2714Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M143.295 73.2714L88.7414 127.843L108.892 148.007L52.9932 147.996V92.0903L73.1546 112.254L127.73 57.7047L143.295 73.2714Z" fill="#0000FF"/>
<path d="M146.831 76.8063L150.365 73.271L146.831 69.7361L131.266 54.1694L127.731 50.6343L124.196 54.1683L73.1557 105.184L56.5289 88.5549L47.9932 80.0181V92.0903V147.996V152.995L52.9922 152.996L108.891 153.007L120.96 153.009L112.429 144.472L95.8107 127.843L146.831 76.8063Z" stroke="#0000FF" stroke-width="10"/> <path d="M146.831 76.8063L150.365 73.271L146.831 69.7361L131.266 54.1694L127.731 50.6343L124.196 54.1683L73.1557 105.184L56.5289 88.5549L47.9932 80.0181V92.0903V147.996V152.995L52.9922 152.996L108.891 153.007L120.96 153.009L112.429 144.472L95.8107 127.843L146.831 76.8063Z" stroke="#0000FF" stroke-width="10"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M143.295 73.2714L88.7414 127.843L108.892 148.007L52.9932 147.996V92.0903L73.1546 112.254L127.73 57.7047L143.295 73.2714Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M143.295 73.2714L88.7414 127.843L108.892 148.007L52.9932 147.996V92.0903L73.1546 112.254L127.73 57.7047L143.295 73.2714Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="20.9932" y="30.5638" width="154.443" height="154.448" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="24.9932" y="35.5638" width="144.442" height="144.448" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Before After
Before After

View file

@ -1,19 +1,19 @@
<?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_494)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M52.9932 73.2714L107.547 127.843L87.3966 148.007L143.295 147.996V92.0903L123.134 112.254L68.5579 57.7047L52.9932 73.2714Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M52.9932 73.2714L107.547 127.843L87.3966 148.007L143.295 147.996V92.0903L123.134 112.254L68.5579 57.7047L52.9932 73.2714Z" fill="#0000FF"/>
<path d="M49.4574 69.7361L45.9229 73.271L49.4571 76.8063L100.478 127.843L83.8598 144.472L75.3288 153.009L87.3975 153.007L143.296 152.996L148.295 152.995V147.996V92.0903V80.0181L139.759 88.5549L123.133 105.184L72.0926 54.1683L68.5569 50.6343L65.0222 54.1694L49.4574 69.7361Z" stroke="#0000FF" stroke-width="10"/> <path d="M49.4574 69.7361L45.9229 73.271L49.4571 76.8063L100.478 127.843L83.8598 144.472L75.3288 153.009L87.3975 153.007L143.296 152.996L148.295 152.995V147.996V92.0903V80.0181L139.759 88.5549L123.133 105.184L72.0926 54.1683L68.5569 50.6343L65.0222 54.1694L49.4574 69.7361Z" stroke="#0000FF" stroke-width="10"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M52.9932 73.2714L107.547 127.843L87.3966 148.007L143.295 147.996V92.0903L123.134 112.254L68.5579 57.7047L52.9932 73.2714Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M52.9932 73.2714L107.547 127.843L87.3966 148.007L143.295 147.996V92.0903L123.134 112.254L68.5579 57.7047L52.9932 73.2714Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="16.8525" y="30.5638" width="154.443" height="154.448" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_494" x="20.8525" y="35.5638" width="144.443" height="144.448" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_494"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_494" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

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_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M56 42.7962C60.7226 40.9996 70.0398 42.0998 72.4995 47.5703C74.5951 52.2333 82.3006 67.9887 82.399 66.3133C82.6351 62.5889 82.1628 54.5346 83.7469 50.3257C84.898 47.2574 87.1609 44.3708 90.4962 43.3514C93.3003 42.4834 96.5962 42.1806 99.5085 42.7962C102.588 43.4422 105.825 45.693 107.035 47.8327C110.597 54.1208 110.656 66.9996 110.823 66.3133C111.453 63.5679 111.512 53.9088 113.607 50.3257C114.995 47.9538 118.497 45.8343 120.367 45.4911C123.259 44.9663 126.821 44.8048 129.851 45.4104C132.301 45.9049 135.617 48.8824 136.512 50.3257C138.667 53.7978 139.877 63.6083 140.241 67.0602C140.398 68.4833 140.969 63.0936 143.123 59.6316C147.118 53.1821 161.266 51.9305 161.797 66.0811C162.053 72.6821 161.994 72.3793 161.994 76.8203C161.994 82.0283 161.876 85.1774 161.601 88.9522C161.305 92.9794 160.459 102.114 159.229 106.534C158.383 109.573 155.579 116.406 152.805 120.503C152.805 120.503 142.238 133.12 141.087 138.792C139.936 144.475 140.319 144.515 140.083 148.532C139.921 151.428 140.608 154.977 141.006 156.742C141.139 157.33 140.747 157.916 140.147 157.982C137.815 158.24 132.406 158.734 129.133 158.191C125.286 157.565 120.524 149.713 119.294 147.311C117.602 144 113.991 144.636 112.584 147.079C110.38 150.944 105.608 157.878 102.253 158.312C95.9119 159.129 83.0221 158.653 72.5416 158.527C71.9229 158.52 71.4519 157.962 71.5262 157.348C71.8623 154.569 72.3393 147.584 69.1266 144.808C66.1258 142.183 60.9604 136.895 57.8711 134.109L49.6853 124.813C46.9009 121.18 39.8269 115.437 37.4558 104.778C35.3601 95.3311 35.5667 90.6983 37.8198 86.9134C40.1024 83.0679 44.4117 80.9685 46.2221 80.6052C48.2685 80.1813 53.0304 80.2116 54.8309 81.231C57.025 82.4724 57.9104 82.8358 59.6322 85.1774C61.8951 88.276 62.7019 89.7799 61.7278 86.3986C60.9801 83.7542 58.5598 80.3932 57.4578 76.6083C56.3854 72.9647 47.6076 59.1976 47.8142 53.3133C47.8929 51.0827 48.8276 45.5315 56 42.7962Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M64 52.8046C68.7226 50.9891 78.0398 52.1008 80.4995 57.6292C82.5952 62.3415 90.3006 78.2635 90.399 76.5703C90.6351 72.8066 90.1628 64.6671 91.7469 60.4137C92.898 57.313 95.1609 54.3958 98.4962 53.3657C101.3 52.4885 104.596 52.1825 107.508 52.8047C110.588 53.4574 113.825 55.732 115.035 57.8944C118.597 64.2489 118.656 77.2639 118.823 76.5703C119.453 73.7959 119.512 64.0347 121.607 60.4137C122.995 58.0168 126.497 55.8748 128.367 55.528C131.259 54.9976 134.821 54.8344 137.851 55.4464C140.301 55.9462 143.617 58.9552 144.512 60.4137C146.667 63.9225 147.877 73.8367 148.241 77.3251C148.398 78.7633 148.969 73.3165 151.123 69.818C155.118 63.3003 169.266 62.0355 169.797 76.3357C170.053 83.0064 169.994 82.7004 169.994 87.1883C169.994 92.4515 169.876 95.6338 169.601 99.4485C169.305 103.518 168.459 112.749 167.229 117.217C166.383 120.287 163.579 127.192 160.805 131.333C160.805 131.333 150.238 144.083 149.087 149.815C147.936 155.558 148.319 155.599 148.083 159.658C147.92 162.594 148.612 166.193 149.01 167.971C149.141 168.558 148.75 169.141 148.152 169.208C145.823 169.468 140.408 169.968 137.133 169.419C133.286 168.787 128.524 160.852 127.294 158.424C125.602 155.079 121.991 155.721 120.584 158.189C118.38 162.096 113.608 169.103 110.253 169.542C103.911 170.367 91.0203 169.886 80.5393 169.759C79.9214 169.751 79.4508 169.195 79.5245 168.582C79.8607 165.784 80.3449 158.705 77.1266 155.894C74.1258 153.243 68.9604 147.898 65.8711 145.083L57.6853 135.689C54.9009 132.017 47.8269 126.213 45.4558 115.442C43.3601 105.895 43.5667 101.213 45.8198 97.3882C48.1024 93.502 52.4117 91.3805 54.2221 91.0133C56.2685 90.5849 61.0304 90.6155 62.8309 91.6457C65.025 92.9002 65.9104 93.2674 67.6322 95.6338C69.8951 98.7652 70.7019 100.285 69.7278 96.868C68.9801 94.1956 66.5598 90.7991 65.4578 86.9741C64.3854 83.292 55.6076 69.3794 55.8142 63.4329C55.8929 61.1787 56.8276 55.5688 64 52.8046Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M56 42.7962C60.7226 40.9996 70.0398 42.0998 72.4995 47.5703C74.5951 52.2333 82.3006 67.9887 82.399 66.3133C82.6351 62.5889 82.1628 54.5346 83.7469 50.3257C84.898 47.2574 87.1609 44.3708 90.4962 43.3514C93.3003 42.4834 96.5962 42.1806 99.5085 42.7962C102.588 43.4422 105.825 45.693 107.035 47.8327C110.597 54.1208 110.656 66.9996 110.823 66.3133C111.453 63.5679 111.512 53.9088 113.607 50.3257C114.995 47.9538 118.497 45.8343 120.367 45.4911C123.259 44.9663 126.821 44.8048 129.851 45.4104C132.301 45.9049 135.617 48.8824 136.512 50.3257C138.667 53.7978 139.877 63.6083 140.241 67.0602C140.398 68.4833 140.969 63.0936 143.123 59.6316C147.118 53.1821 161.266 51.9305 161.797 66.0811C162.053 72.6821 161.994 72.3793 161.994 76.8203C161.994 82.0283 161.876 85.1774 161.601 88.9522C161.305 92.9794 160.459 102.114 159.229 106.534C158.383 109.573 155.579 116.406 152.805 120.503C152.805 120.503 142.238 133.12 141.087 138.792C139.936 144.475 140.319 144.515 140.083 148.532C139.921 151.428 140.608 154.977 141.006 156.742C141.139 157.33 140.747 157.916 140.147 157.982C137.815 158.24 132.406 158.734 129.133 158.191C125.286 157.565 120.524 149.713 119.294 147.311C117.602 144 113.991 144.636 112.584 147.079C110.38 150.944 105.608 157.878 102.253 158.312C95.9119 159.129 83.0221 158.653 72.5416 158.527C71.9229 158.52 71.4519 157.962 71.5262 157.348C71.8623 154.569 72.3393 147.584 69.1266 144.808C66.1258 142.183 60.9604 136.895 57.8711 134.109L49.6853 124.813C46.9009 121.18 39.8269 115.437 37.4558 104.778C35.3601 95.3311 35.5667 90.6983 37.8198 86.9134C40.1024 83.0679 44.4117 80.9685 46.2221 80.6052C48.2685 80.1813 53.0304 80.2116 54.8309 81.231C57.025 82.4724 57.9104 82.8358 59.6322 85.1774C61.8951 88.276 62.7019 89.7799 61.7278 86.3986C60.9801 83.7542 58.5598 80.3932 57.4578 76.6083C56.3854 72.9647 47.6076 59.1976 47.8142 53.3133C47.8929 51.0827 48.8276 45.5315 56 42.7962Z" stroke="black" stroke-width="8"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M64 52.8046C68.7226 50.9891 78.0398 52.1008 80.4995 57.6292C82.5952 62.3415 90.3006 78.2635 90.399 76.5703C90.6351 72.8066 90.1628 64.6671 91.7469 60.4137C92.898 57.313 95.1609 54.3958 98.4962 53.3657C101.3 52.4885 104.596 52.1825 107.508 52.8047C110.588 53.4574 113.825 55.732 115.035 57.8944C118.597 64.2489 118.656 77.2639 118.823 76.5703C119.453 73.7959 119.512 64.0347 121.607 60.4137C122.995 58.0168 126.497 55.8748 128.367 55.528C131.259 54.9976 134.821 54.8344 137.851 55.4464C140.301 55.9462 143.617 58.9552 144.512 60.4137C146.667 63.9225 147.877 73.8367 148.241 77.3251C148.398 78.7633 148.969 73.3165 151.123 69.818C155.118 63.3003 169.266 62.0355 169.797 76.3357C170.053 83.0064 169.994 82.7004 169.994 87.1883C169.994 92.4515 169.876 95.6338 169.601 99.4485C169.305 103.518 168.459 112.749 167.229 117.217C166.383 120.287 163.579 127.192 160.805 131.333C160.805 131.333 150.238 144.083 149.087 149.815C147.936 155.558 148.319 155.599 148.083 159.658C147.92 162.594 148.612 166.193 149.01 167.971C149.141 168.558 148.75 169.141 148.152 169.208C145.823 169.468 140.408 169.968 137.133 169.419C133.286 168.787 128.524 160.852 127.294 158.424C125.602 155.079 121.991 155.721 120.584 158.189C118.38 162.096 113.608 169.103 110.253 169.542C103.911 170.367 91.0203 169.886 80.5393 169.759C79.9214 169.751 79.4508 169.195 79.5245 168.582C79.8607 165.784 80.3449 158.705 77.1266 155.894C74.1258 153.243 68.9604 147.898 65.8711 145.083L57.6853 135.689C54.9009 132.017 47.8269 126.213 45.4558 115.442C43.3601 105.895 43.5667 101.213 45.8198 97.3882C48.1024 93.502 52.4117 91.3805 54.2221 91.0133C56.2685 90.5849 61.0304 90.6155 62.8309 91.6457C65.025 92.9002 65.9104 93.2674 67.6322 95.6338C69.8951 98.7652 70.7019 100.285 69.7278 96.868C68.9801 94.1956 66.5598 90.7991 65.4578 86.9741C64.3854 83.292 55.6076 69.3794 55.8142 63.4329C55.8929 61.1787 56.8276 55.5688 64 52.8046Z" stroke="black" stroke-width="8"/>
</g> </g>
<path d="M131.308 127.28V94.1642" stroke="black" stroke-width="7" stroke-linecap="round"/> <path d="M139.831 138.07V105.239" stroke="black" stroke-width="7" stroke-linecap="round"/>
<path d="M111.115 128.087V94.1642" stroke="black" stroke-width="7" stroke-linecap="round"/> <path d="M119.422 138.07V105.239" stroke="black" stroke-width="7" stroke-linecap="round"/>
<path d="M91.731 94.1642V127.28" stroke="black" stroke-width="7" stroke-linecap="round"/> <path d="M99.9014 105.239V138.07" stroke="black" stroke-width="7" stroke-linecap="round"/>
<defs> <defs>
<filter id="filter0_d" x="10" y="25.0001" width="174" height="164.78" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="22" y="40.0001" width="164" height="156.014" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 5 KiB

Before After
Before After

View file

@ -1,23 +1,18 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_40)">
<g filter="url(#filter0_d)"> <path d="M139.472 21L129.714 30.9195L46.5478 115.253L45.7391 116.511L45.6849 116.584C44.8413 117.932 42.8714 121.305 39.8625 127.42C36.8295 133.585 33.0882 141.992 30.0327 151.626L22 177L47.3741 168.967C57.0176 165.911 65.4184 162.169 71.58 159.138C77.6929 156.131 81.04 154.179 82.4161 153.315L82.4879 153.26L83.7458 152.451L178 59.5282L139.472 21Z" fill="#0000FF"/>
<path d="M139.472 21L129.714 30.9195L46.5478 115.253L45.7391 116.511L45.6849 116.584C44.8413 117.932 42.8714 121.305 39.8625 127.42C36.8295 133.585 33.0882 141.992 30.0327 151.626L22 177L47.3741 168.967C57.0176 165.911 65.4184 162.169 71.58 159.138C77.6929 156.131 81.04 154.179 82.4161 153.315L82.4879 153.26L83.7458 152.451L178 59.5282L139.472 21Z" fill="#0000FF"/>
</g>
<path d="M138.342 37L135.185 40.2087L55.1074 121.42L54.8457 121.821C54.2939 122.703 52.4335 125.839 49.6315 131.535C46.8295 137.23 43.3808 145.013 40.5984 153.786L38 162L46.2136 159.402C54.9939 156.619 62.7704 153.17 68.4653 150.368C74.1602 147.567 77.2779 145.719 78.1786 145.154L78.5795 144.893L163 61.6582L138.342 37ZM63.8091 125.309L74.6909 136.191L73.1039 137.76C73.1664 137.716 69.7241 139.789 64.5241 142.347C62.6116 143.287 59.7431 144.334 57.0778 145.364L54.6364 142.922C55.6661 140.257 56.7122 137.389 57.6533 135.476C60.2122 130.275 62.274 126.852 62.2397 126.896L63.8091 125.309Z" fill="#00FF00"/>
</g> </g>
<path d="M138.342 37L135.185 40.2087L55.1074 121.42L54.8457 121.821C54.2939 122.703 52.4335 125.839 49.6315 131.535C46.8295 137.23 43.3808 145.013 40.5984 153.786L38 162L46.2136 159.402C54.9939 156.619 62.7704 153.17 68.4653 150.368C74.1602 147.567 77.2779 145.719 78.1786 145.154L78.5795 144.893L163 61.6582L138.342 37ZM63.8091 125.309L74.6909 136.191L73.1039 137.76C73.1664 137.716 69.7241 139.789 64.5241 142.347C62.6116 143.287 59.7431 144.334 57.0778 145.364L54.6364 142.922C55.6661 140.257 56.7122 137.389 57.6533 135.476C60.2122 130.275 62.274 126.852 62.2397 126.896L63.8091 125.309Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="0" y="8" width="196" height="196" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="4" y="13" width="186" height="186" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Before After
Before After

View file

@ -1,20 +1,20 @@
<?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_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.675 158H82.325V42H115.675V158Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M115.675 158H82.325V42H115.675V158Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M41 83.325H157V116.675H41V83.325Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M41 83.325H157V116.675H41V83.325Z" fill="#00FF00"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M106.975 149.3H91.0252V50.7H106.975V149.3Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M106.975 149.3H91.0252V50.7H106.975V149.3Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.7002 92.025H148.3V107.975H49.7002V92.025Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M49.7002 92.025H148.3V107.975H49.7002V92.025Z" fill="#0000FF"/>
<defs> <defs>
<filter id="filter0_d" x="19" y="29" width="156" height="156" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="23" y="34" width="146" height="146" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before After
Before After

View file

@ -1,20 +1,20 @@
<?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_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.7074 50.8678C80.4576 46.2864 91.1229 42.6532 100.194 42.5969C114.56 42.5124 122.122 46.8779 128.907 53.4026C135.435 59.6832 138.434 66.0952 137.95 75.9339C137.561 83.9419 135.416 88.5889 132.218 92.9356C130.34 95.5737 126.743 98.9534 121.42 103.056L116.363 107.093C113.232 110.097 111.865 111.439 110.67 114.791C109.778 117.288 110.717 153.499 110.67 157.404H91.6163C91.5878 147.866 90.582 110.538 91.6163 106.426C92.6316 102.427 96.3796 99.5354 101.703 95.4328L107.092 91.2458C108.876 89.9314 111.78 87.3591 112.862 85.7913C114.835 83.1063 116.031 79.3887 116.192 76.1686C116.344 73.1362 115.423 69.6063 112.928 66.527C109.967 62.8657 106.257 60.5375 99.027 60.8567C93.3243 61.1101 88.9595 63.9829 86.2931 66.696C83.1619 69.888 81.7955 75.1828 81.5678 79.3699H62.8086C63.3969 65.438 66.1676 57.6647 74.7074 50.8678Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M74.7074 50.8678C80.4576 46.2864 91.1229 42.6532 100.194 42.5969C114.56 42.5124 122.122 46.8779 128.907 53.4026C135.435 59.6832 138.434 66.0952 137.95 75.9339C137.561 83.9419 135.416 88.5889 132.218 92.9356C130.34 95.5737 126.743 98.9534 121.42 103.056L116.363 107.093C113.232 110.097 111.865 111.439 110.67 114.791C109.778 117.288 110.717 153.499 110.67 157.404H91.6163C91.5878 147.866 90.582 110.538 91.6163 106.426C92.6316 102.427 96.3796 99.5354 101.703 95.4328L107.092 91.2458C108.876 89.9314 111.78 87.3591 112.862 85.7913C114.835 83.1063 116.031 79.3887 116.192 76.1686C116.344 73.1362 115.423 69.6063 112.928 66.527C109.967 62.8657 106.257 60.5375 99.027 60.8567C93.3243 61.1101 88.9595 63.9829 86.2931 66.696C83.1619 69.888 81.7955 75.1828 81.5678 79.3699H62.8086C63.3969 65.438 66.1676 57.6647 74.7074 50.8678Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.7074 50.8678C80.4576 46.2864 91.1229 42.6532 100.194 42.5969C114.56 42.5124 122.122 46.8779 128.907 53.4026C135.435 59.6832 138.434 66.0952 137.95 75.9339C137.561 83.9419 135.416 88.5889 132.218 92.9356C130.34 95.5737 126.743 98.9534 121.42 103.056L116.363 107.093C113.232 110.097 111.865 111.439 110.67 114.791C109.778 117.288 110.717 153.499 110.67 157.404H91.6163C91.5878 147.866 90.582 110.538 91.6163 106.426C92.6316 102.427 96.3796 99.5354 101.703 95.4328L107.092 91.2458C108.876 89.9314 111.78 87.3591 112.862 85.7913C114.835 83.1063 116.031 79.3887 116.192 76.1686C116.344 73.1362 115.423 69.6063 112.928 66.527C109.967 62.8657 106.257 60.5375 99.027 60.8567C93.3243 61.1101 88.9595 63.9829 86.2931 66.696C83.1619 69.888 81.7955 75.1828 81.5678 79.3699H62.8086C63.3969 65.438 66.1676 57.6647 74.7074 50.8678Z" stroke="#0000FF" stroke-width="20"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M74.7074 50.8678C80.4576 46.2864 91.1229 42.6532 100.194 42.5969C114.56 42.5124 122.122 46.8779 128.907 53.4026C135.435 59.6832 138.434 66.0952 137.95 75.9339C137.561 83.9419 135.416 88.5889 132.218 92.9356C130.34 95.5737 126.743 98.9534 121.42 103.056L116.363 107.093C113.232 110.097 111.865 111.439 110.67 114.791C109.778 117.288 110.717 153.499 110.67 157.404H91.6163C91.5878 147.866 90.582 110.538 91.6163 106.426C92.6316 102.427 96.3796 99.5354 101.703 95.4328L107.092 91.2458C108.876 89.9314 111.78 87.3591 112.862 85.7913C114.835 83.1063 116.031 79.3887 116.192 76.1686C116.344 73.1362 115.423 69.6063 112.928 66.527C109.967 62.8657 106.257 60.5375 99.027 60.8567C93.3243 61.1101 88.9595 63.9829 86.2931 66.696C83.1619 69.888 81.7955 75.1828 81.5678 79.3699H62.8086C63.3969 65.438 66.1676 57.6647 74.7074 50.8678Z" stroke="#0000FF" stroke-width="20"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.4648 50.2292C83.1196 45.9125 89.2779 42.5957 99.6276 42.5957C115.066 42.5957 118.561 44.9223 126.476 51.2868C133.637 57.0456 138 64.5157 138 75.1295C138 81.6382 134.525 88.6661 131.297 93.1174C129.417 95.8189 126.915 98.5012 121.559 102.712L115.716 107.231C112.851 109.48 110.006 112.884 109.061 115.883C108.469 117.787 108.507 121.873 108.469 125.872H91.1064C91.4024 117.412 91.0347 110.442 92.3236 107.211C93.6126 103.981 96.9352 100.261 102.291 96.0592L107.514 91.7714C109.299 90.4254 112.049 88.368 113.138 86.7625C115.124 84.0129 116.852 80.0231 116.852 76.7158C116.852 72.9087 117.062 70.2168 114.856 67.0826C112.278 63.4485 109.93 59.4491 98.8352 59.2568C90.1945 59.103 86.509 63.5543 84.1126 67.3999C81.7065 71.2647 80.8854 75.6487 80.8854 79.8019H62C62.6015 65.5347 67.1653 56.1899 76.4648 50.2292Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M76.4648 50.2292C83.1196 45.9125 89.2779 42.5957 99.6276 42.5957C115.066 42.5957 118.561 44.9223 126.476 51.2868C133.637 57.0456 138 64.5157 138 75.1295C138 81.6382 134.525 88.6661 131.297 93.1174C129.417 95.8189 126.915 98.5012 121.559 102.712L115.716 107.231C112.851 109.48 110.006 112.884 109.061 115.883C108.469 117.787 108.507 121.873 108.469 125.872H91.1064C91.4024 117.412 91.0347 110.442 92.3236 107.211C93.6126 103.981 96.9352 100.261 102.291 96.0592L107.514 91.7714C109.299 90.4254 112.049 88.368 113.138 86.7625C115.124 84.0129 116.852 80.0231 116.852 76.7158C116.852 72.9087 117.062 70.2168 114.856 67.0826C112.278 63.4485 109.93 59.4491 98.8352 59.2568C90.1945 59.103 86.509 63.5543 84.1126 67.3999C81.7065 71.2647 80.8854 75.6487 80.8854 79.8019H62C62.6015 65.5347 67.1653 56.1899 76.4648 50.2292Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.1064 138H108.894V155.787H91.1064V138Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M91.1064 138H108.894V155.787H91.1064V138Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="30.3774" y="19.5957" width="135.623" height="174.809" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="34.3774" y="24.5957" width="125.623" height="164.808" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Before After
Before After

View file

@ -1,25 +1,20 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_40)">
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M156 160V20L55 121.571H114.087L117.669 122.655L156 160Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M156 160V20L55 121.571H114.087L117.669 122.655L156 160Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M83.4587 150.029C79.8803 158.68 83.9318 168.6 92.5434 172.272V172.272C101.247 175.983 111.309 171.913 114.985 163.195L149 82.5129L116.975 69L83.4587 150.029Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M77 165.644L108.321 179L149 82.5129L116.975 69L77 165.644Z" fill="#0000FF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M88 159.256L104.411 166L132 101.752L115.616 95L88 159.256Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M147 41V138L121.183 113.152L117.461 111.947H76L147 41Z" fill="#00FF00"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.5584 150.977C89.6025 155.528 91.7538 160.799 96.3357 162.682V162.682C100.816 164.523 105.945 162.429 107.856 157.978L132 101.752L115.616 95L91.5584 150.977Z" fill="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M147 41V138L121.183 113.152L117.461 111.947H76L147 41Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="33" y="7" width="141" height="199" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="37" y="12" width="131" height="183.645" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Before After
Before After

View file

@ -1,22 +1,22 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_40)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.8928 149.941V118.204H80.634V173H117.287V27H80.634V81.8047H70.8928V50.1684L16 100.11L70.8928 149.941Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M70.8928 149.941V118.204H80.634V173H117.287V27H80.634V81.8047H70.8928V50.1684L16 100.11L70.8928 149.941Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.2215 36V90.8283H62.224V70.3591L31.6377 100.067L62.224 129.519V108.922H90.2215V163.75H108.288V36H90.2215Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M90.2215 36V90.8283H62.224V70.3591L31.6377 100.067L62.224 129.519V108.922H90.2215V163.75H108.288V36H90.2215Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="-6" y="14" width="141.287" height="186" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="-2" y="19" width="131.288" height="176" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_40">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before After
Before After

View file

@ -1,22 +1,22 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_40)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M79.3434 48L79.3333 118.536H39L99.4899 179.014L160 118.536H119.667V48H79.3434Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M79.3434 48L79.3333 118.536H39L99.4899 179.014L160 118.536H119.667V48H79.3434Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M109.623 58.0138V128.644H135.8L99.5002 164.828L63.2002 128.644H89.3775L89.3876 58.0138H109.623Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M109.623 58.0138V128.644H135.8L99.5002 164.828L63.2002 128.644H89.3775L89.3876 58.0138H109.623Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="17" y="35" width="161" height="171.014" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="21" y="40" width="151" height="161.014" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_40">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before After
Before After

View file

@ -1,23 +1,18 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_40)">
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M82.2222 30V82.9279H73.1467V52.3837L20 100.606L73.1467 148.731V118.081H82.2222V171H82.4H117.609V118.072H127.013V148.625L180 100.394L127.013 52.2692V82.9191H117.609V30H82.2222Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M82.2222 30V82.9279H73.1467V52.3837L20 100.606L73.1467 148.731V118.081H82.2222V171H82.4H117.609V118.072H127.013V148.625L180 100.394L127.013 52.2692V82.9191H117.609V30H82.2222Z" fill="#0000FF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M165 100.307L135.599 71.4087V91.6188H108.856V38.1793H108.687V38H91.4986V91.7982H64.4006V71.3549L35 100.504L64.4006 129.412V109.202H91.4986V163H91.6757H108.687H108.856V109.202H135.599V129.457L165 100.307Z" fill="#00FF00"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M165 100.307L135.599 71.4087V91.6188H108.856V38.1793H108.687V38H91.4986V91.7982H64.4006V71.3549L35 100.504L64.4006 129.412V109.202H91.4986V163H91.6757H108.687H108.856V109.202H135.599V129.457L165 100.307Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="-2" y="17" width="200" height="181" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="2" y="22" width="190" height="171" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

View file

@ -1,23 +1,18 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_494)">
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M150.014 80.3434L79.478 80.3333V40L19 100.49L79.478 161V120.667H150.014V80.3434Z" fill="#0000FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M150.014 80.3434L79.478 80.3333V40L19 100.49L79.478 161V120.667H150.014V80.3434Z" fill="#0000FF"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M140.914 110.536H70.2832V136.714L34.1001 100.414L70.2832 64.1136V90.2909L140.914 90.3011V110.536Z" fill="#00FF00"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M140.914 110.536H70.2832V136.714L34.1001 100.414L70.2832 64.1136V90.2909L140.914 90.3011V110.536Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="-3" y="27" width="171.014" height="161" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_494" x="1" y="32" width="161.014" height="151" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_494"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_494" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

View file

@ -1,18 +1,18 @@
<?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_494)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M48 80.3434L118.536 80.3333V40L179.014 100.49L118.536 161V120.667H48V80.3434Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M48 80.3434L118.536 80.3333V40L179.014 100.49L118.536 161V120.667H48V80.3434Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M57.0996 110.536H127.73V136.714L163.913 100.414L127.73 64.1136V90.2909L57.0996 90.3011V110.536Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M57.0996 110.536H127.73V136.714L163.913 100.414L127.73 64.1136V90.2909L57.0996 90.3011V110.536Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="26" y="27" width="171.014" height="161" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_494" x="30" y="32" width="161.014" height="151" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_494"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_494" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

View file

@ -1,18 +1,18 @@
<?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_494)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M80.3434 151.014L80.3333 80.478H40L100.49 20L161 80.478H120.667V151.014H80.3434Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M80.3434 151.014L80.3333 80.478H40L100.49 20L161 80.478H120.667V151.014H80.3434Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M110.623 141V70.3693H136.8L100.5 34.1862L64.2002 70.3693H90.3775L90.3876 141H110.623Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M110.623 141V70.3693H136.8L100.5 34.1862L64.2002 70.3693H90.3775L90.3876 141H110.623Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="18" y="7" width="161" height="171.014" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_494" x="22" y="12" width="151" height="161.014" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_494"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_494" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

View file

@ -1,22 +1,22 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_40)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.5 118.278H82.4279V127.353H51.8837L100.106 180.5L148.231 127.353H117.581V118.278H170.5V82.8911H117.572V73.4867H148.125L99.8943 20.5L51.7692 73.4867H82.4191V82.8911H29.5V118.278Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.5 118.278H82.4279V127.353H51.8837L100.106 180.5L148.231 127.353H117.581V118.278H170.5V82.8911H117.572V73.4867H148.125L99.8943 20.5L51.7692 73.4867H82.4191V82.8911H29.5V118.278Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M99.8072 35.5L70.9087 64.9005H91.1188V91.6444H37.6793V91.8127H37.5V109.001H91.2982V136.099H70.8549L100.004 165.5L128.912 136.099H108.702V109.001H162.5V91.6444H108.702V64.9005H128.957L99.8072 35.5Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M99.8072 35.5L70.9087 64.9005H91.1188V91.6444H37.6793V91.8127H37.5V109.001H91.2982V136.099H70.8549L100.004 165.5L128.912 136.099H108.702V109.001H162.5V91.6444H108.702V64.9005H128.957L99.8072 35.5Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="7.5" y="7.5" width="181" height="200" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="11.5" y="12.5" width="171" height="190" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_40">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Before After
Before After

View file

@ -1,22 +1,22 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_494)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_494)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M81.2869 135.897L45.0244 136.124L99.073 190.005L153.799 135.444L117.37 135.685L117.66 83.4866L117.783 65.3521L154.232 65.1307L100.184 11.0833L45.4506 65.8169L81.713 65.6031L81.2869 135.897Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M81.2869 135.897L45.0244 136.124L99.073 190.005L153.799 135.444L117.37 135.685L117.66 83.4866L117.783 65.3521L154.232 65.1307L100.184 11.0833L45.4506 65.8169L81.713 65.6031L81.2869 135.897Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.5681 144.875L67.1276 144.879L99.6414 177.187L132.14 144.868L108.527 144.866L108.509 56.3933L132.149 56.3957L99.6285 23.8756L67.1104 56.3938L90.5636 56.4027L90.5681 144.875Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M90.5681 144.875L67.1276 144.879L99.6414 177.187L132.14 144.868L108.527 144.866L108.509 56.3933L132.149 56.3957L99.6285 23.8756L67.1104 56.3938L90.5636 56.4027L90.5681 144.875Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="23.0244" y="-1.91675" width="149.207" height="218.921" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_494" x="27.0244" y="3.08325" width="139.208" height="208.922" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_494"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_494" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_494">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Before After
Before After

View file

@ -1,22 +1,22 @@
<?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 clip-path="url(#clip0)"> <g clip-path="url(#clip0_494)">
<g filter="url(#filter0_d)"> <g filter="url(#filter0_d_494)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.0589 124.395H80.7956V114.654H26V78H172V114.654H117.195V124.395H148.832L98.8905 179.287L49.0589 124.395Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M49.0589 124.395H80.7956V114.654H26V78H172V114.654H117.195V124.395H148.832L98.8905 179.287L49.0589 124.395Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M163 105.066H108.172V133.064H128.641L98.9331 163.65L69.4811 133.064H90.0783V105.066H35.25V86.9999H163V105.066Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M163 105.066H108.172V133.064H128.641L98.9331 163.65L69.4811 133.064H90.0783V105.066H35.25V86.9999H163V105.066Z" fill="#00FF00"/>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="4" y="65" width="186" height="141.287" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_494" x="8" y="70" width="176" height="131.287" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_494"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_494" result="shape"/>
</filter> </filter>
<clipPath id="clip0"> <clipPath id="clip0_494">
<rect width="200" height="200" fill="white"/> <rect width="200" height="200" fill="white"/>
</clipPath> </clipPath>
</defs> </defs>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before After
Before After

View file

@ -1,18 +1,18 @@
<?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_495)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M73.2051 104.411L42.011 135.622L42 42.011L135.593 42L104.41 73.2L159 127.822L127.828 159L73.2051 104.411Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73.2051 104.411L42.011 135.622L42 42.011L135.593 42L104.41 73.2L159 127.822L127.828 159L73.2051 104.411Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M143.295 127.729L88.7414 73.1572L108.892 52.9933L52.9932 53.0043V108.91L73.1546 88.7459L127.73 143.295L143.295 127.729Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M143.295 127.729L88.7414 73.1572L108.892 52.9933L52.9932 53.0043V108.91L73.1546 88.7459L127.73 143.295L143.295 127.729Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="20" y="29" width="157" height="157" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_495" x="24" y="34" width="147" height="147" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_495"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_495" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

View file

@ -1,18 +1,18 @@
<?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_495)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.795 104.411L158.989 135.622L159 42.011L65.4066 42L96.5897 73.2L42 127.822L73.1721 159L127.795 104.411Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M127.795 104.411L158.989 135.622L159 42.011L65.4066 42L96.5897 73.2L42 127.822L73.1721 159L127.795 104.411Z" fill="#0000FF"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M57.7051 127.729L112.259 73.1572L92.1085 52.9933L148.007 53.0043V108.91L127.846 88.7459L73.2698 143.295L57.7051 127.729Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M57.7051 127.729L112.259 73.1572L92.1085 52.9933L148.007 53.0043V108.91L127.846 88.7459L73.2698 143.295L57.7051 127.729Z" fill="#00FF00"/>
<defs> <defs>
<filter id="filter0_d" x="20" y="29" width="157" height="157" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_495" x="24" y="34" width="147" height="147" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_495"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_495" result="shape"/>
</filter> </filter>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

View file

@ -1,24 +1,19 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_40)">
<g filter="url(#filter0_d)"> <path d="M47.5743 74H40.0521C39.7553 78.9724 40.7296 83.9388 42.8853 88.4422C45.0409 92.9456 48.3089 96.8416 52.3885 99.7718C48.3089 102.702 45.0409 106.598 42.8853 111.101C40.7296 115.605 39.7553 120.571 40.0521 125.544H47.5743C46.2955 115.888 52.0876 106.53 61.4151 103.263H99.7783V110.69H107.3V103.263H138.593C147.92 106.605 153.637 115.888 152.434 125.544H159.956C160.227 120.582 159.249 115.632 157.109 111.135C154.97 106.637 151.735 102.734 147.695 99.7718C151.735 96.8101 154.97 92.9063 157.109 88.4091C159.249 83.9119 160.227 78.9614 159.956 74H152.434C152.92 78.6419 151.822 83.3112 149.315 87.267C146.808 91.2229 143.034 94.2385 138.593 95.8355H107.225V88.4085H99.7031V95.8355H61.4904C57.0276 94.2627 53.2295 91.255 50.7059 87.2951C48.1822 83.3353 47.0793 78.653 47.5743 74Z" fill="#0000FF"/>
<path d="M165.595 132H174.935C175.304 125.826 174.094 119.659 171.417 114.068C168.741 108.476 164.683 103.638 159.618 100C164.683 96.3617 168.741 91.5242 171.417 85.9324C174.094 80.3406 175.304 74.1741 174.935 68H165.595C167.183 79.9885 159.991 91.6081 148.41 95.6657H100.775V86.4438H91.4353V95.6657H52.5807C40.999 91.5158 33.9006 79.9885 35.395 68H26.0549C25.7184 74.1604 26.9326 80.3073 29.5893 85.8913C32.2459 91.4753 36.2622 96.3225 41.2792 100C36.2622 103.677 32.2459 108.525 29.5893 114.109C26.9326 119.693 25.7184 125.84 26.0549 132H35.395C34.7909 126.236 36.1537 120.439 39.2672 115.527C42.3806 110.615 47.0663 106.871 52.5807 104.888H91.5287V114.11H100.869V104.888H148.316C153.857 106.84 158.573 110.575 161.707 115.492C164.84 120.409 166.21 126.223 165.595 132Z" fill="#0000FF"/> <path d="M51.5519 74.4231L52.0224 70H47.5743H40.0521H36.2838L36.0592 73.7617C35.7219 79.4129 36.8294 85.0554 39.2773 90.1692C40.9958 93.7594 43.3355 97.0067 46.1766 99.7718C43.3355 102.537 40.9958 105.784 39.2773 109.374C36.8294 114.488 35.7219 120.131 36.0592 125.782L36.2838 129.544H40.0521H47.5743H52.139L51.5397 125.018C50.5412 117.48 54.9236 110.098 62.1324 107.263H95.7783V110.69V114.69H99.7783H107.3H111.3V110.69V107.263H137.861C145.078 110.159 149.407 117.488 148.464 125.049L147.904 129.544H152.434H159.956H163.743L163.95 125.762C164.257 120.131 163.147 114.515 160.721 109.416C159.009 105.818 156.68 102.557 153.851 99.7718C156.68 96.9866 159.009 93.726 160.721 90.1275C163.147 85.0283 164.257 79.4122 163.95 73.7818L163.743 70H159.956H152.434H147.992L148.455 74.4169C148.848 78.1594 147.964 81.9278 145.937 85.1255C144.026 88.1399 141.2 90.488 137.858 91.8355H111.225V88.4085V84.4085H107.225H99.7031H95.7031V88.4085V91.8355H62.2112C58.8497 90.507 56.003 88.1641 54.079 85.1453C52.0407 81.9469 51.1531 78.1713 51.5519 74.4231Z" stroke="#0000FF" stroke-width="8"/>
<path d="M161.618 131.577L161.147 136H165.595H174.935H178.704L178.928 132.238C179.337 125.385 177.994 118.543 175.025 112.341C172.796 107.683 169.704 103.5 165.927 100C169.704 96.4997 172.796 92.3171 175.025 87.6594C177.994 81.4573 179.337 74.6146 178.928 67.7617L178.704 64H174.935H165.595H161.031L161.63 68.5252C162.937 78.3944 157.159 88.0366 147.7 91.6657H104.775V86.4438V82.4438H100.775H91.4353H87.4353V86.4438V91.6657H53.3047C43.8373 87.9566 38.1312 78.3864 39.3643 68.4948L39.9246 64H35.395H26.0549H22.2675L22.0609 67.7818C21.6878 74.6112 23.0342 81.4237 25.9772 87.6097C28.1969 92.2753 31.2719 96.4735 35.0298 100C31.2719 103.527 28.1969 107.725 25.9772 112.39C23.0342 118.576 21.6878 125.389 22.0609 132.218L22.2675 136H26.0549H35.395H39.8361L39.3732 131.583C38.8634 126.719 40.0127 121.822 42.6456 117.668C45.1609 113.7 48.8955 110.624 53.3074 108.888H87.5287V114.11V118.11H91.5287H100.869H104.869V114.11V108.888H147.603C152.04 110.599 155.801 113.668 158.334 117.642C160.982 121.797 162.136 126.704 161.618 131.577Z" stroke="#0000FF" stroke-width="8"/>
</g>
<path d="M165.595 132H174.935C175.304 125.826 174.094 119.659 171.417 114.068C168.741 108.476 164.683 103.638 159.618 100C164.683 96.3617 168.741 91.5242 171.417 85.9324C174.094 80.3406 175.304 74.1741 174.935 68H165.595C167.183 79.9885 159.991 91.6081 148.41 95.6657H100.775V86.4438H91.4353V95.6657H52.5807C40.999 91.5158 33.9006 79.9885 35.395 68H26.0549C25.7184 74.1604 26.9326 80.3073 29.5893 85.8913C32.2459 91.4753 36.2622 96.3225 41.2792 100C36.2622 103.677 32.2459 108.525 29.5893 114.109C26.9326 119.693 25.7184 125.84 26.0549 132H35.395C34.7909 126.236 36.1537 120.439 39.2672 115.527C42.3806 110.615 47.0663 106.871 52.5807 104.888H91.5287V114.11H100.869V104.888H148.316C153.857 106.84 158.573 110.575 161.707 115.492C164.84 120.409 166.21 126.223 165.595 132Z" fill="#00FF00" stroke="#00FF00" stroke-width="2"/>
</g> </g>
<path d="M47.5743 74H40.0521C39.7553 78.9724 40.7296 83.9388 42.8853 88.4422C45.0409 92.9456 48.3089 96.8416 52.3885 99.7718C48.3089 102.702 45.0409 106.598 42.8853 111.101C40.7296 115.605 39.7553 120.571 40.0521 125.544H47.5743C46.2955 115.888 52.0876 106.53 61.4151 103.263H99.7783V110.69H107.3V103.263H138.593C147.92 106.605 153.637 115.888 152.434 125.544H159.956C160.227 120.582 159.249 115.632 157.109 111.135C154.97 106.637 151.735 102.734 147.695 99.7718C151.735 96.8101 154.97 92.9063 157.109 88.4091C159.249 83.9119 160.227 78.9614 159.956 74H152.434C152.92 78.6419 151.822 83.3112 149.315 87.267C146.808 91.2229 143.034 94.2385 138.593 95.8355H107.225V88.4085H99.7031V95.8355H61.4904C57.0276 94.2627 53.2295 91.255 50.7059 87.2951C48.1822 83.3353 47.0793 78.653 47.5743 74Z" fill="#00FF00" stroke="#00FF00" stroke-width="2"/>
<defs> <defs>
<filter id="filter0_d" x="-4" y="47" width="205" height="120" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="14" y="58" width="166" height="97.5436" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Before After
Before After

View file

@ -1,23 +1,18 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_40)">
<g filter="url(#filter0_d)"> <path d="M175.736 100C175.736 140.884 142.619 174 101.736 174C60.8522 174 27.7358 140.884 27.7358 100C27.7358 59.1164 60.8522 26 101.736 26C142.619 26 175.736 59.1766 175.736 100Z" fill="#00FF00"/>
<path d="M175.736 100C175.736 140.884 142.619 174 101.736 174C60.8522 174 27.7358 140.884 27.7358 100C27.7358 59.1164 60.8522 26 101.736 26C142.619 26 175.736 59.1766 175.736 100Z" fill="#00FF00"/>
</g>
<path d="M141.007 27.3281H142.271L141.447 28.3103H140.952V27.3281H141.007ZM45.9199 29.6853V30.7985L42.8419 35.251H42.3473L41.8526 31.7806C43.7213 30.4056 45.0405 29.6853 45.9199 29.6853ZM157.222 31.2568C159.86 31.2568 161.344 33.2866 161.674 37.2808L159.42 56.1385H160.245L162.003 54.7634H162.498V55.1563C160.08 56.9242 157.716 61.7696 155.463 69.6924C154.583 76.5021 153.154 82.788 151.121 88.5501C149.307 94.5086 148.427 100.009 148.427 105.051L145.02 115.003C145.02 115.854 146.284 116.706 148.867 117.491C148.372 119.456 147.713 120.438 146.778 120.438V121.027H147.603V121.42C147.603 122.468 146.284 122.926 143.591 122.926L144.085 123.515V125.48H143.261C143.81 127.444 144.965 128.426 146.778 128.426V129.408H143.261V129.998C144.415 129.998 145.02 130.849 145.02 132.486L140.073 134.45L140.568 135.039V135.432C140.568 136.087 139.963 136.415 138.809 136.415V137.004C140.293 137.004 141.062 137.331 141.062 137.986C138.974 138.837 136.17 142.962 132.708 150.427C129.19 157.04 126.112 160.379 123.529 160.379H122.594C120.616 158.873 119.022 153.963 117.758 145.581C112.756 132.813 110.228 125.283 110.228 123.057C110.228 117.295 108.634 111.14 105.391 104.592C104.511 101.711 103.962 98.0444 103.632 93.6574L101.543 93.0681C96.2118 102.693 93.4636 110.158 93.1888 115.593C91.7047 118.735 90.5505 122.599 89.6711 127.051C92.859 128.099 94.5079 129.081 94.5079 129.998V130.587C91.9795 130.194 90.2207 129.539 89.2314 128.492C88.1321 130.98 86.703 137.986 84.8892 149.445C83.4602 154.748 81.7013 157.433 79.6127 157.433C73.6766 155.076 68.6749 151.278 64.7175 145.974C64.1129 145.974 63.0686 143.29 61.6395 137.986C60.7601 137.986 60.2105 135.301 59.8807 129.998C56.9127 122.468 54.879 113.825 53.7797 104.134V89.5977H53.285L51.1964 90.187V89.5977C51.1964 88.9429 51.9109 88.6156 53.285 88.6156L52.7904 80.2344V73.6866L49.3826 52.7336V43.7631C50.8666 38.1975 53.4499 35.3819 57.1325 35.3819H81.8112V36.3641C79.8325 36.4296 78.5134 36.9534 77.7989 37.8701C76.3149 36.8224 74.8858 36.3641 73.4568 36.3641H68.6199L65.9267 36.757L65.432 36.3641H65.1023L61.5846 36.757L59.8257 36.3641L58.5616 36.757L57.1325 36.3641C62.8487 43.8286 66.2015 50.1145 67.2458 55.2218H71.2582V56.2039H68.1802V57.3171C69.3345 61.6386 70.2139 63.7339 70.7635 63.7339H71.6979L73.7865 63.1446L74.2812 63.7339L74.7759 63.1446L75.2706 63.7339V64.1268C73.7316 65.2399 72.6323 66.8114 72.0827 68.7102H71.7529V69.6924H72.5773C73.6766 85.2762 75.7103 97.0622 78.6783 105.051L80.4371 106.426H81.3715C82.5258 106.426 84.9991 100.991 88.7916 90.0561C91.2101 85.1452 92.9689 80.7582 94.0682 77.026L93.5735 75.5199C95.9919 71.8532 98.5202 70.0853 101.104 70.0853H101.928C103.577 70.0853 104.731 71.1329 105.446 73.1628C107.644 76.2402 109.403 80.8237 110.722 86.9786L117.318 101.515C118.197 102.562 118.582 103.676 118.582 104.985C121 110.485 123.199 114.152 125.178 115.92H126.607C128.256 115.92 130.454 109.11 133.202 95.4907C133.697 95.4907 134.961 91.824 137.05 84.5559V83.9666L129.63 82.9845L127.871 83.5738H125.617V82.4606L130.069 82.0677H138.754C142.107 70.0198 145.184 60.7219 148.043 54.1086C148.977 40.4892 150.296 33.6795 151.89 33.6795L157.222 31.2568V31.2568ZM132.213 32.7628C131.718 34.0724 130.729 34.7271 129.135 34.7271V33.745L132.213 32.7628V32.7628ZM87.9122 35.3164H99.7844V36.2986L97.0912 36.6915L94.5079 36.2986L92.2544 37.2808L91.4299 36.2986H87.9122V35.3164V35.3164ZM26.1879 37.2153H27.4521L28.2765 38.1975V38.7868L25.6932 41.7333V44.2215H24.7588V42.7155L25.2535 42.3226V41.7333L23 39.2451C23.5496 37.8701 24.594 37.2153 26.1879 37.2153V37.2153ZM112.481 43.2393H113.745V43.6322C113.745 44.2869 113.306 44.6143 112.481 44.6143L111.986 45.2036V45.7929L110.722 45.2036V44.2215L112.481 43.2393V43.2393ZM105.885 48.7394V49.3287C105.885 50.049 104.017 50.8347 100.224 51.6859V50.7038L102.807 49.3287L103.302 49.7216H103.632L105.885 48.7394ZM29.2109 53.7812V54.1741L28.2765 55.1563L27.9467 54.7634V54.1741L28.2765 53.7812H29.2109ZM93.1888 53.7812V54.1741C91.5398 55.6801 88.9016 56.9897 85.219 58.2337V57.2516C85.8236 57.2516 86.1534 56.7278 86.1534 55.7456L93.1888 53.7812ZM115.504 58.6266L115.999 59.2159V59.6088L115.174 60.7219H114.68L113.745 59.6088V59.2159L115.504 58.6266ZM131.718 59.2159H132.213V59.6088L131.389 60.7219H130.894V60.1326L131.718 59.2159V59.2159ZM124.298 66.2221L126.057 67.5971C125.727 68.6448 124.903 69.1031 123.474 69.1031L122.539 67.5971C122.539 67.1388 123.144 66.6804 124.298 66.2221ZM134.906 72.6389L135.236 73.2282V73.6211L134.906 74.2104H133.972V73.6211L134.906 72.6389ZM118.197 77.6807V78.0736L115.944 80.1689H114.68V79.5796C114.68 78.7939 115.889 78.1391 118.197 77.6807V77.6807ZM45.4252 97.1277H45.9199V97.5206C44.7657 100.598 43.7213 102.431 42.8419 103.086H41.9075V100.991L45.4252 97.1277V97.1277ZM102.862 120.438H103.357V121.42L99.8394 123.515L99.3447 122.926V121.944L102.862 120.438ZM54.6042 127.051H55.4286L56.8577 132.486H55.9233L54.6591 127.444L54.6042 127.051ZM101.543 133.468H101.873L103.302 134.974L102.807 135.367H102.313L101.488 133.992L101.543 133.468" fill="#0000FF"/>
</g> </g>
<path d="M141.007 27.3281H142.271L141.447 28.3103H140.952V27.3281H141.007ZM45.9199 29.6853V30.7985L42.8419 35.251H42.3472L41.8526 31.7806C43.7213 30.4056 45.0405 29.6853 45.9199 29.6853ZM157.222 31.2568C159.86 31.2568 161.344 33.2866 161.674 37.2808L159.42 56.1385H160.245L162.003 54.7634H162.498V55.1563C160.08 56.9242 157.716 61.7696 155.463 69.6924C154.583 76.5021 153.154 82.788 151.121 88.5501C149.307 94.5086 148.427 100.009 148.427 105.051L145.02 115.003C145.02 115.854 146.284 116.706 148.867 117.491C148.372 119.456 147.713 120.438 146.778 120.438V121.027H147.603V121.42C147.603 122.468 146.284 122.926 143.591 122.926L144.085 123.515V125.48H143.261C143.81 127.444 144.965 128.426 146.778 128.426V129.408H143.261V129.998C144.415 129.998 145.02 130.849 145.02 132.486L140.073 134.45L140.568 135.039V135.432C140.568 136.087 139.963 136.415 138.809 136.415V137.004C140.293 137.004 141.062 137.331 141.062 137.986C138.974 138.837 136.17 142.962 132.708 150.427C129.19 157.04 126.112 160.379 123.529 160.379H122.594C120.616 158.873 119.022 153.963 117.758 145.581C112.756 132.813 110.228 125.283 110.228 123.057C110.228 117.295 108.634 111.14 105.391 104.592C104.511 101.711 103.962 98.0444 103.632 93.6574L101.543 93.0681C96.2118 102.693 93.4636 110.158 93.1888 115.593C91.7047 118.735 90.5505 122.599 89.6711 127.051C92.859 128.099 94.5079 129.081 94.5079 129.998V130.587C91.9795 130.194 90.2207 129.539 89.2314 128.492C88.1321 130.98 86.703 137.986 84.8892 149.445C83.4602 154.748 81.7013 157.433 79.6127 157.433C73.6766 155.076 68.6749 151.278 64.7175 145.974C64.1129 145.974 63.0686 143.29 61.6395 137.986C60.7601 137.986 60.2105 135.301 59.8807 129.998C56.9127 122.468 54.879 113.825 53.7797 104.134V89.5977H53.285L51.1964 90.187V89.5977C51.1964 88.9429 51.9109 88.6156 53.285 88.6156L52.7904 80.2344V73.6866L49.3826 52.7336V43.7631C50.8666 38.1975 53.4499 35.3819 57.1325 35.3819H81.8112V36.3641C79.8325 36.4296 78.5134 36.9534 77.7989 37.8701C76.3149 36.8224 74.8858 36.3641 73.4568 36.3641H68.6199L65.9267 36.757L65.432 36.3641H65.1023L61.5846 36.757L59.8257 36.3641L58.5616 36.757L57.1325 36.3641C62.8487 43.8286 66.2015 50.1145 67.2458 55.2218H71.2582V56.2039H68.1802V57.3171C69.3345 61.6386 70.2139 63.7339 70.7635 63.7339H71.6979L73.7865 63.1446L74.2812 63.7339L74.7759 63.1446L75.2706 63.7339V64.1268C73.7316 65.2399 72.6323 66.8114 72.0827 68.7102H71.7529V69.6924H72.5773C73.6766 85.2762 75.7103 97.0622 78.6783 105.051L80.4371 106.426H81.3715C82.5258 106.426 84.9991 100.991 88.7916 90.0561C91.2101 85.1452 92.9689 80.7582 94.0682 77.026L93.5735 75.5199C95.9919 71.8532 98.5202 70.0853 101.104 70.0853H101.928C103.577 70.0853 104.731 71.1329 105.446 73.1628C107.644 76.2402 109.403 80.8237 110.722 86.9786L117.318 101.515C118.197 102.562 118.582 103.675 118.582 104.985C121 110.485 123.199 114.152 125.178 115.92H126.607C128.256 115.92 130.454 109.11 133.202 95.4907C133.697 95.4907 134.961 91.824 137.05 84.5559V83.9666L129.63 82.9845L127.871 83.5738H125.617V82.4606L130.069 82.0677H138.754C142.107 70.0198 145.184 60.7219 148.043 54.1086C148.977 40.4892 150.296 33.6795 151.89 33.6795L157.222 31.2568ZM132.213 32.7628C131.718 34.0724 130.729 34.7271 129.135 34.7271V33.745L132.213 32.7628ZM87.9122 35.3164H99.7844V36.2986L97.0912 36.6915L94.5079 36.2986L92.2544 37.2808L91.4299 36.2986H87.9122V35.3164ZM26.1879 37.2153H27.4521L28.2765 38.1975V38.7L25.6932 41.7333V44.2215H24.7588V42.7155L25.2535 42.3226V41.7333L23 39.2451C23.5496 37.8701 24.594 37.2153 26.1879 37.2153ZM112.481 43.2393H113.745V43.6322C113.745 44.2869 113.306 44.6143 112.481 44.6143L111.986 45.2036V45.7929L110.722 45.2036V44.2215L112.481 43.2393ZM105.885 48.7394V49.3287C105.885 50.049 104.017 50.8347 100.224 51.6859V50.7038L102.807 49.3287L103.302 49.7216H103.632L105.885 48.7394ZM29.2109 53.7812V54.1741L28.2765 55.1563L27.9467 54.7634V54.1741L28.2765 53.7812H29.2109ZM93.1888 53.7812V54.1741C91.5398 55.6801 88.9016 56.9897 85.219 58.2337V57.2516C85.8236 57.2516 86.1534 56.7278 86.1534 55.7456L93.1888 53.7812ZM115.504 58.6266L115.999 59.2159V59.6088L115.174 60.7219H114.68L113.745 59.6088V59.2159L115.504 58.6266ZM131.718 59.2159H132.213V59.6088L131.389 60.7219H130.894V60.1326L131.718 59.2159ZM124.298 66.2221L126.057 67.5971C125.727 68.6448 124.903 69.1031 123.474 69.1031L122.539 67.5971C122.539 67.1388 123.144 66.6804 124.298 66.2221ZM134.906 72.6389L135.236 73.2282V73.6211L134.906 74.2104H133.972V73.6211L134.906 72.6389ZM118.197 77.6807V78.0736L115.944 80.1689H114.68V79.5796C114.68 78.7939 115.889 78.1391 118.197 77.6807ZM45.4252 97.1277H45.9199V97.5206C44.7657 100.598 43.7213 102.431 42.8419 103.086H41.9075V100.991L45.4252 97.1277ZM102.862 120.438H103.357V121.42L99.8394 123.515L99.3447 122.926V121.944L102.862 120.438ZM54.6042 127.051H55.4286L56.8577 132.486H55.9233L54.6591 127.444L54.6042 127.051ZM101.543 133.468H101.873L103.302 134.974L102.807 135.367H102.313L101.488 133.992L101.543 133.468Z" fill="#0000FF"/>
<defs> <defs>
<filter id="filter0_d" x="5.73584" y="13" width="188" height="188" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="9.73584" y="18" width="178" height="178" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 6 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Before After
Before After

View file

@ -1,24 +1,19 @@
<?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 clip-path="url(#clip0)"> <g filter="url(#filter0_d_495)">
<g filter="url(#filter0_d)"> <path d="M125.544 47.5743V40.0521C120.571 39.7553 115.605 40.7296 111.101 42.8853C106.598 45.0409 102.702 48.3089 99.7718 52.3885C96.8416 48.3089 92.9456 45.0409 88.4422 42.8853C83.9388 40.7296 78.9724 39.7553 74 40.0521V47.5743C83.6551 46.2955 93.0132 52.0876 96.2811 61.4151V99.7783H88.8541V107.3H96.2811V138.593C92.9389 147.92 83.6551 153.637 74 152.434V159.956C78.9614 160.227 83.9119 159.249 88.4091 157.109C92.9063 154.97 96.8101 151.735 99.7718 147.695C102.734 151.735 106.637 154.97 111.135 157.109C115.632 159.249 120.582 160.227 125.544 159.956V152.434C120.902 152.92 116.232 151.822 112.277 149.315C108.321 146.808 105.305 143.034 103.708 138.593V107.225H111.135V99.7031H103.708V61.4904C105.281 57.0276 108.289 53.2295 112.249 50.7059C116.208 48.1822 120.891 47.0793 125.544 47.5743Z" fill="#0000FF"/>
<path d="M132.5 34.9048V25.5647C126.326 25.1962 120.159 26.4059 114.568 29.0825C108.976 31.7592 104.138 35.8169 100.5 40.8824C96.8617 35.8169 92.0242 31.7592 86.4324 29.0825C80.8406 26.4059 74.6741 25.1962 68.5 25.5647V34.9048C80.4885 33.317 92.1081 40.5088 96.1657 52.0905V99.7247H86.9438V109.065H96.1657V147.919C92.0158 159.501 80.4885 166.599 68.5 165.105V174.445C74.6604 174.782 80.8073 173.567 86.3913 170.911C91.9753 168.254 96.8225 164.238 100.5 159.221C104.177 164.238 109.025 168.254 114.609 170.911C120.193 173.567 126.34 174.782 132.5 174.445V165.105C126.736 165.709 120.939 164.346 116.027 161.233C111.115 158.119 107.371 153.434 105.388 147.919V108.971H114.61V99.6313H105.388V52.1839C107.34 46.6426 111.075 41.9267 115.992 38.7931C120.909 35.6596 126.723 34.2902 132.5 34.9048Z" fill="#0000FF"/> <path d="M125.12 51.5519L129.544 52.0224V47.5743V40.0521V36.2838L125.782 36.0592C120.131 35.7219 114.488 36.8294 109.374 39.2773C105.784 40.9958 102.537 43.3355 99.7718 46.1766C97.0067 43.3355 93.7594 40.9958 90.1692 39.2773C85.0554 36.8294 79.4129 35.7219 73.7617 36.0592L70 36.2838V40.0521V47.5743V52.139L74.5252 51.5397C82.0638 50.5412 89.4461 54.9236 92.2811 62.1323V95.7783H88.8541H84.8541V99.7783V107.3V111.3H88.8541H92.2811V137.861C89.3842 145.078 82.0557 149.407 74.4948 148.464L70 147.904V152.434V159.956V163.743L73.7818 163.95C79.4122 164.257 85.0283 163.147 90.1275 160.721C93.726 159.009 96.9866 156.68 99.7718 153.851C102.557 156.68 105.818 159.009 109.416 160.721C114.515 163.147 120.131 164.257 125.762 163.95L129.544 163.743V159.956V152.434V147.992L125.127 148.455C121.384 148.848 117.616 147.964 114.418 145.937C111.404 144.026 109.056 141.2 107.708 137.858V111.225H111.135H115.135V107.225V99.7031V95.7031H111.135H107.708V62.2112C109.037 58.8497 111.379 56.003 114.398 54.079C117.597 52.0407 121.372 51.1531 125.12 51.5519Z" stroke="#0000FF" stroke-width="8"/>
<path d="M132.077 38.8823L136.5 39.3529V34.9048V25.5647V21.7964L132.738 21.5718C125.885 21.1628 119.043 22.5057 112.841 25.4746C108.183 27.7041 104 30.796 100.5 34.5729C96.9997 30.796 92.8171 27.7041 88.1594 25.4746C81.9573 22.5057 75.1146 21.1628 68.2617 21.5718L64.5 21.7964V25.5647V34.9048V39.4695L69.0252 38.8701C78.8944 37.563 88.5366 43.3407 92.1657 52.7999V95.7247H86.9438H82.9438V99.7247V109.065V113.065H86.9438H92.1657V147.195C88.4566 156.663 78.8864 162.369 68.9948 161.136L64.5 160.575V165.105V174.445V178.232L68.2818 178.439C75.1112 178.812 81.9237 177.466 88.1097 174.523C92.7753 172.303 96.9735 169.228 100.5 165.47C104.027 169.228 108.225 172.303 112.89 174.523C119.076 177.466 125.889 178.812 132.718 178.439L136.5 178.232V174.445V165.105V160.664L132.083 161.127C127.219 161.637 122.322 160.487 118.168 157.854C114.2 155.339 111.124 151.605 109.388 147.193V112.971H114.61H118.61V108.971V99.6313V95.6313H114.61H109.388V52.897C111.099 48.46 114.168 44.6987 118.142 42.1663C122.297 39.518 127.204 38.364 132.077 38.8823Z" stroke="#0000FF" stroke-width="8"/>
</g>
<path d="M132.5 34.9048V25.5647C126.326 25.1962 120.159 26.4059 114.568 29.0825C108.976 31.7592 104.138 35.8169 100.5 40.8824C96.8617 35.8169 92.0242 31.7592 86.4324 29.0825C80.8406 26.4059 74.6741 25.1962 68.5 25.5647V34.9048C80.4885 33.317 92.1081 40.5088 96.1657 52.0905V99.7247H86.9438V109.065H96.1657V147.919C92.0158 159.501 80.4885 166.599 68.5 165.105V174.445C74.6604 174.782 80.8073 173.567 86.3913 170.911C91.9753 168.254 96.8225 164.238 100.5 159.221C104.177 164.238 109.025 168.254 114.609 170.911C120.193 173.567 126.34 174.782 132.5 174.445V165.105C126.736 165.709 120.939 164.346 116.027 161.233C111.115 158.119 107.371 153.434 105.388 147.919V108.971H114.61V99.6313H105.388V52.1839C107.34 46.6426 111.075 41.9267 115.992 38.7931C120.909 35.6596 126.723 34.2902 132.5 34.9048Z" fill="#00FF00" stroke="#00FF00" stroke-width="2"/>
</g> </g>
<path d="M125.544 47.5743V40.0521C120.571 39.7553 115.605 40.7296 111.101 42.8853C106.598 45.0409 102.702 48.3089 99.7718 52.3885C96.8416 48.3089 92.9456 45.0409 88.4422 42.8853C83.9388 40.7296 78.9724 39.7553 74 40.0521V47.5743C83.6551 46.2955 93.0132 52.0876 96.2811 61.4151V99.7783H88.8541V107.3H96.2811V138.593C92.9389 147.92 83.6551 153.637 74 152.434V159.956C78.9614 160.227 83.9119 159.249 88.4091 157.109C92.9063 154.97 96.8101 151.735 99.7718 147.695C102.734 151.735 106.637 154.97 111.135 157.109C115.632 159.249 120.582 160.227 125.544 159.956V152.434C120.902 152.92 116.232 151.822 112.277 149.315C108.321 146.808 105.305 143.034 103.708 138.593V107.225H111.135V99.7031H103.708V61.4904C105.281 57.0276 108.289 53.2295 112.249 50.7059C116.208 48.1822 120.891 47.0793 125.544 47.5743Z" fill="#00FF00" stroke="#00FF00" stroke-width="2"/>
<defs> <defs>
<filter id="filter0_d" x="38.5" y="4.5" width="120" height="205" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_495" x="48" y="24" width="97.5435" height="166" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_495"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_495" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Before After
Before After

View file

@ -1,38 +1,33 @@
<?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 clip-path="url(#clip0)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M132 76.5C132 104.947 107.828 128 78 128C48.1724 128 24 104.947 24 76.5C24 48.0533 48.1724 25 78 25C107.828 25 132 48.0533 132 76.5Z" fill="#0000FF"/>
<g filter="url(#filter0_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M132 76.5C132 104.947 107.828 128 78 128C48.1724 128 24 104.947 24 76.5C24 48.0533 48.1724 25 78 25C107.828 25 132 48.0533 132 76.5Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M132 76.5C132 104.947 107.828 128 78 128C48.1724 128 24 104.947 24 76.5C24 48.0533 48.1724 25 78 25C107.828 25 132 48.0533 132 76.5Z" fill="#0000FF"/>
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M132 76.5C132 104.947 107.828 128 78 128C48.1724 128 24 104.947 24 76.5C24 48.0533 48.1724 25 78 25C107.828 25 132 48.0533 132 76.5Z" stroke="#00FF00" stroke-width="7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M132 76.5C132 104.947 107.828 128 78 128C48.1724 128 24 104.947 24 76.5C24 48.0533 48.1724 25 78 25C107.828 25 132 48.0533 132 76.5Z" fill="#0000FF"/> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M132 76.5C132 104.947 107.828 128 78 128C48.1724 128 24 104.947 24 76.5C24 48.0533 48.1724 25 78 25C107.828 25 132 48.0533 132 76.5Z" stroke="#00FF00" stroke-width="7"/> <path d="M87.5 67V67.5H88H107.5V85.31H88H87.5V85.81V104.5H68.5V85.81V85.31H68H48.5V67.5H68H68.5V67V48.5H87.5V67Z" fill="#00FF00" stroke="#00FF00"/>
</g> <g filter="url(#filter1_d_40)">
<path d="M87.5 67V67.5H88H107.5V85.31H88H87.5V85.81V104.5H68.5V85.81V85.31H68H48.5V67.5H68H68.5V67V48.5H87.5V67Z" fill="#00FF00" stroke="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M162.196 171L176 157.814L122.804 107L109 120.186L162.196 171Z" fill="#00FF00"/>
<g filter="url(#filter1_d)"> <path d="M122.804 107.691L175.276 157.814L162.196 170.309L109.724 120.186L122.804 107.691Z" stroke="#00FF00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M162.196 171L176 157.814L122.804 107L109 120.186L162.196 171Z" fill="#00FF00"/>
<path d="M122.804 107.691L175.276 157.814L162.196 170.309L109.724 120.186L122.804 107.691Z" stroke="#00FF00"/>
</g>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="-1.5" y="8.5" width="155" height="150" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="2.5" y="13.5" width="145" height="140" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<filter id="filter1_d" x="87" y="94" width="107" height="104" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter1_d_40" x="91" y="99" width="97" height="94" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Before After
Before After

View file

@ -1,37 +1,32 @@
<?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 clip-path="url(#clip0)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M134 78.4998C134 108.051 108.932 132 77.9998 132C47.0675 132 22 108.051 22 78.4998C22 48.9484 47.0675 25 77.9998 25C108.932 25 134 48.9484 134 78.4998Z" fill="#0000FF"/>
<g filter="url(#filter0_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M134 78.4998C134 108.051 108.932 132 77.9998 132C47.0675 132 22 108.051 22 78.4998C22 48.9484 47.0675 25 77.9998 25C108.932 25 134 48.9484 134 78.4998Z" fill="#0000FF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M134 78.4998C134 108.051 108.932 132 77.9998 132C47.0675 132 22 108.051 22 78.4998C22 48.9484 47.0675 25 77.9998 25C108.932 25 134 48.9484 134 78.4998Z" fill="#0000FF"/>
<g filter="url(#filter0_d)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M134 78.4998C134 108.051 108.932 132 77.9998 132C47.0675 132 22 108.051 22 78.4998C22 48.9484 47.0675 25 77.9998 25C108.932 25 134 48.9484 134 78.4998Z" stroke="#00FF00" stroke-width="7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M134 78.4998C134 108.051 108.932 132 77.9998 132C47.0675 132 22 108.051 22 78.4998C22 48.9484 47.0675 25 77.9998 25C108.932 25 134 48.9484 134 78.4998Z" fill="#0000FF"/> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M134 78.4998C134 108.051 108.932 132 77.9998 132C47.0675 132 22 108.051 22 78.4998C22 48.9484 47.0675 25 77.9998 25C108.932 25 134 48.9484 134 78.4998Z" stroke="#00FF00" stroke-width="7"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M108 86H48V68H108V86Z" fill="#00FF00"/>
</g> <g filter="url(#filter1_d_40)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M108 86H48V68H108V86Z" fill="#00FF00"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M164.784 176L179 162.196L124.216 109L110 122.804L164.784 176Z" fill="#00FF00"/>
<g filter="url(#filter1_d)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M164.784 176L179 162.196L124.216 109L110 122.804L164.784 176Z" fill="#00FF00"/>
</g>
</g> </g>
<defs> <defs>
<filter id="filter0_d" x="-3.5" y="8.5" width="159" height="154" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter0_d_40" x="0.5" y="13.5" width="149" height="144" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<filter id="filter1_d" x="88" y="96" width="109" height="107" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <filter id="filter1_d_40" x="92" y="101" width="99" height="97" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/> <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" result="hardAlpha"/> <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" result="hardAlpha"/>
<feOffset dx="-2" dy="7"/> <feOffset dx="-3" dy="7"/>
<feGaussianBlur stdDeviation="10"/> <feGaussianBlur stdDeviation="7.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_40"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_40" result="shape"/>
</filter> </filter>
<clipPath id="clip0">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs> </defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Before After
Before After