1
0
mirror of https://github.com/konpa/devicon.git synced 2025-04-19 12:22:14 +02:00

Merge pull request #1 from devicons/develop

Pull latest commit from upstream Develop
This commit is contained in:
Tylen St Hilaire 2020-12-31 12:13:40 +00:00 committed by GitHub
commit 6c8da9ec03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
175 changed files with 1580 additions and 371 deletions

View File

@ -2,7 +2,7 @@
name: Icon request
about: Requesting a new icon or changes to an existing icon
title: 'Icon request: [NAME]'
labels: 'request: icon'
labels: 'request:icon'
assignees: ''
---

View File

@ -118,10 +118,13 @@ class SeleniumRunner:
print("JSON file uploaded.")
def upload_svgs(self, svgs: List[str]):
def upload_svgs(self, svgs: List[str], screenshot_folder: str=""):
"""
Upload the SVGs provided in folder_info
:param svgs: a list of svg Paths that we'll upload to icomoon.
:param screenshot_folder: the name of the screenshot_folder. If
the value is provided, it means the user want to take a screenshot
of each icon.
"""
try:
print("Uploading SVGs...")
@ -133,17 +136,20 @@ class SeleniumRunner:
self.click_hamburger_input()
for svg in svgs:
for i in range(len(svgs)):
import_btn = self.driver.find_element_by_css_selector(
"li.file input[type=file]"
)
import_btn.send_keys(svg)
print(f"Uploaded {svg}")
import_btn.send_keys(svgs[i])
print(f"Uploaded {svgs[i]}")
self.test_for_possible_alert(self.SHORT_WAIT_IN_SEC, "Dismiss")
self.remove_color_from_icon()
self.click_on_just_added_icon(screenshot_folder, i)
# take a screenshot of the icons that were just added
self.driver.save_screenshot("new_icons.png");
new_icons_path = str(Path(screenshot_folder, "new_icons.png").resolve())
self.driver.save_screenshot(new_icons_path);
# select all the svgs so that the newly added svg are part of the collection
self.click_hamburger_input()
select_all_button = WebDriverWait(self.driver, self.LONG_WAIT_IN_SEC).until(
ec.element_to_be_clickable((By.XPATH, "//button[text()='Select All']"))
@ -191,38 +197,26 @@ class SeleniumRunner:
)
dismiss_btn.click()
except SeleniumTimeoutException:
pass
pass # nothing found => everything is good
def remove_color_from_icon(self):
def click_on_just_added_icon(self, screenshot_folder: str, index: int):
"""
Remove the color from the most recent uploaded icon.
:return: None.
Click on the most recently added icon so we can remove the colors
and take a snapshot if needed.
"""
try:
recently_uploaded_icon = WebDriverWait(self.driver, self.LONG_WAIT_IN_SEC).until(
ec.element_to_be_clickable((By.XPATH, "//div[@id='set0']//mi-box[1]//div"))
)
recently_uploaded_icon.click()
except Exception as e:
self.close()
raise e
try:
color_tab = WebDriverWait(self.driver, self.SHORT_WAIT_IN_SEC).until(
ec.element_to_be_clickable((By.CSS_SELECTOR, "div.overlayWindow i.icon-droplet"))
)
color_tab.click()
self.remove_color_from_icon()
remove_color_btn = self.driver \
.find_element_by_css_selector("div.overlayWindow i.icon-droplet-cross")
remove_color_btn.click()
except SeleniumTimeoutException:
pass
except Exception as e:
self.close()
raise e
if screenshot_folder:
screenshot_path = str(Path(screenshot_folder, f"screenshot_{index}.png").resolve())
self.driver.save_screenshot(screenshot_path)
print("Took screenshot and saved it at " + screenshot_path)
try:
close_btn = self.driver \
.find_element_by_css_selector("div.overlayWindow i.icon-close")
close_btn.click()
@ -230,6 +224,23 @@ class SeleniumRunner:
self.close()
raise e
def remove_color_from_icon(self):
"""
Remove the color from the most recent uploaded icon.
This is because some SVG have colors in them and we don't want to
force contributors to remove them in case people want the colored SVGs.
The color removal is also necessary so that the Icomoon-generated
icons fit within one font symbol/ligiature.
"""
color_tab = WebDriverWait(self.driver, self.SHORT_WAIT_IN_SEC).until(
ec.element_to_be_clickable((By.CSS_SELECTOR, "div.overlayWindow i.icon-droplet"))
)
color_tab.click()
remove_color_btn = self.driver \
.find_element_by_css_selector("div.overlayWindow i.icon-droplet-cross")
remove_color_btn.click()
def download_icomoon_fonts(self, zip_path: Path):
"""
Download the icomoon.zip from icomoon.io.

View File

@ -1,8 +1,8 @@
from pathlib import Path
from argparse import ArgumentParser
from build_assets.PathResolverAction import PathResolverAction
def get_commandline_args():
def get_selenium_runner_args(peek_mode=False):
parser = ArgumentParser(description="Upload svgs to Icomoon to create icon files.")
parser.add_argument("--headless",
@ -26,8 +26,11 @@ def get_commandline_args():
action=PathResolverAction)
parser.add_argument("download_path",
help="The path where you'd like to download the Icomoon files to",
help="The download destination of the Icomoon files",
action=PathResolverAction)
if peek_mode:
parser.add_argument("--pr_title",
help="The title of the PR that we are peeking at")
return parser.parse_args()

View File

@ -145,3 +145,24 @@ def rename_extracted_files(extract_path: str):
os.replace(dict_["old"], dict_["new"])
print("Files renamed")
def create_screenshot_folder(dir, screenshot_name: str="screenshots/"):
"""
Create a screenshots folder in the dir.
:param dir, the dir where we want to create the folder.
:param screenshot_name, the name of the screenshot folder.
:raise Exception if the dir provided is not a directory.
:return the string name of the screenshot folder.
"""
folder = Path(dir).resolve()
if not folder.is_dir():
raise Exception(f"This is not a dir: {str(folder)}. \ndir must be a valid directory")
screenshot_folder = Path(folder, screenshot_name)
try:
os.mkdir(screenshot_folder)
except FileExistsError:
print(f"{screenshot_folder} already exist. Script will do nothing.")
finally:
return str(screenshot_folder)

View File

@ -0,0 +1,10 @@
import json
import os
if __name__ == "__main__":
img_urls_list = json.loads(os.environ["IMG_URLS"])
template = "![Detailed Screenshot]({})"
markdown = [template.format(img_url) for img_url in img_urls_list]
print("\n\n".join(markdown))

View File

@ -4,11 +4,11 @@ from selenium.common.exceptions import TimeoutException
# pycharm complains that build_assets is an unresolved ref
# don't worry about it, the script still runs
from build_assets.SeleniumRunner import SeleniumRunner
from build_assets import filehandler, util
from build_assets import filehandler, arg_getters
def main():
args = util.get_commandline_args()
args = arg_getters.get_selenium_runner_args()
new_icons = filehandler.find_new_icons(args.devicon_json_path, args.icomoon_json_path)
if len(new_icons) == 0:
print("No files need to be uploaded. Ending script...")

View File

@ -1,33 +1,66 @@
from typing import List
import re
import sys
from selenium.common.exceptions import TimeoutException
# pycharm complains that build_assets is an unresolved ref
# don't worry about it, the script still runs
from build_assets.SeleniumRunner import SeleniumRunner
from build_assets import filehandler, util
from build_assets import filehandler, arg_getters
def main():
args = util.get_commandline_args()
args = arg_getters.get_selenium_runner_args(True)
new_icons = filehandler.find_new_icons(args.devicon_json_path, args.icomoon_json_path)
# get only the icon object that has the name matching the pr title
filtered_icons = find_object_added_in_this_pr(new_icons, args.pr_title)
if len(new_icons) == 0:
print("No files need to be uploaded. Ending script...")
return
sys.exit("No files need to be uploaded. Ending script...")
if len(filtered_icons) == 0:
message = "No icons found matching the icon name in the PR's title.\n" \
"Ensure that the PR title matches the convention here: \n" \
"https://github.com/devicons/devicon/blob/master/CONTRIBUTING.md#overview.\n" \
"Ending script...\n"
sys.exit(message)
# print list of new icons
print("List of new icons:", *new_icons, sep = "\n")
print("Icons being uploaded:", *filtered_icons, sep = "\n", end='\n\n')
runner = None
try:
runner = SeleniumRunner(args.download_path, args.geckodriver_path, args.headless)
svgs = filehandler.get_svgs_paths(new_icons, args.icons_folder_path)
runner.upload_svgs(svgs)
svgs = filehandler.get_svgs_paths(filtered_icons, args.icons_folder_path)
screenshot_folder = filehandler.create_screenshot_folder("./")
runner.upload_svgs(svgs, screenshot_folder)
print("Task completed.")
except TimeoutException as e:
print("Selenium Time Out Error: ", e.stacktrace, sep='\n')
except Exception as e:
print(e)
print(e.stacktrace)
finally:
runner.close()
def find_object_added_in_this_pr(icons: List[dict], pr_title: str):
"""
Find the icon name from the PR title.
:param icons, a list of the font objects found in the devicon.json.
:pr_title, the title of the PR that this workflow was called on.
:return a list containing the dictionary with the "name"
entry's value matching the name in the pr_title.
If none can be found, return an empty list.
"""
try:
pattern = re.compile(r"(?<=^new icon: )\w+ (?=\(.+\))", re.I)
icon_name = pattern.findall(pr_title)[0].lower().strip() # should only have one match
return [icon for icon in icons if icon["name"] == icon_name]
except IndexError: # there are no match in the findall()
return []
if __name__ == "__main__":
main()

View File

@ -19,29 +19,42 @@ jobs:
pip install -r ./.github/scripts/requirements.txt
npm install
- name: Executing build and create fonts via icomoon
run: npm run build
run: >
python ./.github/scripts/icomoon_build.py
./.github/scripts/build_assets/geckodriver-v0.27.0-win64/geckodriver.exe ./icomoon.json
./devicon.json ./icons ./ --headless
- name: Upload geckodriver.log for debugging purposes
uses: actions/upload-artifact@v2
if: ${{failure()}}
if: failure()
with:
name: geckodriver-log
path: ./geckodriver.log
- name: Upload screenshot of the newly made icons
uses: actions/upload-artifact@v2
if: ${{success()}}
with:
name: new_icons
path: ./new_icons.png
- name: Build devicon.min.css
if: ${{ success() }}
if: success()
run: npm run build-css
- name: Upload screenshot of the newly made icons
id: imgur_step
uses: devicons/public-upload-to-imgur@v2
if: success()
with:
path: ./new_icons.png
client_id: ${{secrets.IMGUR_CLIENT_ID}}
- name: Create Pull Request
if: ${{ success() }}
if: success()
uses: peter-evans/create-pull-request@v3
env:
MESSAGE: |
Automated font-building task ran by GitHub Actions bot. This PR built new font files and devicon.css file.
Here are all the files that were built:
![Files Built]({0})
More information can be found in the GitHub Action logs for this workflow.
with:
branch: 'master-build-result'
base: 'master'
commit-message: 'Built new icons, icomoon.json and devicon.css'
title: 'bot:build new icons, icomoon.json and devicon.css'
body: 'Automated font-building task ran by GitHub Actions bot'
body: ${{ format(env.MESSAGE, fromJSON(steps.imgur_step.outputs.imgur_url)[0] ) }}
delete-branch: true

View File

@ -16,35 +16,97 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies (python, pip)
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./.github/scripts/requirements.txt
- name: Run icomoon_peek.py
run: npm run peek
env:
PR_TITLE: ${{ github.event.pull_request.title }}
shell: cmd
run: >
python ./.github/scripts/icomoon_peek.py
./.github/scripts/build_assets/geckodriver-v0.27.0-win64/geckodriver.exe ./icomoon.json
./devicon.json ./icons ./ --headless --pr_title "%PR_TITLE%"
- name: Upload geckodriver.log for debugging purposes
uses: actions/upload-artifact@v2
if: ${{failure()}}
if: failure()
with:
name: geckodriver-log
path: ./geckodriver.log
- name: Upload screenshot of the newly made icons
uses: actions/upload-artifact@v2
if: ${{success()}}
id: icons_overview_img_step
uses: devicons/public-upload-to-imgur@v2
if: success()
with:
name: new_icons
path: ./new_icons.png
# - name: Comment on the PR about the result
# uses: github-actions-up-and-running/pr-comment@v1.0.1
# with:
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# message: >
# Hi! I'm Devicons' GitHub Actions Bot!
# I just peeked at the icons that you wanted to add and upload them to the
# [Actions page](https://github.com/devicons/devicon/actions). The maintainers
# will now take a look at it and decide whether to merge your PR.
path: ./screenshots/new_icons.png
client_id: ${{secrets.IMGUR_CLIENT_ID}}
- name: Upload zoomed in screenshot of the newly made icons
id: icons_detailed_img_step
uses: devicons/public-upload-to-imgur@v2
if: success()
with:
path: ./screenshots/screenshot_*.png
client_id: ${{secrets.IMGUR_CLIENT_ID}}
- name: Generate the markdowns for the screenshot and put it in the DETAILED_IMGS_MARKDOWN env var
if: success()
env:
IMG_URLS: ${{ steps.icons_detailed_img_step.outputs.imgur_urls }}
run: |
echo 'DETAILED_IMGS_MARKDOWN<<EOF' >> $GITHUB_ENV
python ./.github/scripts/generate_screenshot_markdown.py >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
shell: bash
- name: Comment on the PR about the result
if: success()
uses: github-actions-up-and-running/pr-comment@v1.0.1
env:
OVERVIEW_IMG_URL: ${{ fromJSON(steps.icons_overview_img_step.outputs.imgur_urls)[0] }}
MESSAGE: |
Hi!
# Cheers :),
I'm Devicons' Peek Bot and I just peeked at the icons that you wanted to add using [icomoon.io](https://icomoon.io/app/#/select).
Here is the result below:
![Peeked Icons (top left)]({0})
Here are the zoomed-in screenshots of the added icons:
{1}
Note: If the images don't show up, it's probably because it has been autodeleted by Imgur after 6 months due to our API choice.
The maintainers will now take a look at it and decide whether to merge your PR.
Thank you for contributing to Devicon! I hope everything works out and your icons are accepted into the repo.
Cheers :),
# Bot
Peek Bot
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
message: ${{format(env.MESSAGE, env.OVERVIEW_IMG_URL, env.DETAILED_IMGS_MARKDOWN)}}
- name: Comment on the PR about the result
if: failure()
uses: github-actions-up-and-running/pr-comment@v1.0.1
env:
MESSAGE: |
Hi!
I'm Devicons' Peek Bot and it seems we've ran into a problem. I'm supposed to check your svgs but I couldn't do my task due to an issue.
Can you please double check and fix the possible issues below:
- Your svgs are named and added correctly to the /icons folder as seen [here](https://github.com/devicons/devicon/blob/master/CONTRIBUTING.md#orgGuidelines).
- Your icon information has been added to the `devicon.json` as seen [here](https://github.com/devicons/devicon/blob/master/CONTRIBUTING.md#updateDevicon)
- Your PR title follows the format seen [here](https://github.com/devicons/devicon/blob/master/CONTRIBUTING.md#overview)
Once everything is fixed, the maintainers will try again. If I still fail, the maintainers will investigate what cause this problem.
Thank you for your help :smile:
Cheers :),
Peek Bot
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
message: ${{env.MESSAGE}}

View File

@ -257,12 +257,21 @@
"original-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"original",
"original-wordmark"
]
},
"color": "#205081",
"aliases": []
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
},
{
"name": "bootstrap",
@ -548,12 +557,21 @@
"original-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"original",
"original-wordmark"
]
},
"color": "#205081",
"aliases": []
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
},
{
"name": "couchdb",
@ -903,7 +921,12 @@
]
},
"color": "#dd3f24",
"aliases": []
"aliases": [
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
},
{
"name": "erlang",
@ -2478,12 +2501,21 @@
"original-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"original",
"original-wordmark"
]
},
"color": "#205081",
"aliases": []
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
},
{
"name": "ssh",
@ -2496,12 +2528,21 @@
"original-wordmark"
],
"font": [
"plain",
"plain-wordmark"
"original",
"original-wordmark"
]
},
"color": "#231F20",
"aliases": []
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
},
{
"name": "stylus",
@ -2635,11 +2676,16 @@
"original"
],
"font": [
"plain"
"original"
]
},
"color": "#1da1f2",
"aliases": []
"aliases": [
{
"base": "original",
"alias": "plain"
}
]
},
{
"name": "typescript",

2
devicon.min.css vendored

File diff suppressed because one or more lines are too long

1
docs/CNAME Normal file
View File

@ -0,0 +1 @@
devicon.dev

403
docs/assets/css/style.css Normal file
View File

@ -0,0 +1,403 @@
@charset "UTF-8";
@import '//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css';
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Damion);
html {
box-sizing: border-box; }
*, *::after, *::before {
box-sizing: inherit; }
.icon-brush:before {
content: "\e600"; }
.icon-type:before {
content: "\e601"; }
.icon-github:before {
content: "\e602"; }
.icon-github2:before {
content: "\e603"; }
.icon-bucket:before {
content: "\e605"; }
.icon-github3:before {
content: "\e604"; }
.icon-bucket2:before {
content: "\e606"; }
/* Cachons la case à cocher */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
position: absolute;
left: -9999px; }
/* on prépare le label */
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
cursor: pointer;
position: relative;
z-index: 10;
display: inline-block;
padding: 0.71429rem 1.07143rem;
margin-left: 0.35714rem;
font-family: "Lato", Calibri, Arial, sans-serif;
font-weight: 700;
color: #60be86;
background: #4f755e;
box-shadow: 0px 6px 0px #4a5c51;
border-radius: 5px; }
/* Aspect si "cochée" */
[type="checkbox"]:checked + label {
top: 6px;
box-shadow: 0px 0px 0px #4a5c51; }
.button {
position: relative;
z-index: 10;
display: inline-block;
padding: 0.71429rem 1.07143rem;
margin: 0 0.71429rem;
font-family: "Lato", Calibri, Arial, sans-serif;
font-weight: 700;
color: #60be86;
background: #4c6857;
text-decoration: none;
border-radius: 5px;
box-shadow: 0px 6px 0px #4a5c51; }
.button:active {
top: 6px;
box-shadow: 0px 0px 0px #4a5c51; }
/* General Blueprint Style */
*,
*:after,
*:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
body,
html {
margin: 0;
padding: 0;
font-size: 100%; }
.clearfix:before,
.clearfix:after {
display: table;
content: ' '; }
.clearfix:after {
clear: both; }
body {
color: #47a3da;
font-family: 'Lato', Calibri, Arial, sans-serif; }
a {
color: #f0f0f0;
text-decoration: none; }
a:hover {
color: #000; }
.cbp-ig-grid {
list-style: none;
padding: 0 0 50px;
margin: 0; }
.cbp-ig-grid:before,
.cbp-ig-grid:after {
content: " ";
display: table; }
.cbp-ig-grid:after {
clear: both; }
.cbp-ig-grid li {
width: 25%;
float: left;
height: 200px;
text-align: center; }
.cbp-ig-grid li > span {
display: block;
height: 100%;
color: #60be86;
-webkit-transition: background 0.2s;
-moz-transition: background 0.2s;
transition: background 0.2s;
cursor: pointer; }
.cbp-ig-icon {
padding: 30px 0 0;
display: block;
-webkit-transition: -webkit-transform 0.2s;
transition: -moz-transform 0.2s;
transition: transform 0.2s; }
.cbp-ig-icon:before {
font-family: 'devicon';
font-size: 6em;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased; }
.cbp-ig-grid .cbp-ig-title {
margin: 20px 0 10px;
padding: 20px 0 0;
font-size: 1em;
position: relative;
-webkit-transition: -webkit-transform 0.2s;
-moz-transition: -moz-transform 0.2s;
transition: transform 0.2s; }
.cbp-ig-grid .cbp-ig-title:before {
content: '';
position: absolute;
background: #60be86;
width: 60px;
height: 2px;
top: 0;
left: 50%;
margin: 0 0 0 -30px;
-webkit-transition: margin-top 0.2s;
-moz-transition: margin-top 0.2s;
transition: margin-top 0.2s; }
.cbp-ig-grid li > span:hover {
background: #60be86; }
.cbp-ig-grid li > span:hover .cbp-ig-icon {
-webkit-transform: translateY(10px);
-moz-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px); }
.cbp-ig-grid li > span:hover .cbp-ig-icon:before,
.cbp-ig-grid li > span:hover .cbp-ig-title {
color: #fff; }
.cbp-ig-grid li > span:hover .cbp-ig-title {
-webkit-transform: translateY(-30px);
-moz-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px); }
.cbp-ig-grid li > span:hover .cbp-ig-title:before {
background: #fff;
margin-top: 80px; }
@media screen and (max-width: 62.75em) {
.cbp-ig-grid li {
width: 50%; } }
@media screen and (max-width: 41.6em) {
.cbp-ig-grid li {
width: 100%; } }
@media screen and (max-width: 25em) {
.cbp-ig-grid {
font-size: 80%; } }
html {
background: whitesmoke; }
html,
body {
color: #323232;
font-size: 14px;
font-family: "Lato", Calibri, Arial, sans-serif;
line-height: 1.5; }
::-webkit-input-placeholder {
color: #4f755e; }
:-moz-placeholder {
color: #4f755e; }
::-moz-placeholder {
color: #4f755e; }
:-ms-input-placeholder {
color: #4f755e; }
html,
body {
min-width: 900px; }
header {
position: fixed;
top: 0;
bottom: 0;
overflow: auto;
padding: 0 2rem;
width: 480px;
color: whitesmoke;
background: #60be86; }
header > h1,
header > h3 {
font-weight: 400;
font-family: "Damion", sans-serif;
text-align: center; }
header > h1 {
margin: 1rem 0 0;
font-size: 5rem; }
header > h1 > span {
font-size: 2rem; }
header > h2 {
font-weight: 400;
font-size: 1.3rem; }
header .download {
margin: 2rem 0 0;
font-weight: 900;
font-size: 1.3rem;
text-align: center; }
header .download i {
position: relative;
top: 12px;
left: -10px;
font-size: 3rem; }
header .download a {
padding: 1.3rem 1.8rem;
border: 6px solid #60be86;
color: #60be86;
background: whitesmoke; }
header .download a:hover {
border-color: whitesmoke;
color: #60be86; }
header > h3 {
margin: 4rem 0 0;
font-size: 3rem;
text-align: left; }
header > h5 {
margin: 0;
font-weight: 400;
font-style: italic;
font-size: 1.2rem; }
header > ul {
margin: 0;
padding: 0;
list-style: none; }
header > ul h4 {
margin: 0;
border-bottom: 1px solid whitesmoke;
font-size: 1.5rem; }
header > ul li {
margin: .8rem 0 2rem; }
header .icons-list {
margin: 1rem 0;
padding: 0;
list-style: none; }
header .icons-list > div {
display: inline; }
header .icons-list li {
position: relative;
display: inline-block;
width: 6.5rem;
margin: .5rem .3rem;
padding: .4rem;
cursor: pointer;
border: 5px solid #60be86; }
header .icons-list li:hover {
border: 5px solid #65d693;
border-radius: 5px; }
header .icons-list li:hover::before {
content: ' ';
position: absolute;
bottom: -18px;
left: 25px;
display: block;
width: 0px;
height: 0px;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 15px solid #65d693; }
header .icons-list li.selected-version {
border: 5px solid #65d693;
border-radius: 5px; }
header .icons-list li.selected-version::before {
position: absolute;
bottom: -19px;
left: 25px;
display: block;
width: 0;
height: 0;
border-top: 15px solid #65d693;
border-right: 15px solid transparent;
border-left: 15px solid transparent;
content: ' '; }
header .icons-list i {
font-size: 5rem; }
header .icons-list img {
max-width: 100%; }
.borders {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
border: 8px solid #60be86; }
.main {
margin: 0 0 0 480px; }
.search {
text-align: center; }
.search input {
width: 300px;
margin: 4rem;
padding: .5rem 1rem;
border: 0;
border-bottom: 2px solid #60be86;
color: #60be86;
background: none;
font-size: 1.2rem;
text-align: center; }
::-webkit-input-placeholder {
color: #60be86; }
:-moz-placeholder {
/* Firefox 18- */
color: #60be86; }
::-moz-placeholder {
/* Firefox 19+ */
color: #60be86; }
:-ms-input-placeholder {
color: #60be86; }
.cde {
white-space: nowrap;
padding: 1rem;
border-radius: 4px;
color: #4c6857;
background: #65d693;
font-size: .9rem;
font-family: courier;
overflow: auto; }
.cde-ind {
padding: 0 0 0 .5rem; }
.cde-com {
color: #4c6857;
opacity: .5; }
.footer {
margin-top: 6rem;
text-align: center; }

BIN
docs/assets/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

210
docs/assets/js/script.js Normal file
View File

@ -0,0 +1,210 @@
var devicon = angular.module('devicon', ['ngSanitize', 'ngAnimate']);
/*
||==============================================================
|| Devicons controller
||==============================================================
*/
devicon.controller('IconListCtrl', function($scope, $http, $compile) {
// Determination of the latest release tagging
// which is used for showing in the header of the page
// as well as for CDN links
var gitHubPath = 'devicons/devicon';
var url = 'https://api.github.com/repos/' + gitHubPath + '/tags';
$scope.latestReleaseTagging = 'master';
$http.get(url).success(function (data) {
if(data.length > 0) {
$scope.latestReleaseTagging = data[0].name;
}
}).error(function () {
console.log('Unable to determine latest release version, fallback to master.')
});
var baseUrl = 'https://raw.githubusercontent.com/' + gitHubPath + '/master/'
// Get devicon.json
$http.get(baseUrl + '/devicon.json').success(function(data) {
/*
| Re-format devicon.json
|-----------------------------------------
*/
$scope.icons = [];
$scope.selectedIcon = {};
// Loop through devicon.json
angular.forEach(data, function(devicon, key) {
// New icon format
var icon = {
name: devicon.name,
svg: devicon.versions.svg,
font: devicon.versions.font,
main: ""
};
// Loop through devicon.json icons
for (var i = 0; i < devicon.versions.font.length; i++) {
// Store all versions that should become main in order
var mainVersionsArray = [
"plain",
"line",
"original",
"plain-wordmark",
"line-wordmark",
"original-wordmark",
];
// Loop through mainVersionsArray
for (var j = 0; j < mainVersionsArray.length; j++) {
// Check if icon version can be "main", if not continue, if yes break the loops
if (devicon.name + devicon.versions.font[i] == devicon.name + mainVersionsArray[j]) {
icon.main = devicon.name + "-" + devicon.versions.font[i];
i = 99999; // break first loop (and second)
}
}
}
// Push new icon format to $scope.icons
$scope.icons.push(icon);
});
// Select first icon by default in scope
$scope.selectedIcon = $scope.icons[0];
$scope.selectedFontIcon = $scope.icons[0].font[0];
$scope.selectedSvgIcon = $scope.selectSvg($scope.icons[0].svg[0], 0);
$scope.selectedFontIndex = 0;
/*------ End of "Re-format devicon.json" ------*/
});
/*
| Change selected icon
|--------------------------------
*/
$scope.selectIcon = function(icon) {
$scope.selectedIcon = icon;
$scope.selectedFontIcon = icon.font[0];
$scope.selectedFontIndex = 0;
$scope.selectedSvgIcon = $scope.selectSvg(icon.svg[0], 0);
}
/*---- End of "Change selected icon" ----*/
/*
| Change selected icon font version
|--------------------------------
*/
$scope.selectFont = function(fontVersion, colored, index) {
$scope.selectedFontIcon = fontVersion;
$scope.colored = colored ? true : false;
$scope.selectedFontIndex = index;
}
/*---- End of "Change selected font icon" ----*/
/*
| Change selected icon svg version
|--------------------------------
*/
$scope.selectSvg = function(svgVersion, index) {
$http.get(baseUrl + '/icons/' + $scope.selectedIcon.name + '/' + $scope.selectedIcon.name + '-' + svgVersion + '.svg').success(function(data){
var svg = angular.element(data);
var innerSVG = (svg[0].innerHTML);
$scope.selectedSvgIcon = innerSVG;
$scope.selectedSvgIndex = index;
});
}
/*---- End of "Change selected svg icon" ----*/
});
/*================ End of "Devicons controller" ================*/
/*
||==================================================================
|| Convert icon img to svg
||==================================================================
*/
devicon.directive('imgToSvg', function ($http, $compile) {
var baseUrl = window.location.href;
return {
link : function($scope, $element, $attrs) {
$attrs.$observe('src', function(val){
$http.get(baseUrl + val).success(function(data){
var svg = angular.element(data);
svg = svg.removeAttr('xmlns');
svg = svg.addClass('not-colored');
svg = svg.attr('svg-color', '');
var $e = $compile(svg)($scope);
$element.replaceWith($e);
$element = $e;
});
});
}
};
});
/*================ End of "Convert icon img to svg" ================*/
/*
||==================================================================
|| Add color to svg when hovering
||==================================================================
*/
devicon.directive('svgColor', function () {
return {
link : function($scope, $element, $attrs) {
$element.on('mouseenter', function(){
$element.removeClass('not-colored');
});
$element.on('mouseleave', function(){
$element.addClass('not-colored');
});
}
};
});
/*================ End of "Add color to svg when hovering" ================*/
/*
||==================================================================
|| Show all icons on click
||==================================================================
*/
devicon.directive('iconDetails', function ($http, $compile) {
return {
template: '<div class="icon"><article class="icon-detail"><div ng-repeat="svg in icon.svg"><img ng-src="/icons/{{icon.name}}/{{icon.name}}-{{svg}}.svg" alt="{{icon.name}}" /></div></article><img ng-src="/icons/{{icon.name}}/{{icon.main}}.svg" alt="{{icon.name}}" img-to-svg /></div>',
replace: true,
scope: {
icon: "="
},
compile: function CompilingFunction($templateElement) {
$element.on('click', function(){
$templateElement.replaceWith(this.template);
});
}
};
});
/*================ End of "Add color to svg when hovering" ================*/

12
docs/browserconfig.xml Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square70x70logo src="/mstile-70x70.png"/>
<square150x150logo src="/mstile-150x150.png"/>
<square310x310logo src="/mstile-310x310.png"/>
<wide310x150logo src="/mstile-310x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>

154
docs/index.html Normal file
View File

@ -0,0 +1,154 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>DEVICON | All programming languages and development tools related icons font</title>
<meta name="description" content="devicon aims to gather all logos representing development languages and tools in one font.">
<!-- <meta name="viewport" content="width=device-width"> -->
<link rel="icon" type="image/x-icon" href="./logos/favicon.ico" sizes="196x196">
<link rel="apple-touch-icon" sizes="57x57" href="./logos/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="./logos/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="./logos/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="./logos/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="./logos/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="./logos/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="./logos/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./logos/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./logos/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="./logos/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="./logos/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="./logos/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="./logos/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="./manifest.json">
<link rel="mask-icon" href="./logos/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="./logos/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="https://raw.githubusercontent.com/devicons/devicon/master/devicon.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body ng-app="devicon" ng-controller="IconListCtrl">
<link rel="stylesheet" ng-if="latestReleaseTagging" ng-href="https://cdn.jsdelivr.net/gh/devicons/devicon@{{ latestReleaseTagging }}/devicon.min.css">
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<div class="borders"></div>
<div class="container">
<header class="clearfix">
<h1>Devicon <span><a href="https://github.com/devicons/devicon/releases">{{ latestReleaseTagging }}</a></span></h1>
<h2>Devicon is a set of icons representing programming languages, designing & development tools. You can use it as a font or directly copy/paste the svg code into your project.</h2>
<h3>(Super) Quick Setup</h3>
<h5>First select an icon on the right, then select the version below and copy/paste the code into your project.</h5>
<ul>
<li>
<h4>Font versions</h4>
<ul class="icons-list">
<div ng-repeat="fontVersion in selectedIcon.font">
<li ng-click="selectFont(fontVersion, false, $index)" ng-class="{'selected-version' : ($index == selectedFontIndex && !colored)}">
<i class="devicon-{{selectedIcon.name}}-{{fontVersion}}"></i>
</li>
<li ng-click="selectFont(fontVersion, true, $index)" ng-class="{'selected-version' : ($index == selectedFontIndex && colored)}">
<i class="devicon-{{selectedIcon.name}}-{{fontVersion}} colored"></i>
</li>
</div>
</ul>
<div class="cde">
<div class="cde-com">&lt;!-- in your header --&gt;</div>
&lt;link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/devicon@{{ latestReleaseTagging }}/devicon.min.css"&gt;<br />
<br />
<div class="cde-com">&lt;!-- in your body --&gt;</div>
&lt;i class="devicon-{{selectedIcon.name}}-{{selectedFontIcon}}<span ng-if="colored"> colored</span>"&gt;&lt;/i&gt;<br />
</div>
</li>
<li>
<h4>SVG versions</h4>
<ul class="icons-list">
<li ng-repeat="svgVersion in selectedIcon.svg" ng-click="selectSvg(svgVersion, $index)" ng-class="{'selected-version' : $index == selectedSvgIndex}">
<img ng-src="https://raw.githubusercontent.com/devicons/devicon/master/icons/{{selectedIcon.name}}/{{selectedIcon.name}}-{{svgVersion}}.svg">
</li>
</ul>
<div class="cde">
&lt;svg viewBox="0 0 128 128"&gt;<br />
<div class="cde-ind">{{selectedSvgIcon}}</div>
&lt;/svg&gt;
</div>
</li>
</ul>
<h3>Github Repo</h3>
<h5>If you prefer a local install, you can download all the files on the github repo.</h5>
<p class="download">
<a href="https://github.com/devicons/devicon/archive/master.zip"><i class="devicon-github-original"></i>DOWNLOAD</a>
</p>
<p class="download">
<a href="https://github.com/devicons/devicon/" target="blank"><i class="devicon-github-original"></i>GO TO REPO</a>
</p>
<p class="download">
<a href="https://github.com/devicons/devicon/blob/master/CONTRIBUTING.md" target="blank"><i class="devicon-github-original"></i>CONTRIBUTE</a>
</p>
<p class="footer">
Originally created by <a href="https://github.com/konpa">Konpa</a> (under <a href="https://github.com/devicons/devicon/blob/master/LICENSE">MIT License</a>) and <br />
supported by various <a href="https://github.com/devicons/devicon/graphs/contributors">contributors</a>.<br />
Copyright &copy; 2015 <a href="https://github.com/konpa">Konpa</a><br />
<br />
Final font build with <a href="https://icomoon.io/">Icomoon app</a><br />
<br />
<i>All product names, logos, and brandsare property of their respective owners. All company, product and service names used in this website are for identification purposes only. Use of these names, logos, and brands does not imply endorsement.</i>
</p>
</header>
<div class="main">
<div class="search">
<input type="text" placeholder="Search for icons" ng-model="search">
</div>
<ul class="cbp-ig-grid">
<li ng-repeat="icon in icons | filter:search">
<span ng-class="{'selected': icon.selected}" ng-click="selectIcon(icon)">
<i class="cbp-ig-icon devicon-{{icon.main}}"></i>
<h3 class="cbp-ig-title">{{icon.name}}</h3>
</span>
</li>
</ul>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.19/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.19/angular-sanitize.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.19/angular-animate.min.js"></script>
<script src="assets/js/script.js"></script>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-45588276-4', 'devicon.fr');
ga('send', 'pageview');
</script>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
docs/logos/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
docs/logos/mstile-70x70.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -0,0 +1,320 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="300.000000pt" height="300.000000pt" viewBox="0 0 300.000000 300.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.11, written by Peter Selinger 2001-2013
</metadata>
<g transform="translate(0.000000,300.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M25 2805 c4 -38 9 -77 10 -85 2 -8 6 -44 9 -80 4 -36 9 -76 11 -90 2
-14 7 -50 10 -80 3 -30 8 -71 10 -90 11 -84 22 -172 30 -250 4 -30 8 -68 10
-85 2 -16 6 -57 10 -90 3 -33 8 -71 10 -85 3 -14 7 -52 11 -85 3 -33 7 -71 9
-85 2 -14 6 -50 10 -80 3 -30 10 -89 15 -130 11 -93 19 -161 26 -220 2 -25 7
-61 10 -81 3 -20 7 -51 8 -70 6 -61 18 -164 21 -179 2 -8 6 -50 10 -92 4 -43
12 -81 19 -86 6 -5 222 -116 481 -247 259 -131 520 -264 582 -296 66 -35 118
-57 127 -53 9 3 23 1 30 -5 11 -9 16 -9 22 0 4 8 3 9 -4 5 -7 -4 -12 -3 -12 2
0 10 25 23 38 19 4 -1 6 -6 4 -10 -1 -5 3 -7 9 -5 7 2 13 12 15 22 3 21 1 19
41 38 23 12 34 13 43 4 9 -8 11 -6 8 9 -2 14 2 19 15 17 9 -2 17 2 17 9 0 6 6
9 14 6 8 -3 17 1 20 9 3 9 10 13 15 10 5 -4 11 0 14 6 3 10 8 9 22 -2 17 -14
18 -13 12 2 -7 19 27 45 52 39 8 -1 10 2 5 11 -4 7 -4 10 1 6 4 -4 21 2 36 13
16 11 29 17 29 13 0 -3 6 -1 13 5 8 6 17 8 20 4 4 -3 7 -1 7 5 0 7 6 12 14 12
7 0 19 7 26 15 7 9 15 13 18 10 3 -3 14 2 24 12 10 9 18 12 18 8 0 -4 9 0 20
10 11 10 20 14 20 10 0 -4 9 0 20 10 11 10 20 15 20 11 0 -4 14 2 30 14 17 12
30 17 30 12 0 -6 -6 -13 -12 -15 -10 -4 -10 -6 0 -6 8 -1 16 8 19 19 5 20 15
24 42 21 8 -2 10 2 5 10 -4 7 -3 10 4 5 5 -3 13 0 15 6 4 9 6 9 6 -2 1 -10 6
-8 17 8 8 12 21 22 28 22 8 0 19 7 26 15 7 9 19 14 27 11 8 -3 16 1 20 10 3 8
12 13 20 10 7 -3 16 1 20 10 3 8 12 13 19 10 8 -3 14 -1 14 4 0 6 7 10 15 10
8 0 15 5 15 11 0 6 6 9 14 6 8 -3 23 3 35 14 12 11 26 17 31 14 6 -3 10 -1 10
4 0 6 7 11 15 11 8 0 15 5 15 11 0 6 9 8 20 4 15 -5 18 -3 14 9 -4 9 -1 16 6
16 9 0 9 4 -1 17 -8 10 -9 14 -2 10 6 -4 14 -3 18 3 3 5 2 10 -3 10 -5 0 -8
15 -8 34 1 19 4 32 7 30 4 -2 6 13 4 34 -2 23 3 44 14 56 15 18 15 19 -4 13
-18 -7 -19 -6 -3 6 10 8 15 17 11 21 -10 10 -13 39 -4 51 4 5 6 20 5 33 -1 18
1 20 12 11 9 -7 14 -7 14 -1 0 5 -7 15 -15 22 -9 8 -12 17 -6 24 4 6 7 19 6
29 -2 9 0 15 5 12 4 -2 8 6 8 20 0 14 -5 22 -11 18 -6 -4 -7 -1 -1 8 8 14 14
46 15 82 0 13 5 17 17 13 13 -5 13 -3 -2 9 -14 11 -16 15 -5 15 12 0 12 2 -1
10 -8 5 -10 10 -4 10 5 0 16 -6 23 -13 11 -10 13 -9 8 5 -3 10 -2 20 4 24 6 3
8 12 5 19 -2 7 1 18 7 24 8 8 8 11 0 11 -6 0 -16 -7 -23 -15 -9 -10 -9 -15 -1
-15 15 0 14 -17 -3 -23 -10 -4 -12 6 -11 46 2 29 4 52 5 52 2 0 11 89 13 131
1 18 7 31 14 31 17 0 17 -14 1 -20 -10 -4 -10 -6 -1 -6 16 -1 24 14 17 32 -3
9 -13 13 -22 10 -10 -3 -13 -1 -7 4 6 4 10 15 10 23 -1 8 2 23 7 32 5 10 4 19
-2 23 -6 4 -7 12 -3 18 4 7 8 28 9 47 1 19 7 36 13 38 9 3 9 7 0 18 -7 9 -8
19 -2 27 5 6 8 33 7 59 -1 26 2 46 6 43 5 -3 11 -1 15 5 3 5 1 10 -6 10 -7 0
-4 7 7 15 14 12 15 14 2 9 -14 -5 -16 0 -13 28 2 18 4 33 5 33 1 0 3 18 4 40
1 22 4 45 7 50 4 6 5 18 4 28 -2 9 1 17 6 17 5 0 9 5 9 11 0 5 -6 7 -12 3 -10
-6 -10 -4 -2 7 6 8 10 29 8 47 -1 17 1 32 5 32 5 0 7 18 6 40 -1 22 1 37 5 35
4 -3 14 3 21 12 12 14 12 16 -2 11 -14 -5 -16 1 -14 40 4 73 4 74 15 67 6 -4
8 -11 5 -16 -4 -5 -2 -9 4 -9 19 0 21 19 3 32 -13 9 -18 23 -17 43 2 17 4 30
5 30 1 0 3 12 4 26 0 14 8 34 16 44 14 17 13 18 -2 12 -10 -3 -18 -2 -18 3 0
6 4 10 9 10 5 0 7 14 6 30 -1 17 0 32 4 34 9 6 6 84 -3 93 -4 5 -649 8 -1433
8 l-1425 0 7 -70z"/>
<path d="M2895 2803 c1 -13 -1 -26 -5 -28 -9 -5 -6 -63 4 -72 3 -3 0 -13 -6
-21 -16 -18 -21 -52 -8 -52 6 0 9 3 9 8 -3 20 3 23 18 11 14 -12 16 -12 9 1
-5 9 -2 8 7 -2 9 -12 17 -14 24 -7 7 7 10 2 9 -15 -1 -14 -5 -28 -8 -31 -4 -4
-4 -14 -1 -23 3 -10 -4 -7 -17 8 -12 14 -18 18 -14 10 7 -13 5 -13 -9 -1 -16
13 -14 36 3 26 5 -3 11 -1 14 4 3 5 -1 11 -9 15 -8 3 -19 -2 -24 -12 -5 -9
-13 -16 -17 -14 -5 1 -9 -9 -10 -23 -1 -27 29 -61 45 -50 7 3 8 0 5 -9 -3 -9
-9 -14 -12 -13 -4 1 -17 -5 -29 -14 -23 -16 -25 -38 -5 -61 10 -12 8 -18 -7
-32 -12 -11 -18 -28 -16 -44 1 -15 0 -31 -3 -37 -10 -17 -10 -55 1 -55 5 0 7
6 4 13 -3 8 1 14 8 14 10 0 11 -5 4 -18 -6 -11 -5 -20 1 -24 9 -6 14 8 11 28
0 4 4 7 10 7 6 0 8 -7 4 -17 -5 -15 -4 -16 7 -5 11 11 10 16 -6 28 -13 9 -15
14 -6 14 9 0 7 5 -6 15 -18 13 -18 14 6 8 15 -3 22 -2 17 3 -5 5 -13 9 -18 9
-5 0 -9 5 -8 10 1 6 5 9 11 7 5 -1 7 2 4 7 -3 5 0 8 6 7 7 -1 14 -5 15 -10 1
-5 7 -13 15 -18 9 -7 7 -8 -7 -3 -11 3 -16 3 -13 -1 4 -4 3 -15 -2 -25 -7 -12
-6 -20 2 -25 7 -5 8 -3 3 6 -5 8 -4 11 3 6 6 -4 9 -13 5 -21 -3 -8 0 -15 7
-15 6 0 8 5 5 10 -3 6 -2 10 3 10 5 0 8 18 6 40 -1 22 1 38 5 36 4 -3 6 14 6
37 -1 23 1 47 4 52 3 6 6 27 7 48 1 20 3 39 4 42 7 14 5 31 -5 37 -6 5 -5 8 3
8 7 0 12 12 12 28 0 79 4 130 10 127 4 -2 6 8 6 23 -1 15 3 33 8 40 10 15 12
14 -50 17 -49 2 -52 1 -49 -22z m87 3 c-4 -6 -7 -18 -7 -26 0 -8 -3 -20 -7
-26 -4 -5 -5 -19 -4 -30 2 -10 -3 -27 -12 -36 -14 -16 -13 -18 4 -18 18 -1 18
-1 1 -11 -12 -7 -22 -7 -30 -1 -7 5 -20 8 -30 7 -15 -3 -16 -1 -6 12 15 17 23
57 11 49 -8 -4 -9 38 -2 54 1 3 3 10 5 15 1 6 3 12 3 15 1 3 20 6 41 6 26 0
37 -3 33 -10z m-29 -249 c6 4 7 1 1 -8 -5 -8 -9 -31 -10 -51 -1 -21 -3 -39 -4
-40 -1 -2 -4 -21 -5 -43 -4 -51 -3 -49 -17 -37 -21 17 -24 18 -42 3 -9 -8 -19
-11 -23 -7 -9 9 27 45 41 40 6 -2 12 5 13 17 2 16 -1 18 -12 9 -14 -11 -27 0
-31 27 -2 11 34 50 42 46 12 -8 22 -1 19 15 -1 9 -8 16 -14 14 -6 -1 -14 5
-17 13 -3 8 -9 13 -13 11 -4 -3 -7 6 -7 19 l0 23 35 -28 c19 -16 39 -26 44
-23z m-89 -248 c-3 -5 -10 -7 -15 -3 -5 3 -7 10 -3 15 3 5 10 7 15 3 5 -3 7
-10 3 -15z m66 17 c0 -3 -4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0
10 -2 10 -4z"/>
<path d="M2910 2797 c0 -5 7 -6 16 -3 10 4 13 2 8 -6 -5 -7 -3 -8 6 -3 9 5 11
4 6 -3 -5 -8 -1 -10 9 -5 12 4 13 8 5 13 -9 6 -9 9 1 12 8 3 -1 5 -18 4 -18 0
-33 -5 -33 -9z"/>
<path d="M2909 2776 c-5 -22 -4 -32 2 -41 9 -13 7 -34 -5 -55 -5 -8 -6 -12 -1
-8 4 4 15 2 23 -5 10 -7 13 -8 9 -1 -4 7 0 17 7 24 8 6 13 21 11 32 -3 12 0
27 6 35 7 7 8 13 4 13 -18 0 -33 -35 -24 -55 10 -19 10 -19 -5 -1 -9 10 -13
23 -9 29 3 6 2 7 -4 4 -5 -3 -10 0 -10 8 0 12 3 12 15 2 12 -10 14 -9 11 2 -5
15 -28 28 -30 17z m26 -75 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z"/>
<path d="M2891 2573 c7 -12 15 -20 18 -17 3 2 -3 12 -13 22 -17 16 -18 16 -5
-5z"/>
<path d="M2918 2499 c-10 -5 -18 -7 -18 -3 0 3 -6 1 -14 -5 -8 -7 -13 -19 -12
-27 2 -14 6 -16 24 -13 4 1 14 2 21 3 9 0 16 13 16 29 1 15 1 27 1 27 -1 0 -9
-5 -18 -11z m-22 -24 c-1 -8 -5 -17 -8 -21 -5 -4 -4 16 1 34 3 9 9 -1 7 -13z
m31 0 c0 -8 -4 -15 -9 -15 -4 0 -8 7 -8 15 0 8 4 15 8 15 5 0 9 -7 9 -15z"/>
<path d="M2919 2438 c-6 -23 -7 -48 -1 -52 4 -2 7 9 7 25 1 24 -2 38 -6 27z"/>
<path d="M2869 2393 c-12 -16 -12 -17 2 -6 9 7 20 9 24 5 5 -4 5 -1 1 6 -9 16
-11 15 -27 -5z"/>
<path d="M2931 2616 c-8 -10 -9 -16 -1 -21 5 -3 10 -5 11 -3 4 18 7 38 4 38
-1 0 -8 -6 -14 -14z"/>
<path d="M2885 2254 c-14 -10 -22 -11 -32 -2 -7 6 -16 8 -20 4 -3 -3 -1 -6 6
-6 8 0 7 -7 -3 -22 -8 -13 -15 -26 -16 -30 0 -5 -1 -9 -1 -10 -1 -2 -3 -23 -4
-48 -1 -25 -4 -45 -5 -45 -1 0 -3 -11 -4 -25 -2 -19 2 -26 15 -27 10 -1 22 3
25 9 5 7 1 9 -9 5 -9 -3 -19 -1 -23 5 -5 7 -2 8 6 3 9 -5 11 -4 6 3 -4 7 -2
10 6 9 7 -2 9 -2 5 1 -5 2 1 11 13 19 18 12 19 17 8 31 -11 13 -11 14 1 8 8
-6 7 0 -4 18 -10 14 -14 26 -10 26 4 0 2 7 -5 15 -8 9 -8 15 -2 15 6 0 12 -3
15 -7 2 -5 2 -3 1 4 -2 7 2 15 8 19 6 4 8 3 5 -3 -4 -6 1 -10 11 -9 12 1 17
-6 16 -24 -2 -41 -3 -42 -21 -36 -15 5 -15 4 1 -9 14 -11 16 -15 5 -15 -11 -1
-10 -3 3 -10 22 -13 16 -46 -8 -43 -18 1 -18 1 1 -14 12 -10 14 -14 5 -10 -12
3 -16 -2 -16 -18 0 -13 5 -22 11 -21 5 2 6 1 2 -2 -4 -2 -2 -11 5 -20 9 -11 9
-14 1 -9 -8 5 -11 1 -8 -13 3 -13 0 -18 -7 -14 -7 4 -8 3 -4 -4 11 -17 29 -15
22 3 -3 8 -1 15 5 15 6 0 8 9 4 19 -3 11 -1 22 5 26 8 5 8 10 0 20 -7 8 -7 16
-1 19 5 3 8 19 7 36 -1 16 3 32 8 34 7 3 6 5 -1 5 -7 1 -13 6 -13 12 0 5 4 8
9 5 5 -3 7 9 6 27 -2 17 1 35 7 38 5 3 2 9 -7 12 -10 5 -14 3 -9 -5 4 -7 3 -8
-5 -4 -8 6 -9 12 -2 20 6 7 7 17 3 21 -4 5 -1 5 6 1 7 -4 10 -12 7 -17 -4 -5
-1 -9 4 -9 15 0 14 27 -2 33 -7 3 -21 -1 -32 -9z m10 -14 c-3 -5 -12 -10 -18
-10 -7 0 -6 4 3 10 19 12 23 12 15 0z m-60 -70 c-2 -11 -1 -20 3 -20 18 0 10
-46 -9 -59 -17 -10 -20 -10 -13 1 5 7 9 31 10 53 2 44 2 45 8 45 3 0 3 -9 1
-20z m60 -140 c3 -6 -1 -7 -9 -4 -18 7 -21 14 -7 14 6 0 13 -4 16 -10z"/>
<path d="M2862 2190 c-7 -12 -8 -20 -2 -20 5 0 13 -1 17 -2 3 -2 8 7 9 20 5
27 -7 29 -24 2z"/>
<path d="M2862 2097 c-8 -10 -6 -13 11 -14 15 -2 18 0 8 6 -11 7 -11 9 0 14 8
3 9 6 3 6 -6 1 -16 -5 -22 -12z"/>
<path d="M2830 2030 c-14 -11 -21 -20 -16 -20 5 0 2 -8 -6 -17 -9 -11 -15 -33
-14 -53 2 -19 -2 -41 -7 -47 -6 -9 -5 -18 2 -27 8 -9 8 -16 2 -20 -6 -4 -7
-14 -4 -23 4 -11 2 -14 -5 -9 -7 4 -9 -1 -7 -15 3 -13 0 -28 -6 -35 -7 -8 -7
-14 1 -19 6 -4 7 -13 2 -23 -11 -23 -9 -47 5 -45 17 3 12 -46 -6 -60 -9 -7
-17 -23 -19 -37 -1 -14 -4 -41 -6 -60 -2 -19 -5 -35 -6 -35 -1 0 -3 -12 -4
-27 -2 -23 0 -26 11 -16 10 8 17 8 24 1 8 -8 8 -13 0 -17 -5 -4 -8 -13 -5 -20
3 -8 0 -17 -6 -21 -8 -5 -8 -11 1 -21 11 -14 1 -20 -25 -15 -5 1 -4 -5 4 -13
11 -15 7 -20 -13 -17 -5 1 -6 -3 -2 -9 3 -5 3 -16 -2 -22 -10 -18 -12 -58 -2
-64 4 -2 6 5 4 16 -2 11 0 18 5 15 5 -3 7 4 5 16 -4 17 -2 19 10 9 17 -14 20
0 5 18 -6 6 -7 10 -4 7 13 -9 33 16 27 32 -4 10 -2 14 5 9 6 -3 14 -1 18 5 5
8 3 9 -7 4 -11 -6 -12 -5 -2 5 7 8 16 11 20 7 4 -4 1 -13 -5 -19 -15 -15 -16
-31 0 -22 7 4 8 3 4 -5 -4 -6 -13 -8 -19 -5 -7 4 -9 4 -5 -1 4 -4 3 -14 -3
-22 -9 -10 -8 -17 2 -30 12 -15 12 -16 -1 -8 -11 7 -10 1 4 -20 13 -20 14 -26
4 -18 -12 10 -15 10 -15 -2 0 -8 5 -11 10 -8 6 3 7 1 3 -6 -6 -9 -11 -9 -22 0
-11 9 -14 9 -14 0 0 -7 -5 -9 -11 -5 -8 5 -7 10 4 16 9 5 14 15 11 23 -4 8
-10 12 -15 9 -5 -3 -7 -9 -4 -14 3 -5 -3 -13 -12 -19 -13 -7 -14 -10 -4 -11
11 0 10 -5 -4 -20 -10 -11 -15 -20 -10 -20 4 0 2 -6 -4 -14 -9 -11 -8 -17 8
-28 16 -11 17 -16 6 -31 -7 -10 -15 -14 -17 -10 -3 4 -3 3 -2 -4 2 -7 -1 -15
-6 -18 -10 -6 -9 -32 1 -50 9 -15 2 -49 -11 -53 -7 -3 -4 -9 7 -17 24 -18 50
-7 26 11 -14 11 -14 13 -2 9 9 -3 22 2 30 11 12 14 10 19 -9 34 -15 13 -18 20
-10 24 7 3 4 4 -6 3 -10 -1 -20 4 -22 11 -1 7 0 8 2 3 3 -6 12 -7 20 -4 7 3
11 9 8 14 -3 5 -10 6 -16 3 -7 -4 -8 -2 -4 5 4 6 11 9 16 6 5 -3 14 3 20 14 7
13 7 22 0 26 -5 3 -10 11 -10 18 0 6 7 2 16 -9 8 -10 12 -12 8 -4 -6 12 -4 13
6 3 17 -16 22 -43 8 -43 -7 0 -6 -5 1 -14 7 -8 8 -17 3 -20 -5 -3 -8 -21 -7
-41 1 -20 -5 -40 -12 -47 -11 -9 -11 -14 -1 -27 12 -14 11 -15 -7 -2 -19 14
-19 14 -3 -4 22 -24 31 -15 34 37 2 24 6 66 10 93 3 28 6 67 7 88 0 20 4 37
10 37 5 0 4 7 -3 15 -8 9 -8 15 -2 15 6 0 10 9 9 19 0 11 -5 17 -9 15 -4 -3
-8 0 -8 5 0 6 7 11 15 11 8 0 15 4 15 10 0 5 -7 7 -15 4 -8 -4 -15 -1 -15 5 0
6 6 11 14 11 10 0 15 12 16 38 2 95 5 130 10 127 3 -2 5 8 5 23 -1 15 3 33 8
40 11 14 4 25 -18 28 -15 2 -16 -21 -2 -43 4 -6 3 -14 -3 -18 -6 -4 -7 -12 -3
-18 3 -7 -2 -5 -13 4 -10 9 -24 14 -31 12 -6 -2 -15 1 -19 8 -5 9 -2 10 9 6 9
-3 19 -1 23 5 5 7 2 8 -6 3 -9 -5 -11 -4 -6 3 5 8 1 10 -11 6 -12 -4 -14 -3
-6 3 7 5 10 21 8 38 -4 22 -3 26 5 15 5 -8 10 -13 11 -10 0 3 2 13 4 23 2 12
-1 17 -10 13 -9 -3 -12 0 -8 10 4 11 9 12 19 3 20 -17 36 -2 23 23 -9 16 -8
19 3 14 7 -4 6 -1 -3 5 -16 12 -16 14 0 28 12 12 13 13 1 6 -12 -7 -13 -7 -2
5 6 8 12 19 12 25 0 5 -4 4 -9 -3 -6 -10 -11 -9 -22 4 -11 14 -11 18 6 30 13
9 14 14 5 14 -9 0 -7 5 6 15 19 15 19 15 0 8 -16 -5 -18 -3 -12 13 4 10 9 24
10 31 1 7 6 16 11 20 4 4 5 2 0 -6 -6 -10 -4 -12 4 -6 8 4 6 -5 -4 -21 l-17
-29 20 25 c11 14 24 21 28 17 4 -4 2 -7 -5 -7 -7 0 -9 -4 -6 -10 3 -5 1 -10
-5 -10 -6 0 -8 -5 -5 -11 4 -6 13 -8 19 -6 7 3 13 -1 13 -8 0 -8 -7 -11 -16
-8 -13 5 -14 3 -4 -7 9 -9 9 -18 1 -33 -7 -14 -7 -22 0 -26 13 -8 10 -34 -5
-53 -7 -8 -8 -19 -3 -28 5 -8 6 -18 4 -22 -3 -4 0 -8 5 -8 6 0 11 6 12 13 4
48 7 66 12 81 4 9 1 16 -5 16 -7 0 -7 4 0 13 5 6 9 24 7 40 -2 15 1 27 6 27 6
0 7 5 4 11 -4 6 -13 8 -21 5 -8 -3 -11 0 -8 9 3 8 12 11 19 8 11 -4 13 4 11
31 -2 20 -1 36 3 36 16 0 5 56 -13 72 -14 11 -17 20 -11 25 12 9 13 23 4 38
-4 6 -5 18 -4 28 4 21 6 21 -25 -3z m30 -35 c0 -2 -8 -1 -17 2 -15 6 -16 4 -6
-9 7 -8 10 -18 6 -21 -3 -4 2 -16 12 -27 21 -23 28 -50 15 -50 -5 0 -7 -9 -5
-20 2 -11 0 -18 -6 -15 -5 4 -9 -1 -9 -10 0 -9 4 -14 8 -11 5 3 9 -1 9 -9 0
-11 -6 -10 -27 5 -18 13 -31 16 -38 10 -9 -7 -9 -7 -2 2 6 7 6 16 -1 24 -6 7
-7 19 -3 26 5 7 9 29 9 49 0 20 6 43 13 51 6 8 8 18 4 23 -4 4 3 2 16 -4 12
-6 22 -14 22 -16z m-73 -240 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11
12 -6z m64 -48 c-10 -9 -11 -8 -5 6 3 10 9 15 12 12 3 -3 0 -11 -7 -18z m-62
-10 c8 -10 7 -14 -2 -14 -8 0 -14 6 -14 14 0 7 1 13 2 13 2 0 8 -6 14 -13z
m58 -72 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m-52 -5 c-3
-5 -1 -10 6 -10 7 0 10 -3 6 -6 -9 -9 -28 6 -22 17 4 5 8 9 11 9 3 0 2 -4 -1
-10z m36 -113 c-10 -9 -11 -8 -5 6 3 10 9 15 12 12 3 -3 0 -11 -7 -18z m-76
-36 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m60 -65 c2 -25 -1
-33 -10 -30 -7 3 -16 0 -20 -5 -3 -6 -11 -9 -16 -5 -6 4 -6 11 1 19 7 8 9 19
6 24 -4 5 -2 13 4 16 8 5 8 11 1 19 -16 19 0 29 17 12 8 -8 16 -30 17 -50z
m-50 -75 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m45 -30 c0 -5
-7 -12 -16 -15 -14 -5 -15 -4 -4 9 14 17 20 19 20 6z m-24 -157 l-1 -42 -24
19 c-16 13 -28 16 -36 9 -16 -13 -28 0 -14 17 6 7 8 13 4 13 -4 0 -3 6 3 13 7
7 24 13 40 13 27 0 28 -2 28 -42z m-53 -59 c-3 -9 -8 -14 -10 -11 -3 3 -2 9 2
15 9 16 15 13 8 -4z m7 -106 c0 -10 -20 -23 -26 -16 -3 3 -6 11 -8 19 -1 7 -5
19 -10 27 -6 8 1 7 18 -4 14 -10 26 -21 26 -26z m27 -44 c0 -8 -4 -12 -9 -9
-5 3 -6 10 -3 15 9 13 12 11 12 -6z"/>
<path d="M2819 1988 c-1 -2 -2 -21 -3 -43 -1 -22 -5 -46 -10 -54 -6 -8 -1 -20
14 -35 13 -11 20 -16 16 -10 -3 7 1 14 9 17 8 4 12 15 10 27 -2 11 1 20 7 20
6 0 1 11 -11 24 -13 14 -20 29 -17 35 4 5 2 12 -4 16 -5 3 -11 5 -11 3z m27
-88 c0 -17 -6 -32 -13 -34 -17 -7 -27 12 -15 27 5 7 8 20 7 29 -2 10 2 15 10
12 7 -3 12 -18 11 -34z"/>
<path d="M2825 1889 c-4 -6 -5 -12 -2 -15 2 -3 7 2 10 11 7 17 1 20 -8 4z"/>
<path d="M2789 1423 c-1 -5 -1 -12 0 -17 1 -4 -4 -15 -11 -24 -12 -14 -11 -14
10 -1 24 15 29 29 10 29 -9 0 -8 4 2 10 10 6 11 10 3 10 -7 0 -14 -3 -14 -7z"/>
<path d="M2729 1173 c-1 -2 -2 -6 -3 -10 -1 -5 -5 -15 -11 -23 -8 -13 -7 -13
8 -1 15 12 20 11 36 -3 19 -17 19 -17 16 1 -2 10 -4 23 -4 30 -1 10 -38 15
-42 6z m35 -19 c3 -8 2 -12 -4 -9 -6 3 -10 10 -10 16 0 14 7 11 14 -7z"/>
<path d="M2715 980 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0 -7
-4 -4 -10z"/>
<path d="M2819 1765 c-1 -3 -2 -10 -3 -15 0 -6 -8 -15 -16 -20 -8 -5 -11 -12
-7 -17 5 -4 12 -1 17 7 9 13 10 13 10 0 0 -13 1 -13 10 0 5 9 5 19 0 26 -6 6
-7 14 -3 17 3 4 3 7 0 7 -4 0 -8 -2 -8 -5z"/>
<path d="M2821 1666 c-8 -10 -9 -16 -1 -21 5 -3 10 -5 11 -3 4 18 7 38 4 38
-1 0 -8 -6 -14 -14z"/>
<path d="M2806 1585 c-11 -8 -14 -15 -8 -15 7 0 12 -5 12 -12 0 -6 -3 -8 -7
-5 -3 4 -12 2 -19 -4 -11 -9 -11 -16 -2 -33 7 -11 12 -24 13 -28 0 -5 3 -8 8
-8 4 0 10 0 13 0 4 0 1 6 -5 13 -6 8 -8 17 -4 20 3 4 1 7 -7 7 -10 0 -10 3 0
15 7 8 15 13 19 11 4 -3 13 0 21 5 13 8 12 11 -3 20 -9 6 -15 14 -12 20 8 12
3 11 -19 -6z m22 -30 c-3 -3 -9 2 -12 12 -6 14 -5 15 5 6 7 -7 10 -15 7 -18z"/>
<path d="M2752 1251 c7 -9 13 -18 15 -20 1 -2 1 5 0 16 0 11 -7 20 -14 20 -10
0 -10 -4 -1 -16z"/>
<path d="M2748 1078 c-16 -31 -18 -66 -2 -79 9 -7 12 -6 9 8 -1 10 2 23 7 30
5 7 5 14 -2 18 -7 4 -7 12 0 26 6 10 8 19 6 19 -3 0 -11 -10 -18 -22z m7 -27
c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z"/>
<path d="M2739 953 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17
-17z"/>
<path d="M2674 903 c3 -14 2 -31 -1 -37 -11 -16 -11 -46 -1 -52 5 -3 3 -13 -4
-21 -7 -9 -12 -18 -10 -20 1 -1 1 -5 1 -8 -1 -3 -2 -11 -3 -17 0 -7 -9 -13
-19 -13 -10 0 -22 -7 -27 -15 -5 -8 -10 -11 -10 -6 0 5 -6 3 -13 -3 -8 -6 -17
-8 -20 -4 -13 13 -19 -28 -6 -44 12 -14 12 -16 0 -8 -9 5 -12 4 -7 -3 4 -7 -1
-9 -15 -7 -28 6 -48 24 -24 22 10 -1 20 5 23 13 5 13 3 13 -11 1 -10 -7 -17
-10 -17 -7 0 4 -13 -2 -30 -14 -16 -12 -30 -18 -30 -14 0 4 -9 -1 -20 -11 -11
-10 -20 -14 -20 -9 -1 5 -9 -1 -19 -14 -12 -13 -21 -18 -23 -10 -4 12 -61 -23
-85 -52 -7 -8 -13 -11 -13 -6 0 5 -7 3 -15 -4 -8 -6 -18 -9 -23 -6 -6 3 -17
-6 -27 -20 -10 -16 -22 -23 -32 -20 -9 4 -22 1 -29 -5 -8 -6 -14 -8 -14 -4 0
5 -9 0 -20 -10 -11 -10 -20 -14 -20 -10 0 4 -9 0 -20 -10 -11 -10 -20 -14 -20
-10 0 4 -9 0 -20 -10 -11 -10 -20 -14 -20 -9 -1 5 -9 -1 -19 -13 -11 -13 -27
-24 -38 -26 -10 -1 -24 -6 -30 -10 -7 -5 -13 -5 -13 -1 0 3 -16 -6 -35 -20
-19 -15 -39 -25 -43 -22 -4 2 -16 -2 -27 -10 -11 -8 -14 -14 -6 -14 11 0 11
-3 1 -15 -9 -11 -16 -12 -25 -5 -9 8 -15 8 -20 0 -3 -6 -10 -8 -15 -5 -4 3
-11 -2 -14 -11 -3 -8 -10 -13 -15 -9 -5 3 -13 0 -16 -6 -4 -5 -13 -8 -21 -5
-8 3 -11 0 -8 -8 6 -17 -12 -30 -21 -16 -4 6 -11 8 -16 4 -5 -3 -6 -10 -3 -16
4 -6 -1 -8 -13 -4 -12 4 -25 1 -33 -9 -7 -8 -9 -15 -5 -15 5 0 0 -9 -10 -20
-10 -11 -13 -20 -7 -20 6 0 13 6 15 12 4 10 6 10 6 1 1 -6 -4 -15 -11 -19 -13
-8 -40 25 -31 39 3 6 2 7 -4 4 -12 -8 -10 -52 3 -52 5 0 15 -4 22 -8 7 -5 12
-4 12 2 0 6 3 10 8 9 4 -1 21 5 37 12 17 7 33 13 38 12 4 -1 7 3 7 9 0 5 4 8
9 4 5 -3 16 3 23 13 7 9 20 17 28 17 8 -1 31 9 51 21 20 13 40 20 45 16 4 -4
4 -1 0 5 -5 9 0 13 13 13 11 0 22 4 25 9 10 15 -6 42 -21 37 -8 -4 -11 -1 -8
5 4 6 14 8 22 5 8 -4 11 -1 7 5 -3 6 3 5 15 -2 14 -9 17 -16 8 -21 -6 -4 -8
-10 -3 -15 4 -4 12 1 18 11 8 15 12 16 20 5 8 -11 8 -10 4 4 -5 15 -2 17 14
12 12 -4 20 -2 20 5 0 6 4 9 8 6 4 -2 14 -1 21 3 11 7 11 13 1 27 -11 18 -11
18 -6 -1 l6 -20 -16 20 c-14 16 -16 17 -11 3 4 -11 2 -17 -6 -15 -7 1 -11 -4
-9 -11 2 -10 -2 -10 -18 -2 -19 10 -24 6 -21 -13 1 -5 -3 -6 -9 -2 -6 3 -8 10
-5 15 3 4 -1 11 -7 14 -7 3 3 3 22 0 34 -5 34 -4 15 11 -19 16 -19 16 4 4 20
-9 23 -9 18 4 -4 11 1 14 23 12 15 -1 34 1 42 6 10 6 10 9 1 9 -7 0 -13 5 -13
11 0 8 5 7 16 -2 14 -12 14 -14 -2 -26 -14 -10 -15 -16 -6 -25 9 -9 13 -7 18
5 3 9 10 14 15 11 5 -3 6 3 2 13 -5 14 -3 16 7 6 14 -13 41 -6 53 13 4 7 14
11 21 8 7 -3 21 2 30 11 9 9 22 18 29 19 24 5 52 20 59 30 4 6 15 11 25 11 10
0 19 6 19 13 3 25 5 27 14 12 9 -13 14 -10 34 14 15 18 26 24 30 17 5 -8 15
-5 33 9 14 11 29 17 34 14 5 -3 9 0 9 5 0 6 6 11 14 11 7 0 19 7 26 15 7 8 17
12 23 8 6 -4 7 -1 2 7 -6 10 -4 12 9 7 11 -5 15 -3 10 5 -5 7 -2 9 8 5 9 -3
24 2 35 12 10 10 24 16 31 13 6 -2 12 1 12 8 0 6 5 8 12 4 7 -5 8 -3 3 6 -6
10 -4 12 9 7 11 -5 15 -3 10 4 -4 7 -1 10 7 7 8 -3 26 3 40 13 14 10 29 16 33
12 3 -3 6 -1 6 5 0 7 3 11 8 11 21 -4 23 3 7 21 -18 19 -18 22 -2 37 11 11 17
13 17 5 0 -7 -4 -12 -10 -12 -16 0 -12 -17 6 -24 8 -3 12 -2 9 4 -3 5 -1 19 6
31 8 16 8 20 0 14 -12 -7 -10 23 4 58 8 19 -10 24 -21 5 -5 -7 -3 -8 5 -3 10
6 10 2 0 -16 -7 -13 -12 -31 -11 -39 1 -10 -1 -11 -4 -2 -3 6 -10 12 -16 12
-7 0 -6 -5 1 -14 9 -11 9 -16 0 -22 -8 -5 -9 -3 -4 6 6 9 4 11 -5 5 -9 -6 -11
-4 -5 5 5 8 4 11 -2 7 -6 -4 -14 0 -17 9 -3 8 -2 13 3 9 14 -8 42 6 34 18 -3
6 -1 7 5 3 7 -4 12 -3 12 3 0 20 -19 21 -30 1 -11 -21 -30 -19 -30 3 0 7 4 7
9 -2 7 -10 9 -2 6 25 -2 35 0 40 19 41 19 2 19 1 4 -8 -10 -6 -18 -15 -18 -21
0 -7 5 -7 14 1 9 8 16 8 20 2 4 -6 13 -8 21 -4 12 4 10 9 -10 25 -14 10 -29
17 -34 13 -5 -3 -12 -1 -16 5 -12 20 -25 10 -21 -17z m40 -147 c21 -28 23 -34
8 -31 -9 1 -28 -8 -41 -21 -13 -13 -28 -21 -33 -18 -6 4 -23 -3 -38 -15 -22
-16 -31 -18 -37 -8 -9 15 -14 41 -6 33 4 -3 12 -1 19 5 8 7 14 7 19 -1 11 -17
24 -11 20 10 -2 12 0 18 6 14 13 -7 41 15 33 27 -3 5 2 12 11 15 13 6 14 8 3
15 -8 5 -9 9 -2 9 7 0 23 -15 38 -34z m-171 -121 c4 3 5 2 1 -2 -3 -4 -17 -8
-32 -9 -41 -2 -44 -3 -38 -13 6 -9 -13 -30 -27 -29 -5 0 -26 -11 -48 -25 -22
-15 -37 -22 -34 -18 2 5 -2 11 -10 15 -10 3 -20 -6 -31 -26 -15 -29 -18 -30
-29 -15 -12 17 -13 17 -20 0 -5 -10 -8 -21 -7 -25 1 -4 -4 -5 -12 -2 -7 3 -18
-2 -25 -10 -7 -8 -19 -12 -27 -9 -9 3 -14 0 -12 -8 2 -7 -6 -13 -17 -13 -11 0
-26 -9 -34 -19 -7 -10 -19 -16 -27 -13 -7 3 -16 1 -19 -5 -4 -5 -10 -7 -15 -4
-4 3 -11 -2 -14 -11 -5 -12 -10 -14 -20 -5 -7 6 -15 9 -18 6 -3 -3 -11 2 -19
12 -8 9 -9 14 -3 10 7 -4 17 0 24 8 7 8 17 12 22 9 5 -3 16 2 23 12 8 11 15
15 15 10 0 -5 9 -1 20 9 19 17 19 17 15 -3 -2 -15 0 -19 11 -15 7 3 12 8 10
12 -3 4 -1 13 4 21 6 10 12 11 22 2 11 -8 18 -5 33 18 17 26 20 27 33 12 7
-10 11 -12 8 -6 -3 7 1 17 9 24 8 7 15 9 15 6 0 -4 20 9 44 29 25 20 47 32 50
26 7 -11 37 -4 33 7 -1 4 1 7 4 7 4 0 16 9 28 19 12 11 21 16 21 12 0 -4 10 0
21 8 19 13 24 13 44 0 12 -8 25 -12 28 -9z m-695 -355 c3 -9 -1 -11 -11 -7 -8
3 -23 -3 -33 -14 -9 -10 -19 -17 -22 -15 -2 3 -13 -4 -24 -14 -11 -10 -29 -17
-39 -15 -11 2 -23 -4 -29 -15 -7 -13 -18 -17 -35 -14 -14 2 -24 1 -23 -3 2 -5
0 -8 -3 -8 -4 0 -15 -8 -26 -17 -18 -17 -19 -16 -18 12 1 37 10 46 30 30 15
-12 21 -3 16 24 -1 5 4 4 12 -2 11 -9 19 -7 38 11 13 12 27 21 32 19 4 -1 17
7 29 18 15 14 25 17 33 10 9 -7 16 -6 24 4 14 17 43 15 49 -4z"/>
<path d="M2690 761 c0 -7 -5 -9 -12 -5 -6 4 -8 3 -4 -4 3 -6 -5 -19 -19 -30
-19 -15 -21 -21 -11 -25 8 -3 24 5 36 18 13 14 28 21 34 18 6 -4 4 2 -4 13 -8
10 -16 21 -17 23 -2 2 -3 -1 -3 -8z m10 -14 c0 -2 -12 -14 -27 -28 l-28 -24
24 28 c23 25 31 32 31 24z"/>
<path d="M2581 686 c-7 -8 -8 -17 -3 -20 6 -3 15 1 21 8 7 8 8 17 3 20 -6 3
-15 -1 -21 -8z"/>
<path d="M2472 634 c-12 -8 -22 -12 -22 -8 0 4 -8 0 -18 -9 -10 -10 -22 -14
-27 -10 -4 5 -5 3 -2 -3 10 -17 -21 -40 -35 -26 -15 15 -79 -34 -71 -55 5 -11
7 -12 14 -2 4 7 6 16 3 20 -8 14 47 30 57 17 3 -4 16 2 29 14 14 13 26 22 27
21 2 -2 5 -2 8 -2 3 1 11 2 18 3 6 0 12 7 12 14 0 16 26 33 39 25 5 -3 6 -1 2
5 -9 15 -7 15 -34 -4z m-16 -26 c4 -7 4 -10 -1 -6 -4 4 -15 2 -24 -5 -14 -11
-14 -10 -2 6 16 20 18 21 27 5z"/>
<path d="M2255 520 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0
-8 -4 -11 -10z"/>
<path d="M2211 496 c-7 -8 -8 -17 -3 -20 6 -3 15 1 21 8 7 8 8 17 3 20 -6 3
-15 -1 -21 -8z"/>
<path d="M2155 470 c-3 -5 -5 -10 -3 -11 33 -8 38 -7 27 7 -14 17 -16 17 -24
4z"/>
<path d="M2101 443 c-8 -14 -10 -15 -11 -3 0 9 -6 6 -16 -9 -11 -15 -19 -19
-24 -12 -5 9 -11 7 -20 -4 -11 -13 -10 -15 4 -9 10 4 16 1 16 -7 1 -9 4 -8 11
4 6 9 14 15 19 12 5 -3 11 -1 15 4 3 6 12 8 19 5 8 -3 17 -1 21 5 4 7 0 8 -11
4 -13 -5 -16 -3 -11 10 8 22 1 22 -12 0z"/>
<path d="M1800 275 c-9 -11 -16 -12 -25 -5 -8 7 -17 4 -30 -10 -10 -11 -23
-19 -28 -17 -6 2 -21 -7 -35 -20 -13 -12 -30 -20 -36 -16 -6 3 -7 2 -3 -2 10
-11 39 -16 32 -5 -5 9 21 23 46 24 9 1 26 9 36 19 11 9 22 15 25 12 3 -3 13 4
23 15 10 11 16 20 13 20 -3 0 -11 -7 -18 -15z m-30 -8 c0 -2 -10 -12 -22 -23
l-23 -19 19 23 c18 21 26 27 26 19z"/>
<path d="M1599 191 c11 -7 11 -9 0 -14 -8 -3 -4 -4 8 -4 17 1 19 4 11 14 -6 7
-16 13 -22 13 -6 0 -5 -4 3 -9z"/>
<path d="M2709 863 c-12 -16 -12 -17 2 -6 9 7 20 9 24 5 5 -4 5 -1 1 6 -9 16
-11 15 -27 -5z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

41
docs/manifest.json Normal file
View File

@ -0,0 +1,41 @@
{
"name": "Devicon",
"icons": [
{
"src": "\/logos/android-chrome-36x36.png",
"sizes": "36x36",
"type": "image\/png",
"density": "0.75"
},
{
"src": "\/logos/android-chrome-48x48.png",
"sizes": "48x48",
"type": "image\/png",
"density": "1.0"
},
{
"src": "\/logos/android-chrome-72x72.png",
"sizes": "72x72",
"type": "image\/png",
"density": "1.5"
},
{
"src": "\/logos/android-chrome-96x96.png",
"sizes": "96x96",
"type": "image\/png",
"density": "2.0"
},
{
"src": "\/logos/android-chrome-144x144.png",
"sizes": "144x144",
"type": "image\/png",
"density": "3.0"
},
{
"src": "\/logos/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image\/png",
"density": "4.0"
}
]
}

View File

@ -141,7 +141,6 @@ function cleanUp() {
let filePath = path.join(__dirname, name);
return fsPromise.unlink(filePath);
} catch(e) {
console.log("err was catch here");
console.log(e);
}
})
@ -150,4 +149,4 @@ function cleanUp() {
exports.updateCss = createDeviconMinCSS;
exports.clean = cleanUp;
exports.clean = cleanUp;

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><style type="text/css">.st0{fill:#1F0740;}.st1{fill:#D490C5;}</style><rect x="6.5" y="6.5" class="st0" width="115" height="115"/><path class="st1" d="M0,0v128h128V0H0z M121.5,121.5H6.5V6.5h115V121.5z"/><path class="st1" d="M103.5,59.2c0,0-0.6-14.6-16.5-14.6c-16,0-17.3,22-17.3,22v4.7c0,0,2.8,18.3,16.3,18.3 c13.5,0,14.8-2.6,14.8-2.6v-8.1c0,0-19.3,9.2-21.2-10h24V59.2z M94.5,61.6H79.5c0,0,0-8.3,7.5-9.2C95.2,52.4,94.5,61.6,94.5,61.6z "/><path class="st1" d="M50.5,29.9H38.4v3.8l-16,54.9h9.4l4.4-16.1H53l4.5,16.1h10.3L50.5,29.9z M38.2,63.1l6.4-24.5L51,63.1H38.2z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><rect x="6.5" y="6.5" fill="#1F0740" width="115" height="115"/><path fill="#D490C5" d="M0,0v128h128V0H0z M121.5,121.5H6.5V6.5h115V121.5z"/><path fill="#D490C5" d="M103.5,59.2c0,0-0.6-14.6-16.5-14.6c-16,0-17.3,22-17.3,22v4.7c0,0,2.8,18.3,16.3,18.3 c13.5,0,14.8-2.6,14.8-2.6v-8.1c0,0-19.3,9.2-21.2-10h24V59.2z M94.5,61.6H79.5c0,0,0-8.3,7.5-9.2C95.2,52.4,94.5,61.6,94.5,61.6z "/><path fill="#D490C5" d="M50.5,29.9H38.4v3.8l-16,54.9h9.4l4.4-16.1H53l4.5,16.1h10.3L50.5,29.9z M38.2,63.1l6.4-24.5L51,63.1H38.2z"/></svg>

Before

Width:  |  Height:  |  Size: 637 B

After

Width:  |  Height:  |  Size: 580 B

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><style type="text/css">.st0{fill:#1F0740;}</style><path class="st0" d="M87,52.4c-7.5,0.9-7.5,9.2-7.5,9.2h14.9C94.5,61.6,95.2,52.4,87,52.4z"/><path class="st0" d="M 38.2,63.1 51,63.1 44.6,38.7 z"/><path class="st0" d="M0,0v128h128V0H0z M57.5,88.6L53,72.5H36.2l-4.4,16.1h-9.4l16-54.9v-3.8h12.2l17.3,58.7H57.5z M103.5,69h-24 c1.9,19.2,21.2,10,21.2,10V87c0,0-1.3,2.6-14.8,2.6c-13.5,0-16.3-18.3-16.3-18.3v-4.7c0,0,1.3-22,17.3-22 c16,0,16.5,14.6,16.5,14.6V69z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#1F0740" d="M87,52.4c-7.5,0.9-7.5,9.2-7.5,9.2h14.9C94.5,61.6,95.2,52.4,87,52.4z"/><path fill="#1F0740" d="M 38.2,63.1 51,63.1 44.6,38.7 z"/><path fill="#1F0740" d="M0,0v128h128V0H0z M57.5,88.6L53,72.5H36.2l-4.4,16.1h-9.4l16-54.9v-3.8h12.2l17.3,58.7H57.5z M103.5,69h-24 c1.9,19.2,21.2,10,21.2,10V87c0,0-1.3,2.6-14.8,2.6c-13.5,0-16.3-18.3-16.3-18.3v-4.7c0,0,1.3-22,17.3-22 c16,0,16.5,14.6,16.5,14.6V69z"/></svg>

Before

Width:  |  Height:  |  Size: 532 B

After

Width:  |  Height:  |  Size: 491 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1 +1 @@
<svg id="Behance" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#0071e0;}</style></defs><title>Artboard 13</title><g id="orignal-wordmark"><path id="path12" class="cls-1" d="M12.7,52.5a11.13,11.13,0,0,1,2.93.33,6.35,6.35,0,0,1,2.28.89,3.76,3.76,0,0,1,1.46,1.71,6.46,6.46,0,0,1,.49,2.6A4.54,4.54,0,0,1,19,60.87a5.88,5.88,0,0,1-2.28,1.87,5.44,5.44,0,0,1,3.09,2.11,6.4,6.4,0,0,1,1.06,3.58,6.48,6.48,0,0,1-.65,2.93,5.41,5.41,0,0,1-1.79,2,8.42,8.42,0,0,1-2.6,1.14,12.09,12.09,0,0,1-2.93.41H2.06V52.5Zm-.65,9.1A3.7,3.7,0,0,0,14.25,61a2.37,2.37,0,0,0,.81-2,3.09,3.09,0,0,0-.24-1.3,2.31,2.31,0,0,0-.73-.81A4.08,4.08,0,0,0,13,56.4a6.57,6.57,0,0,0-1.3-.08H7V61.6Zm.24,9.59A7.16,7.16,0,0,0,13.68,71a2.85,2.85,0,0,0,1.14-.49,2.9,2.9,0,0,0,.81-.89A3.88,3.88,0,0,0,16,68.19a3.13,3.13,0,0,0-1-2.52,4.29,4.29,0,0,0-2.6-.73H7v6.26Z"/><path id="path14" class="cls-1" d="M28,71.11a4,4,0,0,0,2.93,1,4.44,4.44,0,0,0,2.36-.65A3.25,3.25,0,0,0,34.48,70h4a7.93,7.93,0,0,1-2.93,4.23,8.68,8.68,0,0,1-4.71,1.3,9.56,9.56,0,0,1-3.49-.65,6.49,6.49,0,0,1-2.6-1.79,6.45,6.45,0,0,1-1.63-2.68,9.56,9.56,0,0,1-.57-3.49,9.41,9.41,0,0,1,.57-3.41,8.76,8.76,0,0,1,1.71-2.76,8.25,8.25,0,0,1,2.6-1.79,9.12,9.12,0,0,1,3.41-.65,7.58,7.58,0,0,1,3.66.81A6.6,6.6,0,0,1,37,61.28a9.85,9.85,0,0,1,1.46,3.09,17.05,17.05,0,0,1,.16,3.58H26.84A4.67,4.67,0,0,0,28,71.11Zm5.12-8.53a3.52,3.52,0,0,0-2.52-.89,3.87,3.87,0,0,0-1.79.41,4.27,4.27,0,0,0-1.14.89,2.17,2.17,0,0,0-.57,1.14,5.59,5.59,0,0,0-.16,1.06h7.31A4.31,4.31,0,0,0,33.1,62.58Z"/><path id="path16" class="cls-1" d="M45,52.5V61H45a4.78,4.78,0,0,1,2.19-2,6.15,6.15,0,0,1,2.6-.65,7.31,7.31,0,0,1,2.93.49,4.41,4.41,0,0,1,1.79,1.38,5.54,5.54,0,0,1,.89,2.11A14,14,0,0,1,55.7,65V75H51.23V65.83a5.69,5.69,0,0,0-.65-3,2.38,2.38,0,0,0-2.19-1,3.12,3.12,0,0,0-2.6,1.06A6,6,0,0,0,45,66.48V75H40.5V52.5Z"/><path id="path18" class="cls-1" d="M58.95,61.11a6,6,0,0,1,1.79-1.71,7.94,7.94,0,0,1,2.44-.89,15,15,0,0,1,2.68-.24c.81,0,1.63.08,2.52.16a6.74,6.74,0,0,1,2.28.65,4.75,4.75,0,0,1,1.71,1.38A4.05,4.05,0,0,1,73,62.82v8.53a17.16,17.16,0,0,0,.16,2.11A3.41,3.41,0,0,0,73.74,75H69.19a2,2,0,0,1-.33-.73,2.76,2.76,0,0,1-.08-.81A6.23,6.23,0,0,1,66.26,75a9.09,9.09,0,0,1-2.93.41,6.53,6.53,0,0,1-2.19-.33,5.28,5.28,0,0,1-1.79-.89,4.68,4.68,0,0,1-1.22-1.54,5.87,5.87,0,0,1-.41-2.19,4.72,4.72,0,0,1,.49-2.28,5.32,5.32,0,0,1,1.22-1.46,6,6,0,0,1,1.79-.81,15,15,0,0,1,2-.41l2-.24q1-.12,1.71-.24a4.25,4.25,0,0,0,1.22-.57,1.16,1.16,0,0,0,.41-1.06,2.15,2.15,0,0,0-.24-1.14,2.47,2.47,0,0,0-.65-.65,2.91,2.91,0,0,0-.89-.33,5,5,0,0,0-1.14-.08,3,3,0,0,0-2,.57,2.73,2.73,0,0,0-.89,1.87H58.22A4.85,4.85,0,0,1,58.95,61.11Zm8.86,6.34c-.24.08-.57.16-.89.24s-.65.08-1.06.16-.73.08-1.06.16l-1,.24a1.91,1.91,0,0,0-.81.41,2.19,2.19,0,0,0-.57.65,1.58,1.58,0,0,0-.24,1.06,1.73,1.73,0,0,0,.24,1A2.19,2.19,0,0,0,63,72a2.91,2.91,0,0,0,.89.33,4.29,4.29,0,0,0,1.06.08A4.48,4.48,0,0,0,67,72,3.27,3.27,0,0,0,68,70.95a2.42,2.42,0,0,0,.41-1.22,4.66,4.66,0,0,0,.08-1V67A3.29,3.29,0,0,1,67.81,67.45Z"/><path id="path20" class="cls-1" d="M79.75,58.68V61h.08a4.78,4.78,0,0,1,2.19-2,6.86,6.86,0,0,1,2.76-.65,7.31,7.31,0,0,1,2.93.49,3.93,3.93,0,0,1,1.79,1.38,7.26,7.26,0,0,1,1,2.11A14,14,0,0,1,90.72,65V75H86.25V65.83a5.69,5.69,0,0,0-.65-3,2.48,2.48,0,0,0-2.28-1.06A3.25,3.25,0,0,0,80.65,63a6,6,0,0,0-.81,3.58v8.53H75.36V58.68Z"/><path id="path22" class="cls-1" d="M100.72,61.6a3.09,3.09,0,0,0-1.79.49,3.76,3.76,0,0,0-1.22,1.3,5.33,5.33,0,0,0-.65,1.71A7.28,7.28,0,0,0,96.9,67a13.29,13.29,0,0,0,.16,1.79,4.87,4.87,0,0,0,.65,1.63,4.08,4.08,0,0,0,1.14,1.22,3.09,3.09,0,0,0,1.79.49,3.66,3.66,0,0,0,2.52-.89,3.77,3.77,0,0,0,1.06-2.44h4.31a7.5,7.5,0,0,1-2.52,5,8.16,8.16,0,0,1-5.36,1.71,8.7,8.7,0,0,1-3.33-.65,7.25,7.25,0,0,1-2.6-1.71A8,8,0,0,1,93,70.46a9,9,0,0,1-.57-3.33A9.56,9.56,0,0,1,93,63.63a9,9,0,0,1,1.63-2.84,8.49,8.49,0,0,1,2.6-1.87,9.56,9.56,0,0,1,3.49-.65,10.32,10.32,0,0,1,2.76.41,7.07,7.07,0,0,1,2.36,1.14,5,5,0,0,1,1.71,2,6.9,6.9,0,0,1,.73,2.76h-4.39A2.84,2.84,0,0,0,100.72,61.6Z"/><rect id="rect24" class="cls-1" x="25.95" y="54.04" width="9.1" height="2.19"/><path id="path26" class="cls-1" d="M115.27,71.11a4.1,4.1,0,0,0,2.93,1,4.44,4.44,0,0,0,2.36-.65A3.25,3.25,0,0,0,121.77,70h3.9a7.93,7.93,0,0,1-2.93,4.23A8.68,8.68,0,0,1,118,75.5a9.56,9.56,0,0,1-3.49-.65,7.48,7.48,0,0,1-4.23-4.47,9.56,9.56,0,0,1-.57-3.49,9.41,9.41,0,0,1,.57-3.41A8.76,8.76,0,0,1,112,60.71a8.25,8.25,0,0,1,2.6-1.79,9.45,9.45,0,0,1,3.41-.65,7.05,7.05,0,0,1,3.58.81,6.6,6.6,0,0,1,2.52,2.19,9.85,9.85,0,0,1,1.46,3.09,10.79,10.79,0,0,1,.33,3.66H114.13a4.61,4.61,0,0,0,1.14,3.09Zm5.2-8.53a3.52,3.52,0,0,0-2.52-.89,3.87,3.87,0,0,0-1.79.41A3.28,3.28,0,0,0,115,63a3,3,0,0,0-.57,1.14,5.59,5.59,0,0,0-.16,1.06h7.31a5.55,5.55,0,0,0-1.14-2.6Z"/></g></svg>
<svg id="Behance" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="orignal-wordmark"><path id="path12" fill="#0071e0" d="M12.7,52.5a11.13,11.13,0,0,1,2.93.33,6.35,6.35,0,0,1,2.28.89,3.76,3.76,0,0,1,1.46,1.71,6.46,6.46,0,0,1,.49,2.6A4.54,4.54,0,0,1,19,60.87a5.88,5.88,0,0,1-2.28,1.87,5.44,5.44,0,0,1,3.09,2.11,6.4,6.4,0,0,1,1.06,3.58,6.48,6.48,0,0,1-.65,2.93,5.41,5.41,0,0,1-1.79,2,8.42,8.42,0,0,1-2.6,1.14,12.09,12.09,0,0,1-2.93.41H2.06V52.5Zm-.65,9.1A3.7,3.7,0,0,0,14.25,61a2.37,2.37,0,0,0,.81-2,3.09,3.09,0,0,0-.24-1.3,2.31,2.31,0,0,0-.73-.81A4.08,4.08,0,0,0,13,56.4a6.57,6.57,0,0,0-1.3-.08H7V61.6Zm.24,9.59A7.16,7.16,0,0,0,13.68,71a2.85,2.85,0,0,0,1.14-.49,2.9,2.9,0,0,0,.81-.89A3.88,3.88,0,0,0,16,68.19a3.13,3.13,0,0,0-1-2.52,4.29,4.29,0,0,0-2.6-.73H7v6.26Z"/><path id="path14" fill="#0071e0" d="M28,71.11a4,4,0,0,0,2.93,1,4.44,4.44,0,0,0,2.36-.65A3.25,3.25,0,0,0,34.48,70h4a7.93,7.93,0,0,1-2.93,4.23,8.68,8.68,0,0,1-4.71,1.3,9.56,9.56,0,0,1-3.49-.65,6.49,6.49,0,0,1-2.6-1.79,6.45,6.45,0,0,1-1.63-2.68,9.56,9.56,0,0,1-.57-3.49,9.41,9.41,0,0,1,.57-3.41,8.76,8.76,0,0,1,1.71-2.76,8.25,8.25,0,0,1,2.6-1.79,9.12,9.12,0,0,1,3.41-.65,7.58,7.58,0,0,1,3.66.81A6.6,6.6,0,0,1,37,61.28a9.85,9.85,0,0,1,1.46,3.09,17.05,17.05,0,0,1,.16,3.58H26.84A4.67,4.67,0,0,0,28,71.11Zm5.12-8.53a3.52,3.52,0,0,0-2.52-.89,3.87,3.87,0,0,0-1.79.41,4.27,4.27,0,0,0-1.14.89,2.17,2.17,0,0,0-.57,1.14,5.59,5.59,0,0,0-.16,1.06h7.31A4.31,4.31,0,0,0,33.1,62.58Z"/><path id="path16" fill="#0071e0" d="M45,52.5V61H45a4.78,4.78,0,0,1,2.19-2,6.15,6.15,0,0,1,2.6-.65,7.31,7.31,0,0,1,2.93.49,4.41,4.41,0,0,1,1.79,1.38,5.54,5.54,0,0,1,.89,2.11A14,14,0,0,1,55.7,65V75H51.23V65.83a5.69,5.69,0,0,0-.65-3,2.38,2.38,0,0,0-2.19-1,3.12,3.12,0,0,0-2.6,1.06A6,6,0,0,0,45,66.48V75H40.5V52.5Z"/><path id="path18" fill="#0071e0" d="M58.95,61.11a6,6,0,0,1,1.79-1.71,7.94,7.94,0,0,1,2.44-.89,15,15,0,0,1,2.68-.24c.81,0,1.63.08,2.52.16a6.74,6.74,0,0,1,2.28.65,4.75,4.75,0,0,1,1.71,1.38A4.05,4.05,0,0,1,73,62.82v8.53a17.16,17.16,0,0,0,.16,2.11A3.41,3.41,0,0,0,73.74,75H69.19a2,2,0,0,1-.33-.73,2.76,2.76,0,0,1-.08-.81A6.23,6.23,0,0,1,66.26,75a9.09,9.09,0,0,1-2.93.41,6.53,6.53,0,0,1-2.19-.33,5.28,5.28,0,0,1-1.79-.89,4.68,4.68,0,0,1-1.22-1.54,5.87,5.87,0,0,1-.41-2.19,4.72,4.72,0,0,1,.49-2.28,5.32,5.32,0,0,1,1.22-1.46,6,6,0,0,1,1.79-.81,15,15,0,0,1,2-.41l2-.24q1-.12,1.71-.24a4.25,4.25,0,0,0,1.22-.57,1.16,1.16,0,0,0,.41-1.06,2.15,2.15,0,0,0-.24-1.14,2.47,2.47,0,0,0-.65-.65,2.91,2.91,0,0,0-.89-.33,5,5,0,0,0-1.14-.08,3,3,0,0,0-2,.57,2.73,2.73,0,0,0-.89,1.87H58.22A4.85,4.85,0,0,1,58.95,61.11Zm8.86,6.34c-.24.08-.57.16-.89.24s-.65.08-1.06.16-.73.08-1.06.16l-1,.24a1.91,1.91,0,0,0-.81.41,2.19,2.19,0,0,0-.57.65,1.58,1.58,0,0,0-.24,1.06,1.73,1.73,0,0,0,.24,1A2.19,2.19,0,0,0,63,72a2.91,2.91,0,0,0,.89.33,4.29,4.29,0,0,0,1.06.08A4.48,4.48,0,0,0,67,72,3.27,3.27,0,0,0,68,70.95a2.42,2.42,0,0,0,.41-1.22,4.66,4.66,0,0,0,.08-1V67A3.29,3.29,0,0,1,67.81,67.45Z"/><path id="path20" fill="#0071e0" d="M79.75,58.68V61h.08a4.78,4.78,0,0,1,2.19-2,6.86,6.86,0,0,1,2.76-.65,7.31,7.31,0,0,1,2.93.49,3.93,3.93,0,0,1,1.79,1.38,7.26,7.26,0,0,1,1,2.11A14,14,0,0,1,90.72,65V75H86.25V65.83a5.69,5.69,0,0,0-.65-3,2.48,2.48,0,0,0-2.28-1.06A3.25,3.25,0,0,0,80.65,63a6,6,0,0,0-.81,3.58v8.53H75.36V58.68Z"/><path id="path22" fill="#0071e0" d="M100.72,61.6a3.09,3.09,0,0,0-1.79.49,3.76,3.76,0,0,0-1.22,1.3,5.33,5.33,0,0,0-.65,1.71A7.28,7.28,0,0,0,96.9,67a13.29,13.29,0,0,0,.16,1.79,4.87,4.87,0,0,0,.65,1.63,4.08,4.08,0,0,0,1.14,1.22,3.09,3.09,0,0,0,1.79.49,3.66,3.66,0,0,0,2.52-.89,3.77,3.77,0,0,0,1.06-2.44h4.31a7.5,7.5,0,0,1-2.52,5,8.16,8.16,0,0,1-5.36,1.71,8.7,8.7,0,0,1-3.33-.65,7.25,7.25,0,0,1-2.6-1.71A8,8,0,0,1,93,70.46a9,9,0,0,1-.57-3.33A9.56,9.56,0,0,1,93,63.63a9,9,0,0,1,1.63-2.84,8.49,8.49,0,0,1,2.6-1.87,9.56,9.56,0,0,1,3.49-.65,10.32,10.32,0,0,1,2.76.41,7.07,7.07,0,0,1,2.36,1.14,5,5,0,0,1,1.71,2,6.9,6.9,0,0,1,.73,2.76h-4.39A2.84,2.84,0,0,0,100.72,61.6Z"/><rect id="rect24" fill="#0071e0" x="25.95" y="54.04" width="9.1" height="2.19"/><path id="path26" fill="#0071e0" d="M115.27,71.11a4.1,4.1,0,0,0,2.93,1,4.44,4.44,0,0,0,2.36-.65A3.25,3.25,0,0,0,121.77,70h3.9a7.93,7.93,0,0,1-2.93,4.23A8.68,8.68,0,0,1,118,75.5a9.56,9.56,0,0,1-3.49-.65,7.48,7.48,0,0,1-4.23-4.47,9.56,9.56,0,0,1-.57-3.49,9.41,9.41,0,0,1,.57-3.41A8.76,8.76,0,0,1,112,60.71a8.25,8.25,0,0,1,2.6-1.79,9.45,9.45,0,0,1,3.41-.65,7.05,7.05,0,0,1,3.58.81,6.6,6.6,0,0,1,2.52,2.19,9.85,9.85,0,0,1,1.46,3.09,10.79,10.79,0,0,1,.33,3.66H114.13a4.61,4.61,0,0,0,1.14,3.09Zm5.2-8.53a3.52,3.52,0,0,0-2.52-.89,3.87,3.87,0,0,0-1.79.41A3.28,3.28,0,0,0,115,63a3,3,0,0,0-.57,1.14,5.59,5.59,0,0,0-.16,1.06h7.31a5.55,5.55,0,0,0-1.14-2.6Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -1 +1 @@
<svg id="Behance" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#fff;}</style><linearGradient id="linear-gradient" x1="64" y1="2.16" x2="64" y2="125.84" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#005cff"/><stop offset="1" stop-color="#0047ad"/></linearGradient></defs><title>Artboard 12</title><g id="original"><rect class="cls-1" x="2.16" y="2.16" width="123.68" height="123.67" rx="14.59" ry="14.59"/><path class="cls-2" d="M52.63,60.28s10.5-.78,10.5-13.09S54.54,28.87,43.66,28.87H7.86v68.8h35.8s21.85.69,21.85-20.31C65.51,77.36,66.47,60.28,52.63,60.28Zm-29-19.18h20s4.87,0,4.87,7.16-2.86,8.2-6.11,8.2H23.64Zm19.1,44.34H23.64V67.06h20s7.25-.1,7.25,9.45C50.91,84.46,45.61,85.36,42.74,85.44Z"/><path class="cls-2" d="M94.66,46.38c-26.46,0-26.43,26.43-26.43,26.43s-1.82,26.3,26.43,26.3c0,0,23.54,1.34,23.54-18.29H106.1s.4,7.4-11,7.4c0,0-12.11.81-12.11-12h35.65S122.51,46.38,94.66,46.38Zm10.76,20.68H82.82s1.48-10.6,12.11-10.6S105.42,67.06,105.42,67.06Z"/><rect class="cls-2" x="79.86" y="32.93" width="28.38" height="8.47"/></g></svg>
<svg id="Behance" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128"><defs><linearGradient id="behance-gradient" x1="64" y1="2.16" x2="64" y2="125.84" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#005cff"/><stop offset="1" stop-color="#0047ad"/></linearGradient></defs><g id="original"><rect fill="url(#behance-gradient)" x="2.16" y="2.16" width="123.68" height="123.67" rx="14.59" ry="14.59"/><path fill="#fff" d="M52.63,60.28s10.5-.78,10.5-13.09S54.54,28.87,43.66,28.87H7.86v68.8h35.8s21.85.69,21.85-20.31C65.51,77.36,66.47,60.28,52.63,60.28Zm-29-19.18h20s4.87,0,4.87,7.16-2.86,8.2-6.11,8.2H23.64Zm19.1,44.34H23.64V67.06h20s7.25-.1,7.25,9.45C50.91,84.46,45.61,85.36,42.74,85.44Z"/><path fill="#fff" d="M94.66,46.38c-26.46,0-26.43,26.43-26.43,26.43s-1.82,26.3,26.43,26.3c0,0,23.54,1.34,23.54-18.29H106.1s.4,7.4-11,7.4c0,0-12.11.81-12.11-12h35.65S122.51,46.38,94.66,46.38Zm10.76,20.68H82.82s1.48-10.6,12.11-10.6S105.42,67.06,105.42,67.06Z"/><rect fill="#fff" x="79.86" y="32.93" width="28.38" height="8.47"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1 +1 @@
<svg id="Behance" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><title>Artboard 15</title><g id="plain-wordmark"><path id="path12" d="M12.7,52.5a11.13,11.13,0,0,1,2.93.33,6.35,6.35,0,0,1,2.28.89,3.76,3.76,0,0,1,1.46,1.71,6.46,6.46,0,0,1,.49,2.6A4.54,4.54,0,0,1,19,60.87a5.88,5.88,0,0,1-2.28,1.87,5.44,5.44,0,0,1,3.09,2.11,6.4,6.4,0,0,1,1.06,3.58,6.48,6.48,0,0,1-.65,2.93,5.41,5.41,0,0,1-1.79,2,8.42,8.42,0,0,1-2.6,1.14,12.09,12.09,0,0,1-2.93.41H2.06V52.5Zm-.65,9.1A3.7,3.7,0,0,0,14.25,61a2.37,2.37,0,0,0,.81-2,3.09,3.09,0,0,0-.24-1.3,2.31,2.31,0,0,0-.73-.81A4.08,4.08,0,0,0,13,56.4a6.57,6.57,0,0,0-1.3-.08H7V61.6Zm.24,9.59A7.16,7.16,0,0,0,13.68,71a2.85,2.85,0,0,0,1.14-.49,2.9,2.9,0,0,0,.81-.89A3.88,3.88,0,0,0,16,68.19a3.13,3.13,0,0,0-1-2.52,4.29,4.29,0,0,0-2.6-.73H7v6.26Z"/><path id="path14" d="M28,71.11a4,4,0,0,0,2.93,1,4.44,4.44,0,0,0,2.36-.65A3.25,3.25,0,0,0,34.48,70h4a7.93,7.93,0,0,1-2.93,4.23,8.68,8.68,0,0,1-4.71,1.3,9.56,9.56,0,0,1-3.49-.65,6.49,6.49,0,0,1-2.6-1.79,6.45,6.45,0,0,1-1.63-2.68,9.56,9.56,0,0,1-.57-3.49,9.41,9.41,0,0,1,.57-3.41,8.76,8.76,0,0,1,1.71-2.76,8.25,8.25,0,0,1,2.6-1.79,9.12,9.12,0,0,1,3.41-.65,7.58,7.58,0,0,1,3.66.81A6.6,6.6,0,0,1,37,61.28a9.85,9.85,0,0,1,1.46,3.09,17.05,17.05,0,0,1,.16,3.58H26.84A4.67,4.67,0,0,0,28,71.11Zm5.12-8.53a3.52,3.52,0,0,0-2.52-.89,3.87,3.87,0,0,0-1.79.41,4.27,4.27,0,0,0-1.14.89,2.17,2.17,0,0,0-.57,1.14,5.59,5.59,0,0,0-.16,1.06h7.31A4.31,4.31,0,0,0,33.1,62.58Z"/><path id="path16" d="M45,52.5V61H45a4.78,4.78,0,0,1,2.19-2,6.15,6.15,0,0,1,2.6-.65,7.31,7.31,0,0,1,2.93.49,4.41,4.41,0,0,1,1.79,1.38,5.54,5.54,0,0,1,.89,2.11A14,14,0,0,1,55.7,65V75H51.23V65.83a5.69,5.69,0,0,0-.65-3,2.38,2.38,0,0,0-2.19-1,3.12,3.12,0,0,0-2.6,1.06A6,6,0,0,0,45,66.48V75H40.5V52.5Z"/><path id="path18" d="M58.95,61.11a6,6,0,0,1,1.79-1.71,7.94,7.94,0,0,1,2.44-.89,15,15,0,0,1,2.68-.24c.81,0,1.63.08,2.52.16a6.74,6.74,0,0,1,2.28.65,4.75,4.75,0,0,1,1.71,1.38A4.05,4.05,0,0,1,73,62.82v8.53a17.16,17.16,0,0,0,.16,2.11A3.41,3.41,0,0,0,73.74,75H69.19a2,2,0,0,1-.33-.73,2.76,2.76,0,0,1-.08-.81A6.23,6.23,0,0,1,66.26,75a9.09,9.09,0,0,1-2.93.41,6.53,6.53,0,0,1-2.19-.33,5.28,5.28,0,0,1-1.79-.89,4.68,4.68,0,0,1-1.22-1.54,5.87,5.87,0,0,1-.41-2.19,4.72,4.72,0,0,1,.49-2.28,5.32,5.32,0,0,1,1.22-1.46,6,6,0,0,1,1.79-.81,15,15,0,0,1,2-.41l2-.24q1-.12,1.71-.24a4.25,4.25,0,0,0,1.22-.57,1.16,1.16,0,0,0,.41-1.06,2.15,2.15,0,0,0-.24-1.14,2.47,2.47,0,0,0-.65-.65,2.91,2.91,0,0,0-.89-.33,5,5,0,0,0-1.14-.08,3,3,0,0,0-2,.57,2.73,2.73,0,0,0-.89,1.87H58.22A4.85,4.85,0,0,1,58.95,61.11Zm8.86,6.34c-.24.08-.57.16-.89.24s-.65.08-1.06.16-.73.08-1.06.16l-1,.24a1.91,1.91,0,0,0-.81.41,2.19,2.19,0,0,0-.57.65,1.58,1.58,0,0,0-.24,1.06,1.73,1.73,0,0,0,.24,1A2.19,2.19,0,0,0,63,72a2.91,2.91,0,0,0,.89.33,4.29,4.29,0,0,0,1.06.08A4.48,4.48,0,0,0,67,72,3.27,3.27,0,0,0,68,70.95a2.42,2.42,0,0,0,.41-1.22,4.66,4.66,0,0,0,.08-1V67A3.29,3.29,0,0,1,67.81,67.45Z"/><path id="path20" d="M79.75,58.68V61h.08a4.78,4.78,0,0,1,2.19-2,6.86,6.86,0,0,1,2.76-.65,7.31,7.31,0,0,1,2.93.49,3.93,3.93,0,0,1,1.79,1.38,7.26,7.26,0,0,1,1,2.11A14,14,0,0,1,90.72,65V75H86.25V65.83a5.69,5.69,0,0,0-.65-3,2.48,2.48,0,0,0-2.28-1.06A3.25,3.25,0,0,0,80.65,63a6,6,0,0,0-.81,3.58v8.53H75.36V58.68Z"/><path id="path22" d="M100.72,61.6a3.09,3.09,0,0,0-1.79.49,3.76,3.76,0,0,0-1.22,1.3,5.33,5.33,0,0,0-.65,1.71A7.28,7.28,0,0,0,96.9,67a13.29,13.29,0,0,0,.16,1.79,4.87,4.87,0,0,0,.65,1.63,4.08,4.08,0,0,0,1.14,1.22,3.09,3.09,0,0,0,1.79.49,3.66,3.66,0,0,0,2.52-.89,3.77,3.77,0,0,0,1.06-2.44h4.31a7.5,7.5,0,0,1-2.52,5,8.16,8.16,0,0,1-5.36,1.71,8.7,8.7,0,0,1-3.33-.65,7.25,7.25,0,0,1-2.6-1.71A8,8,0,0,1,93,70.46a9,9,0,0,1-.57-3.33A9.56,9.56,0,0,1,93,63.63a9,9,0,0,1,1.63-2.84,8.49,8.49,0,0,1,2.6-1.87,9.56,9.56,0,0,1,3.49-.65,10.32,10.32,0,0,1,2.76.41,7.07,7.07,0,0,1,2.36,1.14,5,5,0,0,1,1.71,2,6.9,6.9,0,0,1,.73,2.76h-4.39A2.84,2.84,0,0,0,100.72,61.6Z"/><rect id="rect24" x="25.95" y="54.04" width="9.1" height="2.19"/><path id="path26" d="M115.27,71.11a4.1,4.1,0,0,0,2.93,1,4.44,4.44,0,0,0,2.36-.65A3.25,3.25,0,0,0,121.77,70h3.9a7.93,7.93,0,0,1-2.93,4.23A8.68,8.68,0,0,1,118,75.5a9.56,9.56,0,0,1-3.49-.65,7.48,7.48,0,0,1-4.23-4.47,9.56,9.56,0,0,1-.57-3.49,9.41,9.41,0,0,1,.57-3.41A8.76,8.76,0,0,1,112,60.71a8.25,8.25,0,0,1,2.6-1.79,9.45,9.45,0,0,1,3.41-.65,7.05,7.05,0,0,1,3.58.81,6.6,6.6,0,0,1,2.52,2.19,9.85,9.85,0,0,1,1.46,3.09,10.79,10.79,0,0,1,.33,3.66H114.13a4.61,4.61,0,0,0,1.14,3.09Zm5.2-8.53a3.52,3.52,0,0,0-2.52-.89,3.87,3.87,0,0,0-1.79.41A3.28,3.28,0,0,0,115,63a3,3,0,0,0-.57,1.14,5.59,5.59,0,0,0-.16,1.06h7.31a5.55,5.55,0,0,0-1.14-2.6Z"/></g></svg>
<svg id="Behance" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain-wordmark"><path id="path12" d="M12.7,52.5a11.13,11.13,0,0,1,2.93.33,6.35,6.35,0,0,1,2.28.89,3.76,3.76,0,0,1,1.46,1.71,6.46,6.46,0,0,1,.49,2.6A4.54,4.54,0,0,1,19,60.87a5.88,5.88,0,0,1-2.28,1.87,5.44,5.44,0,0,1,3.09,2.11,6.4,6.4,0,0,1,1.06,3.58,6.48,6.48,0,0,1-.65,2.93,5.41,5.41,0,0,1-1.79,2,8.42,8.42,0,0,1-2.6,1.14,12.09,12.09,0,0,1-2.93.41H2.06V52.5Zm-.65,9.1A3.7,3.7,0,0,0,14.25,61a2.37,2.37,0,0,0,.81-2,3.09,3.09,0,0,0-.24-1.3,2.31,2.31,0,0,0-.73-.81A4.08,4.08,0,0,0,13,56.4a6.57,6.57,0,0,0-1.3-.08H7V61.6Zm.24,9.59A7.16,7.16,0,0,0,13.68,71a2.85,2.85,0,0,0,1.14-.49,2.9,2.9,0,0,0,.81-.89A3.88,3.88,0,0,0,16,68.19a3.13,3.13,0,0,0-1-2.52,4.29,4.29,0,0,0-2.6-.73H7v6.26Z"/><path id="path14" d="M28,71.11a4,4,0,0,0,2.93,1,4.44,4.44,0,0,0,2.36-.65A3.25,3.25,0,0,0,34.48,70h4a7.93,7.93,0,0,1-2.93,4.23,8.68,8.68,0,0,1-4.71,1.3,9.56,9.56,0,0,1-3.49-.65,6.49,6.49,0,0,1-2.6-1.79,6.45,6.45,0,0,1-1.63-2.68,9.56,9.56,0,0,1-.57-3.49,9.41,9.41,0,0,1,.57-3.41,8.76,8.76,0,0,1,1.71-2.76,8.25,8.25,0,0,1,2.6-1.79,9.12,9.12,0,0,1,3.41-.65,7.58,7.58,0,0,1,3.66.81A6.6,6.6,0,0,1,37,61.28a9.85,9.85,0,0,1,1.46,3.09,17.05,17.05,0,0,1,.16,3.58H26.84A4.67,4.67,0,0,0,28,71.11Zm5.12-8.53a3.52,3.52,0,0,0-2.52-.89,3.87,3.87,0,0,0-1.79.41,4.27,4.27,0,0,0-1.14.89,2.17,2.17,0,0,0-.57,1.14,5.59,5.59,0,0,0-.16,1.06h7.31A4.31,4.31,0,0,0,33.1,62.58Z"/><path id="path16" d="M45,52.5V61H45a4.78,4.78,0,0,1,2.19-2,6.15,6.15,0,0,1,2.6-.65,7.31,7.31,0,0,1,2.93.49,4.41,4.41,0,0,1,1.79,1.38,5.54,5.54,0,0,1,.89,2.11A14,14,0,0,1,55.7,65V75H51.23V65.83a5.69,5.69,0,0,0-.65-3,2.38,2.38,0,0,0-2.19-1,3.12,3.12,0,0,0-2.6,1.06A6,6,0,0,0,45,66.48V75H40.5V52.5Z"/><path id="path18" d="M58.95,61.11a6,6,0,0,1,1.79-1.71,7.94,7.94,0,0,1,2.44-.89,15,15,0,0,1,2.68-.24c.81,0,1.63.08,2.52.16a6.74,6.74,0,0,1,2.28.65,4.75,4.75,0,0,1,1.71,1.38A4.05,4.05,0,0,1,73,62.82v8.53a17.16,17.16,0,0,0,.16,2.11A3.41,3.41,0,0,0,73.74,75H69.19a2,2,0,0,1-.33-.73,2.76,2.76,0,0,1-.08-.81A6.23,6.23,0,0,1,66.26,75a9.09,9.09,0,0,1-2.93.41,6.53,6.53,0,0,1-2.19-.33,5.28,5.28,0,0,1-1.79-.89,4.68,4.68,0,0,1-1.22-1.54,5.87,5.87,0,0,1-.41-2.19,4.72,4.72,0,0,1,.49-2.28,5.32,5.32,0,0,1,1.22-1.46,6,6,0,0,1,1.79-.81,15,15,0,0,1,2-.41l2-.24q1-.12,1.71-.24a4.25,4.25,0,0,0,1.22-.57,1.16,1.16,0,0,0,.41-1.06,2.15,2.15,0,0,0-.24-1.14,2.47,2.47,0,0,0-.65-.65,2.91,2.91,0,0,0-.89-.33,5,5,0,0,0-1.14-.08,3,3,0,0,0-2,.57,2.73,2.73,0,0,0-.89,1.87H58.22A4.85,4.85,0,0,1,58.95,61.11Zm8.86,6.34c-.24.08-.57.16-.89.24s-.65.08-1.06.16-.73.08-1.06.16l-1,.24a1.91,1.91,0,0,0-.81.41,2.19,2.19,0,0,0-.57.65,1.58,1.58,0,0,0-.24,1.06,1.73,1.73,0,0,0,.24,1A2.19,2.19,0,0,0,63,72a2.91,2.91,0,0,0,.89.33,4.29,4.29,0,0,0,1.06.08A4.48,4.48,0,0,0,67,72,3.27,3.27,0,0,0,68,70.95a2.42,2.42,0,0,0,.41-1.22,4.66,4.66,0,0,0,.08-1V67A3.29,3.29,0,0,1,67.81,67.45Z"/><path id="path20" d="M79.75,58.68V61h.08a4.78,4.78,0,0,1,2.19-2,6.86,6.86,0,0,1,2.76-.65,7.31,7.31,0,0,1,2.93.49,3.93,3.93,0,0,1,1.79,1.38,7.26,7.26,0,0,1,1,2.11A14,14,0,0,1,90.72,65V75H86.25V65.83a5.69,5.69,0,0,0-.65-3,2.48,2.48,0,0,0-2.28-1.06A3.25,3.25,0,0,0,80.65,63a6,6,0,0,0-.81,3.58v8.53H75.36V58.68Z"/><path id="path22" d="M100.72,61.6a3.09,3.09,0,0,0-1.79.49,3.76,3.76,0,0,0-1.22,1.3,5.33,5.33,0,0,0-.65,1.71A7.28,7.28,0,0,0,96.9,67a13.29,13.29,0,0,0,.16,1.79,4.87,4.87,0,0,0,.65,1.63,4.08,4.08,0,0,0,1.14,1.22,3.09,3.09,0,0,0,1.79.49,3.66,3.66,0,0,0,2.52-.89,3.77,3.77,0,0,0,1.06-2.44h4.31a7.5,7.5,0,0,1-2.52,5,8.16,8.16,0,0,1-5.36,1.71,8.7,8.7,0,0,1-3.33-.65,7.25,7.25,0,0,1-2.6-1.71A8,8,0,0,1,93,70.46a9,9,0,0,1-.57-3.33A9.56,9.56,0,0,1,93,63.63a9,9,0,0,1,1.63-2.84,8.49,8.49,0,0,1,2.6-1.87,9.56,9.56,0,0,1,3.49-.65,10.32,10.32,0,0,1,2.76.41,7.07,7.07,0,0,1,2.36,1.14,5,5,0,0,1,1.71,2,6.9,6.9,0,0,1,.73,2.76h-4.39A2.84,2.84,0,0,0,100.72,61.6Z"/><rect id="rect24" x="25.95" y="54.04" width="9.1" height="2.19"/><path id="path26" d="M115.27,71.11a4.1,4.1,0,0,0,2.93,1,4.44,4.44,0,0,0,2.36-.65A3.25,3.25,0,0,0,121.77,70h3.9a7.93,7.93,0,0,1-2.93,4.23A8.68,8.68,0,0,1,118,75.5a9.56,9.56,0,0,1-3.49-.65,7.48,7.48,0,0,1-4.23-4.47,9.56,9.56,0,0,1-.57-3.49,9.41,9.41,0,0,1,.57-3.41A8.76,8.76,0,0,1,112,60.71a8.25,8.25,0,0,1,2.6-1.79,9.45,9.45,0,0,1,3.41-.65,7.05,7.05,0,0,1,3.58.81,6.6,6.6,0,0,1,2.52,2.19,9.85,9.85,0,0,1,1.46,3.09,10.79,10.79,0,0,1,.33,3.66H114.13a4.61,4.61,0,0,0,1.14,3.09Zm5.2-8.53a3.52,3.52,0,0,0-2.52-.89,3.87,3.87,0,0,0-1.79.41A3.28,3.28,0,0,0,115,63a3,3,0,0,0-.57,1.14,5.59,5.59,0,0,0-.16,1.06h7.31a5.55,5.55,0,0,0-1.14-2.6Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -1 +1 @@
<svg id="Behance" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#1d1d1b;}</style></defs><title>Artboard 14</title><g id="plain"><path class="cls-1" d="M48.53,48.26c0-7.16-4.87-7.16-4.87-7.16h-20V56.45H42.42C45.66,56.45,48.53,55.41,48.53,48.26Z"/><path class="cls-1" d="M43.66,67.06h-20V85.44h19.1c2.87-.08,8.18-1,8.18-8.94C50.91,67,43.66,67.06,43.66,67.06Z"/><path class="cls-1" d="M94.93,56.45c-10.63,0-12.11,10.6-12.11,10.6h22.6S105.56,56.45,94.93,56.45Z"/><path class="cls-1" d="M111.25,2.16H16.75A14.59,14.59,0,0,0,2.16,16.75v94.49a14.59,14.59,0,0,0,14.59,14.59h94.49a14.59,14.59,0,0,0,14.59-14.59V16.75A14.59,14.59,0,0,0,111.25,2.16ZM79.86,32.92h28.38V41.4H79.86ZM65.51,77.36c0,21-21.85,20.31-21.85,20.31H7.86V28.87h35.8c10.88,0,19.47,6,19.47,18.32s-10.5,13.09-10.5,13.09C66.47,60.28,65.51,77.36,65.51,77.36Zm53.09-1.12H83c0,12.78,12.11,12,12.11,12,11.43,0,11-7.4,11-7.4H118.2c0,19.64-23.54,18.29-23.54,18.29-28.25,0-26.43-26.3-26.43-26.3s0-26.43,26.43-26.43C122.51,46.38,118.61,76.24,118.61,76.24Z"/></g></svg>
<svg id="Behance" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain"><path fill="#1d1d1b" d="M48.53,48.26c0-7.16-4.87-7.16-4.87-7.16h-20V56.45H42.42C45.66,56.45,48.53,55.41,48.53,48.26Z"/><path fill="#1d1d1b" d="M43.66,67.06h-20V85.44h19.1c2.87-.08,8.18-1,8.18-8.94C50.91,67,43.66,67.06,43.66,67.06Z"/><path fill="#1d1d1b" d="M94.93,56.45c-10.63,0-12.11,10.6-12.11,10.6h22.6S105.56,56.45,94.93,56.45Z"/><path fill="#1d1d1b" d="M111.25,2.16H16.75A14.59,14.59,0,0,0,2.16,16.75v94.49a14.59,14.59,0,0,0,14.59,14.59h94.49a14.59,14.59,0,0,0,14.59-14.59V16.75A14.59,14.59,0,0,0,111.25,2.16ZM79.86,32.92h28.38V41.4H79.86ZM65.51,77.36c0,21-21.85,20.31-21.85,20.31H7.86V28.87h35.8c10.88,0,19.47,6,19.47,18.32s-10.5,13.09-10.5,13.09C66.47,60.28,65.51,77.36,65.51,77.36Zm53.09-1.12H83c0,12.78,12.11,12,12.11,12,11.43,0,11-7.4,11-7.4H118.2c0,19.64-23.54,18.29-23.54,18.29-28.25,0-26.43-26.3-26.43-26.3s0-26.43,26.43-26.43C122.51,46.38,118.61,76.24,118.61,76.24Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 981 B

View File

@ -1 +1 @@
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#d43d44;}.cls-2{fill:#414143;}</style></defs><title>Artboard 13</title><g id="original-wordmark"><path class="cls-1" d="M17.73,61.51l12.49,3.1c2.17-.85,3.48-1.93,3.48-3.1v-5c0-2.75-7.15-5-16-5s-16,2.23-16,5v5c0,2.75,7.15,5,16,5v-5Z"/><path class="cls-1" d="M30.23,69.6,17.74,66.5v5l12.49,3.11c2.17-.85,3.48-1.93,3.48-3.11v-5C33.71,67.67,32.4,68.75,30.23,69.6Z"/><path class="cls-1" d="M1.77,66.5v5c0,2.75,7.15,5,16,5v-5C8.92,71.48,1.77,69.25,1.77,66.5Z"/><path class="cls-2" d="M47.42,71a6.69,6.69,0,0,1-6.8-6.82v0a6.74,6.74,0,0,1,6.91-6.85,6.84,6.84,0,0,1,5.22,2L50.9,61.5A4.89,4.89,0,0,0,47.51,60a3.93,3.93,0,0,0-3.84,4.13v0a3.93,3.93,0,0,0,3.84,4.16A4.78,4.78,0,0,0,51,66.78l1.86,1.87A6.76,6.76,0,0,1,47.42,71Z"/><path class="cls-2" d="M60.82,70.8V69.7A3.89,3.89,0,0,1,57.75,71c-1.91,0-3.48-1.1-3.48-3.11v0c0-2.22,1.68-3.24,4.09-3.24a7.19,7.19,0,0,1,2.48.42v-.17c0-1.19-.74-1.86-2.18-1.86a7.46,7.46,0,0,0-2.8.55l-.72-2.2a9,9,0,0,1,3.94-.82c3.14,0,4.52,1.63,4.52,4.38V70.8H60.82Zm.06-4.09A4.42,4.42,0,0,0,59,66.33c-1.23,0-2,.49-2,1.4v0c0,.78.64,1.23,1.57,1.23,1.34,0,2.25-.73,2.25-1.78Z"/><path class="cls-2" d="M72.61,70.8,70,66.65l-1,1.06V70.8H66.08V57H69v7.37l3.37-3.69h3.44l-3.86,4,4,6.15H72.61Z"/><path class="cls-2" d="M86.24,66.73H79.18a2.35,2.35,0,0,0,2.48,2,3.33,3.33,0,0,0,2.46-1l1.65,1.46a5.36,5.36,0,0,1-9.45-3.35v0a5.05,5.05,0,0,1,5-5.28c3.39,0,4.94,2.63,4.94,5.51v0C86.27,66.29,86.26,66.46,86.24,66.73Zm-4.9-4a2.26,2.26,0,0,0-2.2,2.16h4.34A2.17,2.17,0,0,0,81.33,62.77Z"/><path class="cls-1" d="M93.85,66.82H91.63v4H88.72V57.54h5.41c3.16,0,5.07,1.87,5.07,4.58v0C99.2,65.23,96.82,66.82,93.85,66.82Zm2.4-4.64c0-1.31-.91-2-2.37-2H91.63v4.05h2.31a2.05,2.05,0,0,0,2.31-2v0Z"/><path class="cls-1" d="M109.65,70.8V65.47h-5.38V70.8h-2.91V57.54h2.91v5.24h5.38V57.54h2.92V70.8Z"/><path class="cls-1" d="M120.88,66.82h-2.21v4h-2.92V57.54h5.41c3.16,0,5.07,1.87,5.07,4.58v0C126.23,65.23,123.85,66.82,120.88,66.82Zm2.4-4.64c0-1.31-.91-2-2.37-2h-2.25v4.05H121a2.05,2.05,0,0,0,2.31-2v0Z"/></g></svg>
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original-wordmark"><path fill="#d43d44" d="M17.73,61.51l12.49,3.1c2.17-.85,3.48-1.93,3.48-3.1v-5c0-2.75-7.15-5-16-5s-16,2.23-16,5v5c0,2.75,7.15,5,16,5v-5Z"/><path fill="#d43d44" d="M30.23,69.6,17.74,66.5v5l12.49,3.11c2.17-.85,3.48-1.93,3.48-3.11v-5C33.71,67.67,32.4,68.75,30.23,69.6Z"/><path fill="#d43d44" d="M1.77,66.5v5c0,2.75,7.15,5,16,5v-5C8.92,71.48,1.77,69.25,1.77,66.5Z"/><path fill="#414143" d="M47.42,71a6.69,6.69,0,0,1-6.8-6.82v0a6.74,6.74,0,0,1,6.91-6.85,6.84,6.84,0,0,1,5.22,2L50.9,61.5A4.89,4.89,0,0,0,47.51,60a3.93,3.93,0,0,0-3.84,4.13v0a3.93,3.93,0,0,0,3.84,4.16A4.78,4.78,0,0,0,51,66.78l1.86,1.87A6.76,6.76,0,0,1,47.42,71Z"/><path fill="#414143" d="M60.82,70.8V69.7A3.89,3.89,0,0,1,57.75,71c-1.91,0-3.48-1.1-3.48-3.11v0c0-2.22,1.68-3.24,4.09-3.24a7.19,7.19,0,0,1,2.48.42v-.17c0-1.19-.74-1.86-2.18-1.86a7.46,7.46,0,0,0-2.8.55l-.72-2.2a9,9,0,0,1,3.94-.82c3.14,0,4.52,1.63,4.52,4.38V70.8H60.82Zm.06-4.09A4.42,4.42,0,0,0,59,66.33c-1.23,0-2,.49-2,1.4v0c0,.78.64,1.23,1.57,1.23,1.34,0,2.25-.73,2.25-1.78Z"/><path fill="#414143" d="M72.61,70.8,70,66.65l-1,1.06V70.8H66.08V57H69v7.37l3.37-3.69h3.44l-3.86,4,4,6.15H72.61Z"/><path fill="#414143" d="M86.24,66.73H79.18a2.35,2.35,0,0,0,2.48,2,3.33,3.33,0,0,0,2.46-1l1.65,1.46a5.36,5.36,0,0,1-9.45-3.35v0a5.05,5.05,0,0,1,5-5.28c3.39,0,4.94,2.63,4.94,5.51v0C86.27,66.29,86.26,66.46,86.24,66.73Zm-4.9-4a2.26,2.26,0,0,0-2.2,2.16h4.34A2.17,2.17,0,0,0,81.33,62.77Z"/><path fill="#d43d44" d="M93.85,66.82H91.63v4H88.72V57.54h5.41c3.16,0,5.07,1.87,5.07,4.58v0C99.2,65.23,96.82,66.82,93.85,66.82Zm2.4-4.64c0-1.31-.91-2-2.37-2H91.63v4.05h2.31a2.05,2.05,0,0,0,2.31-2v0Z"/><path fill="#d43d44" d="M109.65,70.8V65.47h-5.38V70.8h-2.91V57.54h2.91v5.24h5.38V57.54h2.92V70.8Z"/><path fill="#d43d44" d="M120.88,66.82h-2.21v4h-2.92V57.54h5.41c3.16,0,5.07,1.87,5.07,4.58v0C126.23,65.23,123.85,66.82,120.88,66.82Zm2.4-4.64c0-1.31-.91-2-2.37-2h-2.25v4.05H121a2.05,2.05,0,0,0,2.31-2v0Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1 +1 @@
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#d43d44;}</style></defs><title>Artboard 14</title><g id="plain"><path class="cls-1" d="M2,73.69V93c0,10.69,27.75,19.35,62,19.35V93C29.75,93,2,84.36,2,73.69Z"/><path class="cls-1" d="M64,54.34l48.5,12c8.44-3.3,13.51-7.5,13.51-12V35c0-10.68-27.76-19.35-62-19.35S2,24.29,2,35V54.34C2,65,29.75,73.69,64,73.69V54.34Z"/><path class="cls-1" d="M112.49,85.74,64,73.69V93l48.5,12.05C120.93,101.78,126,97.59,126,93V73.69C126,78.24,120.93,82.43,112.49,85.74Z"/></g></svg>
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain"><path fill="#d43d44" d="M2,73.69V93c0,10.69,27.75,19.35,62,19.35V93C29.75,93,2,84.36,2,73.69Z"/><path fill="#d43d44" d="M64,54.34l48.5,12c8.44-3.3,13.51-7.5,13.51-12V35c0-10.68-27.76-19.35-62-19.35S2,24.29,2,35V54.34C2,65,29.75,73.69,64,73.69V54.34Z"/><path fill="#d43d44" d="M112.49,85.74,64,73.69V93l48.5,12.05C120.93,101.78,126,97.59,126,93V73.69C126,78.24,120.93,82.43,112.49,85.74Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 560 B

After

Width:  |  Height:  |  Size: 488 B

View File

@ -1 +1 @@
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#d43d44;}</style></defs><title>Artboard 15</title><g id="plain-wordmark"><path class="cls-1" d="M17.73,61.51l12.49,3.1c2.17-.85,3.48-1.93,3.48-3.1v-5c0-2.75-7.15-5-16-5s-16,2.23-16,5v5c0,2.75,7.15,5,16,5v-5Z"/><path class="cls-1" d="M30.23,69.6,17.74,66.5v5l12.49,3.11c2.17-.85,3.48-1.93,3.48-3.11v-5C33.71,67.67,32.4,68.75,30.23,69.6Z"/><path class="cls-1" d="M1.77,66.5v5c0,2.75,7.15,5,16,5v-5C8.92,71.48,1.77,69.25,1.77,66.5Z"/><path class="cls-1" d="M47.42,71a6.69,6.69,0,0,1-6.8-6.82v0a6.74,6.74,0,0,1,6.91-6.85,6.84,6.84,0,0,1,5.22,2L50.9,61.5A4.89,4.89,0,0,0,47.51,60a3.93,3.93,0,0,0-3.84,4.13v0a3.93,3.93,0,0,0,3.84,4.16A4.78,4.78,0,0,0,51,66.78l1.86,1.87A6.76,6.76,0,0,1,47.42,71Z"/><path class="cls-1" d="M60.82,70.8V69.7A3.89,3.89,0,0,1,57.75,71c-1.91,0-3.48-1.1-3.48-3.11v0c0-2.22,1.68-3.24,4.09-3.24a7.19,7.19,0,0,1,2.48.42v-.17c0-1.19-.74-1.86-2.18-1.86a7.46,7.46,0,0,0-2.8.55l-.72-2.2a9,9,0,0,1,3.94-.82c3.14,0,4.52,1.63,4.52,4.38V70.8H60.82Zm.06-4.09A4.42,4.42,0,0,0,59,66.33c-1.23,0-2,.49-2,1.4v0c0,.78.64,1.23,1.57,1.23,1.34,0,2.25-.73,2.25-1.78Z"/><path class="cls-1" d="M72.61,70.8,70,66.65l-1,1.06V70.8H66.08V57H69v7.37l3.37-3.69h3.44l-3.86,4,4,6.15H72.61Z"/><path class="cls-1" d="M86.24,66.73H79.18a2.35,2.35,0,0,0,2.48,2,3.33,3.33,0,0,0,2.46-1l1.65,1.46a5.36,5.36,0,0,1-9.45-3.35v0a5.05,5.05,0,0,1,5-5.28c3.39,0,4.94,2.63,4.94,5.51v0C86.27,66.29,86.26,66.46,86.24,66.73Zm-4.9-4a2.26,2.26,0,0,0-2.2,2.16h4.34A2.17,2.17,0,0,0,81.33,62.77Z"/><path class="cls-1" d="M93.85,66.82H91.63v4H88.72V57.54h5.41c3.16,0,5.07,1.87,5.07,4.58v0C99.2,65.23,96.82,66.82,93.85,66.82Zm2.4-4.64c0-1.31-.91-2-2.37-2H91.63v4.05h2.31a2.05,2.05,0,0,0,2.31-2v0Z"/><path class="cls-1" d="M109.65,70.8V65.47h-5.38V70.8h-2.91V57.54h2.91v5.24h5.38V57.54h2.92V70.8Z"/><path class="cls-1" d="M120.88,66.82h-2.21v4h-2.92V57.54h5.41c3.16,0,5.07,1.87,5.07,4.58v0C126.23,65.23,123.85,66.82,120.88,66.82Zm2.4-4.64c0-1.31-.91-2-2.37-2h-2.25v4.05H121a2.05,2.05,0,0,0,2.31-2v0Z"/></g></svg>
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain-wordmark"><path fill="#d43d44" d="M17.73,61.51l12.49,3.1c2.17-.85,3.48-1.93,3.48-3.1v-5c0-2.75-7.15-5-16-5s-16,2.23-16,5v5c0,2.75,7.15,5,16,5v-5Z"/><path fill="#d43d44" d="M30.23,69.6,17.74,66.5v5l12.49,3.11c2.17-.85,3.48-1.93,3.48-3.11v-5C33.71,67.67,32.4,68.75,30.23,69.6Z"/><path fill="#d43d44" d="M1.77,66.5v5c0,2.75,7.15,5,16,5v-5C8.92,71.48,1.77,69.25,1.77,66.5Z"/><path fill="#d43d44" d="M47.42,71a6.69,6.69,0,0,1-6.8-6.82v0a6.74,6.74,0,0,1,6.91-6.85,6.84,6.84,0,0,1,5.22,2L50.9,61.5A4.89,4.89,0,0,0,47.51,60a3.93,3.93,0,0,0-3.84,4.13v0a3.93,3.93,0,0,0,3.84,4.16A4.78,4.78,0,0,0,51,66.78l1.86,1.87A6.76,6.76,0,0,1,47.42,71Z"/><path fill="#d43d44" d="M60.82,70.8V69.7A3.89,3.89,0,0,1,57.75,71c-1.91,0-3.48-1.1-3.48-3.11v0c0-2.22,1.68-3.24,4.09-3.24a7.19,7.19,0,0,1,2.48.42v-.17c0-1.19-.74-1.86-2.18-1.86a7.46,7.46,0,0,0-2.8.55l-.72-2.2a9,9,0,0,1,3.94-.82c3.14,0,4.52,1.63,4.52,4.38V70.8H60.82Zm.06-4.09A4.42,4.42,0,0,0,59,66.33c-1.23,0-2,.49-2,1.4v0c0,.78.64,1.23,1.57,1.23,1.34,0,2.25-.73,2.25-1.78Z"/><path fill="#d43d44" d="M72.61,70.8,70,66.65l-1,1.06V70.8H66.08V57H69v7.37l3.37-3.69h3.44l-3.86,4,4,6.15H72.61Z"/><path fill="#d43d44" d="M86.24,66.73H79.18a2.35,2.35,0,0,0,2.48,2,3.33,3.33,0,0,0,2.46-1l1.65,1.46a5.36,5.36,0,0,1-9.45-3.35v0a5.05,5.05,0,0,1,5-5.28c3.39,0,4.94,2.63,4.94,5.51v0C86.27,66.29,86.26,66.46,86.24,66.73Zm-4.9-4a2.26,2.26,0,0,0-2.2,2.16h4.34A2.17,2.17,0,0,0,81.33,62.77Z"/><path fill="#d43d44" d="M93.85,66.82H91.63v4H88.72V57.54h5.41c3.16,0,5.07,1.87,5.07,4.58v0C99.2,65.23,96.82,66.82,93.85,66.82Zm2.4-4.64c0-1.31-.91-2-2.37-2H91.63v4.05h2.31a2.05,2.05,0,0,0,2.31-2v0Z"/><path fill="#d43d44" d="M109.65,70.8V65.47h-5.38V70.8h-2.91V57.54h2.91v5.24h5.38V57.54h2.92V70.8Z"/><path fill="#d43d44" d="M120.88,66.82h-2.21v4h-2.92V57.54h5.41c3.16,0,5.07,1.87,5.07,4.58v0C126.23,65.23,123.85,66.82,120.88,66.82Zm2.4-4.64c0-1.31-.91-2-2.37-2h-2.25v4.05H121a2.05,2.05,0,0,0,2.31-2v0Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1 +1 @@
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#d43d44;}</style></defs><title>Artboard 12</title><g id="original"><path class="cls-1" d="M2,73.69V93c0,10.69,27.75,19.35,62,19.35V93C29.75,93,2,84.36,2,73.69Z"/><path class="cls-1" d="M64,54.34l48.5,12c8.44-3.3,13.51-7.5,13.51-12V35c0-10.68-27.76-19.35-62-19.35S2,24.29,2,35V54.34C2,65,29.75,73.69,64,73.69V54.34Z"/><path class="cls-1" d="M112.49,85.74,64,73.69V93l48.5,12.05C120.93,101.78,126,97.59,126,93V73.69C126,78.24,120.93,82.43,112.49,85.74Z"/></g></svg>
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original"><path fill="#d43d44" d="M2,73.69V93c0,10.69,27.75,19.35,62,19.35V93C29.75,93,2,84.36,2,73.69Z"/><path fill="#d43d44" d="M64,54.34l48.5,12c8.44-3.3,13.51-7.5,13.51-12V35c0-10.68-27.76-19.35-62-19.35S2,24.29,2,35V54.34C2,65,29.75,73.69,64,73.69V54.34Z"/><path fill="#d43d44" d="M112.49,85.74,64,73.69V93l48.5,12.05C120.93,101.78,126,97.59,126,93V73.69C126,78.24,120.93,82.43,112.49,85.74Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 563 B

After

Width:  |  Height:  |  Size: 491 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -1 +1 @@
<svg id="Ceylon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#ab710a;}.cls-2{fill:#e3a835;}.cls-3{opacity:0.45;isolation:isolate;fill:url(#radial-gradient);}</style><radialGradient id="radial-gradient" cx="93.44" cy="1113.51" r="69.83" gradientTransform="matrix(1, 0, 0, -1, 0, 1148.01)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#ab710a"/></radialGradient></defs><title>Artboard 12</title><g id="original"><path class="cls-1" d="M40.42,90.46a15.35,15.35,0,0,1-2.8-1c-2.05,3.22-6.8,11.37-7.48,18.75h12.3A62.21,62.21,0,0,1,40.42,90.46Z"/><path class="cls-1" d="M80.28,83.92a91.7,91.7,0,0,0-5.71,17.18c-.53,2.38,1.08,4.75.78,7.11H90.82c-4.08-11.26-5-27.64-7.11-34.19C83.66,73.93,80.34,84,80.28,83.92Z"/><path class="cls-2" d="M124.32,45.19c-3.52-5-11.55-9.2-13.42-14.91-.48-1.46-.56-4.46.36-5.86s-.54-1-.54-1c-2,.77-2.86-1.43-2.86-1.43-.3-.77.11-3.12-1.61-1.84-3.1,2.33-2.08,8-1.5,10.28a23.76,23.76,0,0,0,5.9,10.34c1,.93,7.3,7.86,6.44,11.41a2.85,2.85,0,0,1-2.15,2.62c-4.59.92-6.08-4.71-6.08-4.71-3.44-14.69-9-19.83-9-19.83A109.06,109.06,0,0,0,73,32.62c-34.37-1.29-60.23,9.27-60.23,9.27-7.56,10.85-12,31-12,31s0,.1.07.11a.27.27,0,0,0,.26-.13,63.4,63.4,0,0,1,9.57-9.66c-.72,28,5.62,45,5.62,45h12C29.14,98.12,37.06,87,37.06,87c4.46,3.38,14.54,2.38,14.54,2.38C53.38,96.12,57,108.2,57,108.2H71.46a91.43,91.43,0,0,1,7.87-26.64S82.91,73.44,83,71c.23-4.25,4.25-5.51,6.43-5.51s12.1,5.54,19.51,5.17c12.91-.65,18-6.62,18.25-13.43C127.39,52.55,126.29,48,124.32,45.19ZM82.83,59.62a2.23,2.23,0,0,1-.27.54,1.48,1.48,0,0,1-.51.47,1.39,1.39,0,0,1-.73.16,2.16,2.16,0,0,1-.66-.15,6.29,6.29,0,0,1-1.88-1.32c-.27-.25-.52-.51-.76-.76l-.7-.73A4.47,4.47,0,0,0,75.84,57c-.59-.21-1.23-.38-1.9-.54s-1.34-.33-2.07-.57c-.18-.06-.37-.13-.58-.23L71,55.55a2.44,2.44,0,0,1-.38-.27,2.49,2.49,0,0,1-.56-.7,3.05,3.05,0,0,1-.28-.74,4.93,4.93,0,0,1-.1-1.32,8.71,8.71,0,0,1,.13-1.16,17,17,0,0,1,.55-2.13q.33-1,.73-2c.13-.33.26-.65.41-1a10.66,10.66,0,0,1,.52-1A11.25,11.25,0,0,1,74.94,42a12.89,12.89,0,0,1,1.81-1.14,10.3,10.3,0,0,1,2-.8,18.29,18.29,0,0,0-3.08,2.71A12.3,12.3,0,0,0,73.48,46a8.65,8.65,0,0,0-.34.89l-.31,1c-.2.65-.4,1.3-.56,1.95a18,18,0,0,0-.41,1.91,7.8,7.8,0,0,0-.09.9,2.84,2.84,0,0,0,.06.75.65.65,0,0,0,.16.34l0,0,.14.08.39.16c.58.22,1.25.39,1.92.6a17.92,17.92,0,0,1,2.05.75,5.53,5.53,0,0,1,2,1.4c.25.31.43.58.64.86l.61.81c.2.26.41.51.63.74a3.66,3.66,0,0,0,.67.58.81.81,0,0,0,.61.17,1.12,1.12,0,0,0,.59-.51,4.75,4.75,0,0,0,.44-.89c.13-.32.23-.65.34-1A5.93,5.93,0,0,1,82.83,59.62ZM95.61,50.7a2.19,2.19,0,1,1-.88-2.52A1.92,1.92,0,0,1,95.61,50.7Z"/><path class="cls-3" d="M124.32,45.19c-3.52-5-11.55-9.2-13.42-14.91-.48-1.46-.56-4.46.36-5.86s-.54-1-.54-1c-2,.77-2.86-1.43-2.86-1.43-.3-.77.11-3.12-1.61-1.84-3.1,2.33-2.08,8-1.5,10.28a23.76,23.76,0,0,0,5.9,10.34c1,.93,7.3,7.86,6.44,11.41a2.85,2.85,0,0,1-2.15,2.62c-4.59.92-6.08-4.71-6.08-4.71-3.44-14.69-9-19.83-9-19.83A109.06,109.06,0,0,0,73,32.62c-34.37-1.29-60.23,9.27-60.23,9.27-7.56,10.85-12,31-12,31s0,.1.07.11a.27.27,0,0,0,.26-.13,63.4,63.4,0,0,1,9.57-9.66c-.72,28,5.62,45,5.62,45h12C29.14,98.12,37.06,87,37.06,87c4.46,3.38,14.54,2.38,14.54,2.38C53.38,96.12,57,108.2,57,108.2H71.46a91.43,91.43,0,0,1,7.87-26.64S82.91,73.44,83,71c.23-4.25,4.25-5.51,6.43-5.51s12.1,5.54,19.51,5.17c12.91-.65,18-6.62,18.25-13.43C127.39,52.55,126.29,48,124.32,45.19ZM82.83,59.62a2.23,2.23,0,0,1-.27.54,1.48,1.48,0,0,1-.51.47,1.39,1.39,0,0,1-.73.16,2.16,2.16,0,0,1-.66-.15,6.29,6.29,0,0,1-1.88-1.32c-.27-.25-.52-.51-.76-.76l-.7-.73A4.47,4.47,0,0,0,75.84,57c-.59-.21-1.23-.38-1.9-.54s-1.34-.33-2.07-.57c-.18-.06-.37-.13-.58-.23L71,55.55a2.44,2.44,0,0,1-.38-.27,2.49,2.49,0,0,1-.56-.7,3.05,3.05,0,0,1-.28-.74,4.93,4.93,0,0,1-.1-1.32,8.71,8.71,0,0,1,.13-1.16,17,17,0,0,1,.55-2.13q.33-1,.73-2c.13-.33.26-.65.41-1a10.66,10.66,0,0,1,.52-1A11.25,11.25,0,0,1,74.94,42a12.89,12.89,0,0,1,1.81-1.14,10.3,10.3,0,0,1,2-.8,18.29,18.29,0,0,0-3.08,2.71A12.3,12.3,0,0,0,73.48,46a8.65,8.65,0,0,0-.34.89l-.31,1c-.2.65-.4,1.3-.56,1.95a18,18,0,0,0-.41,1.91,7.8,7.8,0,0,0-.09.9,2.84,2.84,0,0,0,.06.75.65.65,0,0,0,.16.34l0,0,.14.08.39.16c.58.22,1.25.39,1.92.6a17.92,17.92,0,0,1,2.05.75,5.53,5.53,0,0,1,2,1.4c.25.31.43.58.64.86l.61.81c.2.26.41.51.63.74a3.66,3.66,0,0,0,.67.58.81.81,0,0,0,.61.17,1.12,1.12,0,0,0,.59-.51,4.75,4.75,0,0,0,.44-.89c.13-.32.23-.65.34-1A5.93,5.93,0,0,1,82.83,59.62ZM95.61,50.7a2.19,2.19,0,1,1-.88-2.52A1.92,1.92,0,0,1,95.61,50.7Z"/></g></svg>
<svg id="Ceylon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128"><defs><radialGradient id="ceylon-gradient" cx="93.44" cy="1113.51" r="69.83" gradientTransform="matrix(1, 0, 0, -1, 0, 1148.01)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#ab710a"/></radialGradient></defs><g id="original"><path fill="#ab710a" d="M40.42,90.46a15.35,15.35,0,0,1-2.8-1c-2.05,3.22-6.8,11.37-7.48,18.75h12.3A62.21,62.21,0,0,1,40.42,90.46Z"/><path fill="#ab710a" d="M80.28,83.92a91.7,91.7,0,0,0-5.71,17.18c-.53,2.38,1.08,4.75.78,7.11H90.82c-4.08-11.26-5-27.64-7.11-34.19C83.66,73.93,80.34,84,80.28,83.92Z"/><path fill="#e3a835" d="M124.32,45.19c-3.52-5-11.55-9.2-13.42-14.91-.48-1.46-.56-4.46.36-5.86s-.54-1-.54-1c-2,.77-2.86-1.43-2.86-1.43-.3-.77.11-3.12-1.61-1.84-3.1,2.33-2.08,8-1.5,10.28a23.76,23.76,0,0,0,5.9,10.34c1,.93,7.3,7.86,6.44,11.41a2.85,2.85,0,0,1-2.15,2.62c-4.59.92-6.08-4.71-6.08-4.71-3.44-14.69-9-19.83-9-19.83A109.06,109.06,0,0,0,73,32.62c-34.37-1.29-60.23,9.27-60.23,9.27-7.56,10.85-12,31-12,31s0,.1.07.11a.27.27,0,0,0,.26-.13,63.4,63.4,0,0,1,9.57-9.66c-.72,28,5.62,45,5.62,45h12C29.14,98.12,37.06,87,37.06,87c4.46,3.38,14.54,2.38,14.54,2.38C53.38,96.12,57,108.2,57,108.2H71.46a91.43,91.43,0,0,1,7.87-26.64S82.91,73.44,83,71c.23-4.25,4.25-5.51,6.43-5.51s12.1,5.54,19.51,5.17c12.91-.65,18-6.62,18.25-13.43C127.39,52.55,126.29,48,124.32,45.19ZM82.83,59.62a2.23,2.23,0,0,1-.27.54,1.48,1.48,0,0,1-.51.47,1.39,1.39,0,0,1-.73.16,2.16,2.16,0,0,1-.66-.15,6.29,6.29,0,0,1-1.88-1.32c-.27-.25-.52-.51-.76-.76l-.7-.73A4.47,4.47,0,0,0,75.84,57c-.59-.21-1.23-.38-1.9-.54s-1.34-.33-2.07-.57c-.18-.06-.37-.13-.58-.23L71,55.55a2.44,2.44,0,0,1-.38-.27,2.49,2.49,0,0,1-.56-.7,3.05,3.05,0,0,1-.28-.74,4.93,4.93,0,0,1-.1-1.32,8.71,8.71,0,0,1,.13-1.16,17,17,0,0,1,.55-2.13q.33-1,.73-2c.13-.33.26-.65.41-1a10.66,10.66,0,0,1,.52-1A11.25,11.25,0,0,1,74.94,42a12.89,12.89,0,0,1,1.81-1.14,10.3,10.3,0,0,1,2-.8,18.29,18.29,0,0,0-3.08,2.71A12.3,12.3,0,0,0,73.48,46a8.65,8.65,0,0,0-.34.89l-.31,1c-.2.65-.4,1.3-.56,1.95a18,18,0,0,0-.41,1.91,7.8,7.8,0,0,0-.09.9,2.84,2.84,0,0,0,.06.75.65.65,0,0,0,.16.34l0,0,.14.08.39.16c.58.22,1.25.39,1.92.6a17.92,17.92,0,0,1,2.05.75,5.53,5.53,0,0,1,2,1.4c.25.31.43.58.64.86l.61.81c.2.26.41.51.63.74a3.66,3.66,0,0,0,.67.58.81.81,0,0,0,.61.17,1.12,1.12,0,0,0,.59-.51,4.75,4.75,0,0,0,.44-.89c.13-.32.23-.65.34-1A5.93,5.93,0,0,1,82.83,59.62ZM95.61,50.7a2.19,2.19,0,1,1-.88-2.52A1.92,1.92,0,0,1,95.61,50.7Z"/><path fill="url(#ceylon-gradient)" isolation="isolate" opacity="0.45" d="M124.32,45.19c-3.52-5-11.55-9.2-13.42-14.91-.48-1.46-.56-4.46.36-5.86s-.54-1-.54-1c-2,.77-2.86-1.43-2.86-1.43-.3-.77.11-3.12-1.61-1.84-3.1,2.33-2.08,8-1.5,10.28a23.76,23.76,0,0,0,5.9,10.34c1,.93,7.3,7.86,6.44,11.41a2.85,2.85,0,0,1-2.15,2.62c-4.59.92-6.08-4.71-6.08-4.71-3.44-14.69-9-19.83-9-19.83A109.06,109.06,0,0,0,73,32.62c-34.37-1.29-60.23,9.27-60.23,9.27-7.56,10.85-12,31-12,31s0,.1.07.11a.27.27,0,0,0,.26-.13,63.4,63.4,0,0,1,9.57-9.66c-.72,28,5.62,45,5.62,45h12C29.14,98.12,37.06,87,37.06,87c4.46,3.38,14.54,2.38,14.54,2.38C53.38,96.12,57,108.2,57,108.2H71.46a91.43,91.43,0,0,1,7.87-26.64S82.91,73.44,83,71c.23-4.25,4.25-5.51,6.43-5.51s12.1,5.54,19.51,5.17c12.91-.65,18-6.62,18.25-13.43C127.39,52.55,126.29,48,124.32,45.19ZM82.83,59.62a2.23,2.23,0,0,1-.27.54,1.48,1.48,0,0,1-.51.47,1.39,1.39,0,0,1-.73.16,2.16,2.16,0,0,1-.66-.15,6.29,6.29,0,0,1-1.88-1.32c-.27-.25-.52-.51-.76-.76l-.7-.73A4.47,4.47,0,0,0,75.84,57c-.59-.21-1.23-.38-1.9-.54s-1.34-.33-2.07-.57c-.18-.06-.37-.13-.58-.23L71,55.55a2.44,2.44,0,0,1-.38-.27,2.49,2.49,0,0,1-.56-.7,3.05,3.05,0,0,1-.28-.74,4.93,4.93,0,0,1-.1-1.32,8.71,8.71,0,0,1,.13-1.16,17,17,0,0,1,.55-2.13q.33-1,.73-2c.13-.33.26-.65.41-1a10.66,10.66,0,0,1,.52-1A11.25,11.25,0,0,1,74.94,42a12.89,12.89,0,0,1,1.81-1.14,10.3,10.3,0,0,1,2-.8,18.29,18.29,0,0,0-3.08,2.71A12.3,12.3,0,0,0,73.48,46a8.65,8.65,0,0,0-.34.89l-.31,1c-.2.65-.4,1.3-.56,1.95a18,18,0,0,0-.41,1.91,7.8,7.8,0,0,0-.09.9,2.84,2.84,0,0,0,.06.75.65.65,0,0,0,.16.34l0,0,.14.08.39.16c.58.22,1.25.39,1.92.6a17.92,17.92,0,0,1,2.05.75,5.53,5.53,0,0,1,2,1.4c.25.31.43.58.64.86l.61.81c.2.26.41.51.63.74a3.66,3.66,0,0,0,.67.58.81.81,0,0,0,.61.17,1.12,1.12,0,0,0,.59-.51,4.75,4.75,0,0,0,.44-.89c.13-.32.23-.65.34-1A5.93,5.93,0,0,1,82.83,59.62ZM95.61,50.7a2.19,2.19,0,1,1-.88-2.52A1.92,1.92,0,0,1,95.61,50.7Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -1 +1 @@
<svg id="Ceylon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1,.cls-2{fill:#34495e;}.cls-2{opacity:0.45;isolation:isolate;}</style></defs><title>Artboard 15</title><g id="plain-wordmark"><path class="cls-1" d="M18.4,71a6,6,0,0,1-1.09-.39c-.8,1.26-2.66,4.45-2.93,7.33h4.81A24.34,24.34,0,0,1,18.4,71Z"/><path class="cls-1" d="M34,68.43a35.87,35.87,0,0,0-2.24,6.72c-.21.93.42,1.86.3,2.78h6.05c-1.59-4.4-2-10.81-2.78-13.37C35.31,64.52,34,68.46,34,68.43Z"/><path class="cls-1" d="M51.22,53.27c-1.38-2-4.52-3.6-5.25-5.83a3.3,3.3,0,0,1,.14-2.29c.33-.5-.21-.38-.21-.38-.78.3-1.12-.56-1.12-.56-.12-.3,0-1.22-.63-.72-1.21.91-.81,3.12-.59,4a9.3,9.3,0,0,0,2.31,4c.37.37,2.86,3.07,2.52,4.47a1.11,1.11,0,0,1-.84,1c-1.8.36-2.38-1.84-2.38-1.84-1.35-5.75-3.52-7.76-3.52-7.76a42.66,42.66,0,0,0-10.51.91A62.3,62.3,0,0,0,7.57,52c-3,4.24-4.69,12.12-4.69,12.12s0,0,0,0a.11.11,0,0,0,.1,0,24.8,24.8,0,0,1,3.74-3.78C6.48,71.26,9,77.93,9,77.93h4.7c.33-3.94,3.43-8.31,3.43-8.31,1.75,1.32,5.69.93,5.69.93.69,2.65,2.11,7.37,2.11,7.37h5.66a35.77,35.77,0,0,1,3.08-10.42,23.05,23.05,0,0,0,1.45-4.12,2.39,2.39,0,0,1,2.51-2.16c.85,0,4.73,2.17,7.63,2,5.05-.25,7-2.59,7.14-5.25A8.09,8.09,0,0,0,51.22,53.27ZM35,58.92a.87.87,0,0,1-.11.21.58.58,0,0,1-.2.18.54.54,0,0,1-.29.06.84.84,0,0,1-.26-.06,2.46,2.46,0,0,1-.74-.52l-.3-.3-.27-.29a1.75,1.75,0,0,0-.58-.31c-.23-.08-.48-.15-.74-.21s-.52-.13-.81-.22l-.22-.09-.12-.06-.15-.1a1,1,0,0,1-.22-.28,1.19,1.19,0,0,1-.11-.29,1.93,1.93,0,0,1,0-.51,3.41,3.41,0,0,1,.05-.46,6.63,6.63,0,0,1,.22-.83q.13-.4.29-.78l.16-.39a4.17,4.17,0,0,1,.2-.39A4.4,4.4,0,0,1,31.9,52a5,5,0,0,1,.71-.45,4,4,0,0,1,.77-.31,7.16,7.16,0,0,0-1.21,1.06,4.81,4.81,0,0,0-.85,1.27,3.39,3.39,0,0,0-.13.35l-.12.38c-.08.25-.15.51-.22.76a7,7,0,0,0-.16.75,3.05,3.05,0,0,0,0,.35,1.11,1.11,0,0,0,0,.29.25.25,0,0,0,.06.13h0l.06,0,.15.06c.23.08.49.15.75.24a7,7,0,0,1,.8.29,2.16,2.16,0,0,1,.79.55c.1.12.17.23.25.34l.24.32.25.29a1.43,1.43,0,0,0,.26.23.32.32,0,0,0,.24.07.44.44,0,0,0,.23-.2,1.86,1.86,0,0,0,.17-.35c.05-.12.09-.25.13-.39A2.32,2.32,0,0,1,35,58.92Zm5-3.49a.86.86,0,1,1-.34-1A.75.75,0,0,1,40,55.43Z"/><path class="cls-2" d="M51.22,53.27c-1.38-2-4.52-3.6-5.25-5.83a3.3,3.3,0,0,1,.14-2.29c.33-.5-.21-.38-.21-.38-.78.3-1.12-.56-1.12-.56-.12-.3,0-1.22-.63-.72-1.21.91-.81,3.12-.59,4a9.3,9.3,0,0,0,2.31,4c.37.37,2.86,3.07,2.52,4.47a1.11,1.11,0,0,1-.84,1c-1.8.36-2.38-1.84-2.38-1.84-1.35-5.75-3.52-7.76-3.52-7.76a42.66,42.66,0,0,0-10.51.91A62.3,62.3,0,0,0,7.57,52c-3,4.24-4.69,12.12-4.69,12.12s0,0,0,0a.11.11,0,0,0,.1,0,24.8,24.8,0,0,1,3.74-3.78C6.48,71.26,9,77.93,9,77.93h4.7c.33-3.94,3.43-8.31,3.43-8.31,1.75,1.32,5.69.93,5.69.93.69,2.65,2.11,7.37,2.11,7.37h5.66a35.77,35.77,0,0,1,3.08-10.42,23.05,23.05,0,0,0,1.45-4.12,2.39,2.39,0,0,1,2.51-2.16c.85,0,4.73,2.17,7.63,2,5.05-.25,7-2.59,7.14-5.25A8.09,8.09,0,0,0,51.22,53.27ZM35,58.92a.87.87,0,0,1-.11.21.58.58,0,0,1-.2.18.54.54,0,0,1-.29.06.84.84,0,0,1-.26-.06,2.46,2.46,0,0,1-.74-.52l-.3-.3-.27-.29a1.75,1.75,0,0,0-.58-.31c-.23-.08-.48-.15-.74-.21s-.52-.13-.81-.22l-.22-.09-.12-.06-.15-.1a1,1,0,0,1-.22-.28,1.19,1.19,0,0,1-.11-.29,1.93,1.93,0,0,1,0-.51,3.41,3.41,0,0,1,.05-.46,6.63,6.63,0,0,1,.22-.83q.13-.4.29-.78l.16-.39a4.17,4.17,0,0,1,.2-.39A4.4,4.4,0,0,1,31.9,52a5,5,0,0,1,.71-.45,4,4,0,0,1,.77-.31,7.16,7.16,0,0,0-1.21,1.06,4.81,4.81,0,0,0-.85,1.27,3.39,3.39,0,0,0-.13.35l-.12.38c-.08.25-.15.51-.22.76a7,7,0,0,0-.16.75,3.05,3.05,0,0,0,0,.35,1.11,1.11,0,0,0,0,.29.25.25,0,0,0,.06.13h0l.06,0,.15.06c.23.08.49.15.75.24a7,7,0,0,1,.8.29,2.16,2.16,0,0,1,.79.55c.1.12.17.23.25.34l.24.32.25.29a1.43,1.43,0,0,0,.26.23.32.32,0,0,0,.24.07.44.44,0,0,0,.23-.2,1.86,1.86,0,0,0,.17-.35c.05-.12.09-.25.13-.39A2.32,2.32,0,0,1,35,58.92Zm5-3.49a.86.86,0,1,1-.34-1A.75.75,0,0,1,40,55.43Z"/><path class="cls-1" d="M118.41,61.43A7.61,7.61,0,0,0,113,63.89l-2.46-2.12H109.4v3.57a8.45,8.45,0,0,0-14.24,0V57l-4.28-3.71H89.71v8.52H86.48l-3.82,7.51-3.84-7.51H73l1.26,2.48a8.15,8.15,0,0,0-6.24-2.82c-5.29,0-8.86,3.78-8.86,8.43a8.75,8.75,0,0,0,.13,1.49,9.16,9.16,0,0,1-4.52,1.21,4.15,4.15,0,0,1-4.3-4.33,4.2,4.2,0,0,1,4.3-4.37c2.48,0,3.59,1,5,1.48V59.9a9.1,9.1,0,0,0-5.63-1.74,12.25,12.25,0,0,0-1.41.08c-.13,1.71-1.2,5.15-7.57,5.47h-.55a10,10,0,0,0-1.06,4.51c0,5.52,4.41,10.07,10.59,10.07a8.91,8.91,0,0,0,5.63-1.81V73.13c1.25,3,4.27,5,8.61,5a9.81,9.81,0,0,0,7-2.89l-2.06-2.37a5.64,5.64,0,0,1-3.81,1.35c-3,0-4.86-1.54-4.71-3.72H76a7.72,7.72,0,0,0-.08-3.11L79.74,75l-4.92,9.69h5.63l9.26-18.17V77.83h5.45V74.28a8.45,8.45,0,0,0,14.24,0v3.57h5.48V67.43a3.06,3.06,0,0,1,2.8-1.78c1.35,0,2,.83,2,3.35v8.83h5.48V67.49C125.12,64.35,123.21,61.43,118.41,61.43ZM65.07,67.34a3.4,3.4,0,0,1,3-2.46,2.39,2.39,0,0,1,2.61,2.46Zm37.19,6.86c-1.45,0-2.68-2-2.68-4.4s1.23-4.4,2.68-4.4,2.71,2,2.71,4.4S103.74,74.2,102.26,74.2Z"/></g></svg>
<svg id="Ceylon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain-wordmark"><path fill="#34495e" d="M18.4,71a6,6,0,0,1-1.09-.39c-.8,1.26-2.66,4.45-2.93,7.33h4.81A24.34,24.34,0,0,1,18.4,71Z"/><path fill="#34495e" d="M34,68.43a35.87,35.87,0,0,0-2.24,6.72c-.21.93.42,1.86.3,2.78h6.05c-1.59-4.4-2-10.81-2.78-13.37C35.31,64.52,34,68.46,34,68.43Z"/><path fill="#34495e" d="M51.22,53.27c-1.38-2-4.52-3.6-5.25-5.83a3.3,3.3,0,0,1,.14-2.29c.33-.5-.21-.38-.21-.38-.78.3-1.12-.56-1.12-.56-.12-.3,0-1.22-.63-.72-1.21.91-.81,3.12-.59,4a9.3,9.3,0,0,0,2.31,4c.37.37,2.86,3.07,2.52,4.47a1.11,1.11,0,0,1-.84,1c-1.8.36-2.38-1.84-2.38-1.84-1.35-5.75-3.52-7.76-3.52-7.76a42.66,42.66,0,0,0-10.51.91A62.3,62.3,0,0,0,7.57,52c-3,4.24-4.69,12.12-4.69,12.12s0,0,0,0a.11.11,0,0,0,.1,0,24.8,24.8,0,0,1,3.74-3.78C6.48,71.26,9,77.93,9,77.93h4.7c.33-3.94,3.43-8.31,3.43-8.31,1.75,1.32,5.69.93,5.69.93.69,2.65,2.11,7.37,2.11,7.37h5.66a35.77,35.77,0,0,1,3.08-10.42,23.05,23.05,0,0,0,1.45-4.12,2.39,2.39,0,0,1,2.51-2.16c.85,0,4.73,2.17,7.63,2,5.05-.25,7-2.59,7.14-5.25A8.09,8.09,0,0,0,51.22,53.27ZM35,58.92a.87.87,0,0,1-.11.21.58.58,0,0,1-.2.18.54.54,0,0,1-.29.06.84.84,0,0,1-.26-.06,2.46,2.46,0,0,1-.74-.52l-.3-.3-.27-.29a1.75,1.75,0,0,0-.58-.31c-.23-.08-.48-.15-.74-.21s-.52-.13-.81-.22l-.22-.09-.12-.06-.15-.1a1,1,0,0,1-.22-.28,1.19,1.19,0,0,1-.11-.29,1.93,1.93,0,0,1,0-.51,3.41,3.41,0,0,1,.05-.46,6.63,6.63,0,0,1,.22-.83q.13-.4.29-.78l.16-.39a4.17,4.17,0,0,1,.2-.39A4.4,4.4,0,0,1,31.9,52a5,5,0,0,1,.71-.45,4,4,0,0,1,.77-.31,7.16,7.16,0,0,0-1.21,1.06,4.81,4.81,0,0,0-.85,1.27,3.39,3.39,0,0,0-.13.35l-.12.38c-.08.25-.15.51-.22.76a7,7,0,0,0-.16.75,3.05,3.05,0,0,0,0,.35,1.11,1.11,0,0,0,0,.29.25.25,0,0,0,.06.13h0l.06,0,.15.06c.23.08.49.15.75.24a7,7,0,0,1,.8.29,2.16,2.16,0,0,1,.79.55c.1.12.17.23.25.34l.24.32.25.29a1.43,1.43,0,0,0,.26.23.32.32,0,0,0,.24.07.44.44,0,0,0,.23-.2,1.86,1.86,0,0,0,.17-.35c.05-.12.09-.25.13-.39A2.32,2.32,0,0,1,35,58.92Zm5-3.49a.86.86,0,1,1-.34-1A.75.75,0,0,1,40,55.43Z"/><path fill="#34495e" opacity="0.45" isolation='isolate' d="M51.22,53.27c-1.38-2-4.52-3.6-5.25-5.83a3.3,3.3,0,0,1,.14-2.29c.33-.5-.21-.38-.21-.38-.78.3-1.12-.56-1.12-.56-.12-.3,0-1.22-.63-.72-1.21.91-.81,3.12-.59,4a9.3,9.3,0,0,0,2.31,4c.37.37,2.86,3.07,2.52,4.47a1.11,1.11,0,0,1-.84,1c-1.8.36-2.38-1.84-2.38-1.84-1.35-5.75-3.52-7.76-3.52-7.76a42.66,42.66,0,0,0-10.51.91A62.3,62.3,0,0,0,7.57,52c-3,4.24-4.69,12.12-4.69,12.12s0,0,0,0a.11.11,0,0,0,.1,0,24.8,24.8,0,0,1,3.74-3.78C6.48,71.26,9,77.93,9,77.93h4.7c.33-3.94,3.43-8.31,3.43-8.31,1.75,1.32,5.69.93,5.69.93.69,2.65,2.11,7.37,2.11,7.37h5.66a35.77,35.77,0,0,1,3.08-10.42,23.05,23.05,0,0,0,1.45-4.12,2.39,2.39,0,0,1,2.51-2.16c.85,0,4.73,2.17,7.63,2,5.05-.25,7-2.59,7.14-5.25A8.09,8.09,0,0,0,51.22,53.27ZM35,58.92a.87.87,0,0,1-.11.21.58.58,0,0,1-.2.18.54.54,0,0,1-.29.06.84.84,0,0,1-.26-.06,2.46,2.46,0,0,1-.74-.52l-.3-.3-.27-.29a1.75,1.75,0,0,0-.58-.31c-.23-.08-.48-.15-.74-.21s-.52-.13-.81-.22l-.22-.09-.12-.06-.15-.1a1,1,0,0,1-.22-.28,1.19,1.19,0,0,1-.11-.29,1.93,1.93,0,0,1,0-.51,3.41,3.41,0,0,1,.05-.46,6.63,6.63,0,0,1,.22-.83q.13-.4.29-.78l.16-.39a4.17,4.17,0,0,1,.2-.39A4.4,4.4,0,0,1,31.9,52a5,5,0,0,1,.71-.45,4,4,0,0,1,.77-.31,7.16,7.16,0,0,0-1.21,1.06,4.81,4.81,0,0,0-.85,1.27,3.39,3.39,0,0,0-.13.35l-.12.38c-.08.25-.15.51-.22.76a7,7,0,0,0-.16.75,3.05,3.05,0,0,0,0,.35,1.11,1.11,0,0,0,0,.29.25.25,0,0,0,.06.13h0l.06,0,.15.06c.23.08.49.15.75.24a7,7,0,0,1,.8.29,2.16,2.16,0,0,1,.79.55c.1.12.17.23.25.34l.24.32.25.29a1.43,1.43,0,0,0,.26.23.32.32,0,0,0,.24.07.44.44,0,0,0,.23-.2,1.86,1.86,0,0,0,.17-.35c.05-.12.09-.25.13-.39A2.32,2.32,0,0,1,35,58.92Zm5-3.49a.86.86,0,1,1-.34-1A.75.75,0,0,1,40,55.43Z"/><path fill="#34495e" d="M118.41,61.43A7.61,7.61,0,0,0,113,63.89l-2.46-2.12H109.4v3.57a8.45,8.45,0,0,0-14.24,0V57l-4.28-3.71H89.71v8.52H86.48l-3.82,7.51-3.84-7.51H73l1.26,2.48a8.15,8.15,0,0,0-6.24-2.82c-5.29,0-8.86,3.78-8.86,8.43a8.75,8.75,0,0,0,.13,1.49,9.16,9.16,0,0,1-4.52,1.21,4.15,4.15,0,0,1-4.3-4.33,4.2,4.2,0,0,1,4.3-4.37c2.48,0,3.59,1,5,1.48V59.9a9.1,9.1,0,0,0-5.63-1.74,12.25,12.25,0,0,0-1.41.08c-.13,1.71-1.2,5.15-7.57,5.47h-.55a10,10,0,0,0-1.06,4.51c0,5.52,4.41,10.07,10.59,10.07a8.91,8.91,0,0,0,5.63-1.81V73.13c1.25,3,4.27,5,8.61,5a9.81,9.81,0,0,0,7-2.89l-2.06-2.37a5.64,5.64,0,0,1-3.81,1.35c-3,0-4.86-1.54-4.71-3.72H76a7.72,7.72,0,0,0-.08-3.11L79.74,75l-4.92,9.69h5.63l9.26-18.17V77.83h5.45V74.28a8.45,8.45,0,0,0,14.24,0v3.57h5.48V67.43a3.06,3.06,0,0,1,2.8-1.78c1.35,0,2,.83,2,3.35v8.83h5.48V67.49C125.12,64.35,123.21,61.43,118.41,61.43ZM65.07,67.34a3.4,3.4,0,0,1,3-2.46,2.39,2.39,0,0,1,2.61,2.46Zm37.19,6.86c-1.45,0-2.68-2-2.68-4.4s1.23-4.4,2.68-4.4,2.71,2,2.71,4.4S103.74,74.2,102.26,74.2Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -1 +1 @@
<svg id="Ceylon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#34495e;}</style></defs><title>Artboard 14</title><g id="plain"><path class="cls-1" d="M40.42,90.46a15.35,15.35,0,0,1-2.8-1c-2.05,3.22-6.8,11.37-7.48,18.75h12.3A62.21,62.21,0,0,1,40.42,90.46Z"/><path class="cls-1" d="M80.28,83.92a91.7,91.7,0,0,0-5.71,17.18c-.53,2.38,1.08,4.75.78,7.11H90.82c-4.08-11.26-5-27.64-7.11-34.19C83.66,73.93,80.34,84,80.28,83.92Z"/><path class="cls-1" d="M124.32,45.19c-3.52-5-11.55-9.2-13.42-14.91-.48-1.46-.56-4.46.36-5.86s-.54-1-.54-1c-2,.77-2.86-1.43-2.86-1.43-.3-.77.11-3.12-1.61-1.84-3.1,2.33-2.08,8-1.5,10.28a23.76,23.76,0,0,0,5.9,10.34c1,.93,7.3,7.86,6.44,11.41a2.85,2.85,0,0,1-2.15,2.62c-4.59.92-6.08-4.71-6.08-4.71-3.44-14.69-9-19.83-9-19.83A109.06,109.06,0,0,0,73,32.62c-34.37-1.29-60.23,9.27-60.23,9.27-7.56,10.85-12,31-12,31s0,.1.07.11a.27.27,0,0,0,.26-.13,63.4,63.4,0,0,1,9.57-9.66c-.72,28,5.62,45,5.62,45h12C29.14,98.12,37.06,87,37.06,87c4.46,3.38,14.54,2.38,14.54,2.38C53.38,96.12,57,108.2,57,108.2H71.46a91.43,91.43,0,0,1,7.87-26.64S82.91,73.44,83,71c.23-4.25,4.25-5.51,6.43-5.51s12.1,5.54,19.51,5.17c12.91-.65,18-6.62,18.25-13.43C127.39,52.55,126.29,48,124.32,45.19ZM82.83,59.62a2.23,2.23,0,0,1-.27.54,1.48,1.48,0,0,1-.51.47,1.39,1.39,0,0,1-.73.16,2.16,2.16,0,0,1-.66-.15,6.29,6.29,0,0,1-1.88-1.32c-.27-.25-.52-.51-.76-.76l-.7-.73A4.47,4.47,0,0,0,75.84,57c-.59-.21-1.23-.38-1.9-.54s-1.34-.33-2.07-.57c-.18-.06-.37-.13-.58-.23L71,55.55a2.44,2.44,0,0,1-.38-.27,2.49,2.49,0,0,1-.56-.7,3.05,3.05,0,0,1-.28-.74,4.93,4.93,0,0,1-.1-1.32,8.71,8.71,0,0,1,.13-1.16,17,17,0,0,1,.55-2.13q.33-1,.73-2c.13-.33.26-.65.41-1a10.66,10.66,0,0,1,.52-1A11.25,11.25,0,0,1,74.94,42a12.89,12.89,0,0,1,1.81-1.14,10.3,10.3,0,0,1,2-.8,18.29,18.29,0,0,0-3.08,2.71A12.3,12.3,0,0,0,73.48,46a8.65,8.65,0,0,0-.34.89l-.31,1c-.2.65-.4,1.3-.56,1.95a18,18,0,0,0-.41,1.91,7.8,7.8,0,0,0-.09.9,2.84,2.84,0,0,0,.06.75.65.65,0,0,0,.16.34l0,0,.14.08.39.16c.58.22,1.25.39,1.92.6a17.92,17.92,0,0,1,2.05.75,5.53,5.53,0,0,1,2,1.4c.25.31.43.58.64.86l.61.81c.2.26.41.51.63.74a3.66,3.66,0,0,0,.67.58.81.81,0,0,0,.61.17,1.12,1.12,0,0,0,.59-.51,4.75,4.75,0,0,0,.44-.89c.13-.32.23-.65.34-1A5.93,5.93,0,0,1,82.83,59.62ZM95.61,50.7a2.19,2.19,0,1,1-.88-2.52A1.92,1.92,0,0,1,95.61,50.7Z"/></g></svg>
<svg id="Ceylon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain"><path fill="#34495e" d="M40.42,90.46a15.35,15.35,0,0,1-2.8-1c-2.05,3.22-6.8,11.37-7.48,18.75h12.3A62.21,62.21,0,0,1,40.42,90.46Z"/><path fill="#34495e" d="M80.28,83.92a91.7,91.7,0,0,0-5.71,17.18c-.53,2.38,1.08,4.75.78,7.11H90.82c-4.08-11.26-5-27.64-7.11-34.19C83.66,73.93,80.34,84,80.28,83.92Z"/><path fill="#34495e" d="M124.32,45.19c-3.52-5-11.55-9.2-13.42-14.91-.48-1.46-.56-4.46.36-5.86s-.54-1-.54-1c-2,.77-2.86-1.43-2.86-1.43-.3-.77.11-3.12-1.61-1.84-3.1,2.33-2.08,8-1.5,10.28a23.76,23.76,0,0,0,5.9,10.34c1,.93,7.3,7.86,6.44,11.41a2.85,2.85,0,0,1-2.15,2.62c-4.59.92-6.08-4.71-6.08-4.71-3.44-14.69-9-19.83-9-19.83A109.06,109.06,0,0,0,73,32.62c-34.37-1.29-60.23,9.27-60.23,9.27-7.56,10.85-12,31-12,31s0,.1.07.11a.27.27,0,0,0,.26-.13,63.4,63.4,0,0,1,9.57-9.66c-.72,28,5.62,45,5.62,45h12C29.14,98.12,37.06,87,37.06,87c4.46,3.38,14.54,2.38,14.54,2.38C53.38,96.12,57,108.2,57,108.2H71.46a91.43,91.43,0,0,1,7.87-26.64S82.91,73.44,83,71c.23-4.25,4.25-5.51,6.43-5.51s12.1,5.54,19.51,5.17c12.91-.65,18-6.62,18.25-13.43C127.39,52.55,126.29,48,124.32,45.19ZM82.83,59.62a2.23,2.23,0,0,1-.27.54,1.48,1.48,0,0,1-.51.47,1.39,1.39,0,0,1-.73.16,2.16,2.16,0,0,1-.66-.15,6.29,6.29,0,0,1-1.88-1.32c-.27-.25-.52-.51-.76-.76l-.7-.73A4.47,4.47,0,0,0,75.84,57c-.59-.21-1.23-.38-1.9-.54s-1.34-.33-2.07-.57c-.18-.06-.37-.13-.58-.23L71,55.55a2.44,2.44,0,0,1-.38-.27,2.49,2.49,0,0,1-.56-.7,3.05,3.05,0,0,1-.28-.74,4.93,4.93,0,0,1-.1-1.32,8.71,8.71,0,0,1,.13-1.16,17,17,0,0,1,.55-2.13q.33-1,.73-2c.13-.33.26-.65.41-1a10.66,10.66,0,0,1,.52-1A11.25,11.25,0,0,1,74.94,42a12.89,12.89,0,0,1,1.81-1.14,10.3,10.3,0,0,1,2-.8,18.29,18.29,0,0,0-3.08,2.71A12.3,12.3,0,0,0,73.48,46a8.65,8.65,0,0,0-.34.89l-.31,1c-.2.65-.4,1.3-.56,1.95a18,18,0,0,0-.41,1.91,7.8,7.8,0,0,0-.09.9,2.84,2.84,0,0,0,.06.75.65.65,0,0,0,.16.34l0,0,.14.08.39.16c.58.22,1.25.39,1.92.6a17.92,17.92,0,0,1,2.05.75,5.53,5.53,0,0,1,2,1.4c.25.31.43.58.64.86l.61.81c.2.26.41.51.63.74a3.66,3.66,0,0,0,.67.58.81.81,0,0,0,.61.17,1.12,1.12,0,0,0,.59-.51,4.75,4.75,0,0,0,.44-.89c.13-.32.23-.65.34-1A5.93,5.93,0,0,1,82.83,59.62ZM95.61,50.7a2.19,2.19,0,1,1-.88-2.52A1.92,1.92,0,0,1,95.61,50.7Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1 +1 @@
<svg id="CouchDB" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#444;}.cls-2{fill:#e42528;}</style></defs><title>Artboard 13</title><g id="original-wordmark"><path id="Shape" class="cls-1" d="M57.9,63.22c-3.19,0-4.71,2.2-4.71,5.56s1.52,5.55,4.71,5.55,4.64-2.26,4.64-5.55S61.08,63.22,57.9,63.22Zm0,9.63c-2.1,0-2.74-1.68-2.74-4.07,0-2.59.7-4.07,2.74-4.07s2.73,1.48,2.73,4.07C60.63,71.17,59.92,72.85,57.9,72.85Z"/><path id="Shape-2" data-name="Shape" class="cls-1" d="M73.92,63.35H72v8.53c-.25.19-.51.32-.82.51a4.8,4.8,0,0,1-2.1.52c-1.53,0-2-1-2-3.36V63.42H65.21v6.2c0,3.29,1.09,4.78,3.44,4.78a5,5,0,0,0,2.67-.71,4.06,4.06,0,0,0,1-.71l.25,1.35,1.4-.13V63.35Z"/><path id="Shape-3" data-name="Shape" class="cls-1" d="M76.6,68.84c0,4.07,2.29,5.49,4.51,5.49a9.53,9.53,0,0,0,2.17-.26,8,8,0,0,0,.82-.26l.2-1.48c-.26.06-.58.19-.9.26a8.58,8.58,0,0,1-2,.26c-1.85,0-2.87-1.23-2.87-4s1-4.13,2.87-4.13a8.58,8.58,0,0,1,2,.26c.32.06.58.19.9.26l-.13-1.43a3,3,0,0,0-.83-.25,8.94,8.94,0,0,0-2.16-.26C78.9,63.22,76.6,64.51,76.6,68.84Z"/><path id="Shape-4" data-name="Shape" class="cls-1" d="M86.78,74.33H88.7V66a7.93,7.93,0,0,1,3-1.1c1.27,0,1.91.71,1.91,3.55v5.88h1.91v-6c0-3.49-1-4.85-3.31-4.85a5.18,5.18,0,0,0-3.56,1.23V59.28l-1.91.2V74.33Z"/><path id="Shape-5" data-name="Shape" class="cls-1" d="M108,60.51a7.33,7.33,0,0,0-4.71-1.23H99v15h4.7c5.16,0,6.37-3.1,6.37-7.82C110.08,63.22,109.24,61.54,108,60.51Zm-4.9,12.34H101v-12h2.8c3.43,0,4.39,1.88,4.39,5.75C108.17,71.43,107.09,72.85,103.08,72.85Z"/><path id="Shape-6" data-name="Shape" class="cls-1" d="M121.59,66.71a5.1,5.1,0,0,0-1.66-.52,2.93,2.93,0,0,0,2.61-3c0-2.84-1.4-3.94-5.22-3.94h-4.07V74.27h4.84c3.43,0,5.15-1.36,5.15-4.33A3.5,3.5,0,0,0,121.59,66.71Zm-6.49-5.88h2c2.61,0,3.63.46,3.63,2.33,0,1.61-.83,2.52-3.19,2.52H115.1V60.83Zm2.48,12H115.1V67h2.48c2.61,0,3.82.65,3.82,3S120.13,72.85,117.59,72.85Z"/><path id="Shape-7" data-name="Shape" class="cls-1" d="M46.94,74.33A15.48,15.48,0,0,0,49.88,74,9.12,9.12,0,0,1,51,73.69l.19-1.62-1.14.39a11.54,11.54,0,0,1-2.86.39c-2.74,0-4.08-1.81-4.08-6.27,0-4.65,1.59-6.13,4.27-6.13a14.42,14.42,0,0,1,2.73.32c.45.06.77.26,1.15.32l-.19-1.68c-.32-.13-.7-.19-1.08-.32a16.12,16.12,0,0,0-2.87-.32c-3.5,0-6.11,1.87-6.11,7.68,0,3,.64,5,1.72,6.2A5.29,5.29,0,0,0,46.94,74.33Z"/><path id="Shape-8" data-name="Shape" class="cls-2" d="M30,67.42a1.82,1.82,0,0,1-2,2H12.52a1.76,1.76,0,0,1-2-2,1.82,1.82,0,0,1,2-2H28.11A1.77,1.77,0,0,1,30,67.42Zm-1.91,3H12.52a1.77,1.77,0,0,0-2,2,1.82,1.82,0,0,0,2,2H28.11a1.77,1.77,0,0,0,2-2C30,71,29.39,70.39,28.11,70.39Zm4.84-10.91h0a1.74,1.74,0,0,0-2,1.93V72.33a1.82,1.82,0,0,0,2,2h0c1.91-.06,2.93-2,2.93-5.94V63.48C35.88,60.83,34.86,59.54,32.95,59.48Zm-25.26,0h0c-1.91.06-2.93,1.35-2.93,4v4.91c0,3.94,1,5.88,2.93,5.94h0a1.76,1.76,0,0,0,2-2V61.48A1.85,1.85,0,0,0,7.69,59.48Zm25.26-1c0-3.3-1.72-4.85-4.84-4.91H12.52c-3.18.06-4.83,1.68-4.83,4.91h0a2.63,2.63,0,0,1,2.92,3,2.64,2.64,0,0,0,2.93,3H27.16a2.64,2.64,0,0,0,2.93-3c-.07-2,1-2.91,2.86-3Z"/></g></svg>
<svg id="CouchDB" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original-wordmark"><path id="Shape" fill="#444" d="M57.9,63.22c-3.19,0-4.71,2.2-4.71,5.56s1.52,5.55,4.71,5.55,4.64-2.26,4.64-5.55S61.08,63.22,57.9,63.22Zm0,9.63c-2.1,0-2.74-1.68-2.74-4.07,0-2.59.7-4.07,2.74-4.07s2.73,1.48,2.73,4.07C60.63,71.17,59.92,72.85,57.9,72.85Z"/><path id="Shape-2" data-name="Shape" fill="#444" d="M73.92,63.35H72v8.53c-.25.19-.51.32-.82.51a4.8,4.8,0,0,1-2.1.52c-1.53,0-2-1-2-3.36V63.42H65.21v6.2c0,3.29,1.09,4.78,3.44,4.78a5,5,0,0,0,2.67-.71,4.06,4.06,0,0,0,1-.71l.25,1.35,1.4-.13V63.35Z"/><path id="Shape-3" data-name="Shape" fill="#444" d="M76.6,68.84c0,4.07,2.29,5.49,4.51,5.49a9.53,9.53,0,0,0,2.17-.26,8,8,0,0,0,.82-.26l.2-1.48c-.26.06-.58.19-.9.26a8.58,8.58,0,0,1-2,.26c-1.85,0-2.87-1.23-2.87-4s1-4.13,2.87-4.13a8.58,8.58,0,0,1,2,.26c.32.06.58.19.9.26l-.13-1.43a3,3,0,0,0-.83-.25,8.94,8.94,0,0,0-2.16-.26C78.9,63.22,76.6,64.51,76.6,68.84Z"/><path id="Shape-4" data-name="Shape" fill="#444" d="M86.78,74.33H88.7V66a7.93,7.93,0,0,1,3-1.1c1.27,0,1.91.71,1.91,3.55v5.88h1.91v-6c0-3.49-1-4.85-3.31-4.85a5.18,5.18,0,0,0-3.56,1.23V59.28l-1.91.2V74.33Z"/><path id="Shape-5" data-name="Shape" fill="#444" d="M108,60.51a7.33,7.33,0,0,0-4.71-1.23H99v15h4.7c5.16,0,6.37-3.1,6.37-7.82C110.08,63.22,109.24,61.54,108,60.51Zm-4.9,12.34H101v-12h2.8c3.43,0,4.39,1.88,4.39,5.75C108.17,71.43,107.09,72.85,103.08,72.85Z"/><path id="Shape-6" data-name="Shape" fill="#444" d="M121.59,66.71a5.1,5.1,0,0,0-1.66-.52,2.93,2.93,0,0,0,2.61-3c0-2.84-1.4-3.94-5.22-3.94h-4.07V74.27h4.84c3.43,0,5.15-1.36,5.15-4.33A3.5,3.5,0,0,0,121.59,66.71Zm-6.49-5.88h2c2.61,0,3.63.46,3.63,2.33,0,1.61-.83,2.52-3.19,2.52H115.1V60.83Zm2.48,12H115.1V67h2.48c2.61,0,3.82.65,3.82,3S120.13,72.85,117.59,72.85Z"/><path id="Shape-7" data-name="Shape" fill="#444" d="M46.94,74.33A15.48,15.48,0,0,0,49.88,74,9.12,9.12,0,0,1,51,73.69l.19-1.62-1.14.39a11.54,11.54,0,0,1-2.86.39c-2.74,0-4.08-1.81-4.08-6.27,0-4.65,1.59-6.13,4.27-6.13a14.42,14.42,0,0,1,2.73.32c.45.06.77.26,1.15.32l-.19-1.68c-.32-.13-.7-.19-1.08-.32a16.12,16.12,0,0,0-2.87-.32c-3.5,0-6.11,1.87-6.11,7.68,0,3,.64,5,1.72,6.2A5.29,5.29,0,0,0,46.94,74.33Z"/><path id="Shape-8" data-name="Shape" fill="#e42528" d="M30,67.42a1.82,1.82,0,0,1-2,2H12.52a1.76,1.76,0,0,1-2-2,1.82,1.82,0,0,1,2-2H28.11A1.77,1.77,0,0,1,30,67.42Zm-1.91,3H12.52a1.77,1.77,0,0,0-2,2,1.82,1.82,0,0,0,2,2H28.11a1.77,1.77,0,0,0,2-2C30,71,29.39,70.39,28.11,70.39Zm4.84-10.91h0a1.74,1.74,0,0,0-2,1.93V72.33a1.82,1.82,0,0,0,2,2h0c1.91-.06,2.93-2,2.93-5.94V63.48C35.88,60.83,34.86,59.54,32.95,59.48Zm-25.26,0h0c-1.91.06-2.93,1.35-2.93,4v4.91c0,3.94,1,5.88,2.93,5.94h0a1.76,1.76,0,0,0,2-2V61.48A1.85,1.85,0,0,0,7.69,59.48Zm25.26-1c0-3.3-1.72-4.85-4.84-4.91H12.52c-3.18.06-4.83,1.68-4.83,4.91h0a2.63,2.63,0,0,1,2.92,3,2.64,2.64,0,0,0,2.93,3H27.16a2.64,2.64,0,0,0,2.93-3c-.07-2,1-2.91,2.86-3Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1 +1 @@
<svg id="CouchDB" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#e42528;}</style></defs><title>Artboard 12</title><g id="original"><path class="cls-1" d="M101.4,77.2c0,5-2.7,7.5-7.6,7.7H33.9c-4.9,0-7.6-2.5-7.6-7.7,0-5,2.7-7.5,7.6-7.7H94.1C99,69.7,101.4,72.2,101.4,77.2ZM94.1,88.7H33.9c-4.9,0-7.6,2.4-7.6,7.7,0,5,2.7,7.4,7.6,7.7H94.1c4.9,0,7.6-2.5,7.6-7.7C101.4,91.1,99,88.7,94.1,88.7Zm18.6-42.1h0c-4.9,0-7.6,2.5-7.6,7.4V96.1c0,5,2.7,7.5,7.6,7.7h0c7.4-.2,11.3-7.7,11.3-22.9V62C124,51.8,120.1,46.8,112.7,46.6Zm-97.4,0h0C7.9,46.8,4,51.8,4,62V80.9c0,15.2,3.9,22.7,11.3,22.9h0c4.9,0,7.6-2.4,7.6-7.7V54.3C22.7,49.3,20.2,46.8,15.3,46.6Zm97.4-3.8c0-12.7-6.6-18.7-18.6-18.9H33.9c-12.2.2-18.6,6.5-18.6,18.9h0c7.4,0,11.3,4,11.3,11.5s3.9,11.4,11.3,11.4H90.4c7.3,0,11.3-3.9,11.3-11.4-.3-7.7,3.9-11.2,11-11.5Z"/></g></svg>
<svg id="CouchDB" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original"><path fill="#e42528" d="M101.4,77.2c0,5-2.7,7.5-7.6,7.7H33.9c-4.9,0-7.6-2.5-7.6-7.7,0-5,2.7-7.5,7.6-7.7H94.1C99,69.7,101.4,72.2,101.4,77.2ZM94.1,88.7H33.9c-4.9,0-7.6,2.4-7.6,7.7,0,5,2.7,7.4,7.6,7.7H94.1c4.9,0,7.6-2.5,7.6-7.7C101.4,91.1,99,88.7,94.1,88.7Zm18.6-42.1h0c-4.9,0-7.6,2.5-7.6,7.4V96.1c0,5,2.7,7.5,7.6,7.7h0c7.4-.2,11.3-7.7,11.3-22.9V62C124,51.8,120.1,46.8,112.7,46.6Zm-97.4,0h0C7.9,46.8,4,51.8,4,62V80.9c0,15.2,3.9,22.7,11.3,22.9h0c4.9,0,7.6-2.4,7.6-7.7V54.3C22.7,49.3,20.2,46.8,15.3,46.6Zm97.4-3.8c0-12.7-6.6-18.7-18.6-18.9H33.9c-12.2.2-18.6,6.5-18.6,18.9h0c7.4,0,11.3,4,11.3,11.5s3.9,11.4,11.3,11.4H90.4c7.3,0,11.3-3.9,11.3-11.4-.3-7.7,3.9-11.2,11-11.5Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 844 B

After

Width:  |  Height:  |  Size: 770 B

View File

@ -1 +1 @@
<svg id="CouchDB" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#444;}</style></defs><title>Artboard 15</title><g id="plain-wordmark"><path id="Shape" class="cls-1" d="M57.9,63.22c-3.19,0-4.71,2.2-4.71,5.56s1.52,5.55,4.71,5.55,4.64-2.26,4.64-5.55S61.08,63.22,57.9,63.22Zm0,9.63c-2.1,0-2.74-1.68-2.74-4.07,0-2.59.7-4.07,2.74-4.07s2.73,1.48,2.73,4.07C60.63,71.17,59.92,72.85,57.9,72.85Z"/><path id="Shape-2" data-name="Shape" class="cls-1" d="M73.92,63.35H72v8.53c-.25.19-.51.32-.82.51a4.8,4.8,0,0,1-2.1.52c-1.53,0-2-1-2-3.36V63.42H65.21v6.2c0,3.29,1.09,4.78,3.44,4.78a5,5,0,0,0,2.67-.71,4.06,4.06,0,0,0,1-.71l.25,1.35,1.4-.13V63.35Z"/><path id="Shape-3" data-name="Shape" class="cls-1" d="M76.6,68.84c0,4.07,2.29,5.49,4.51,5.49a9.53,9.53,0,0,0,2.17-.26,8,8,0,0,0,.82-.26l.2-1.48c-.26.06-.58.19-.9.26a8.58,8.58,0,0,1-2,.26c-1.85,0-2.87-1.23-2.87-4s1-4.13,2.87-4.13a8.58,8.58,0,0,1,2,.26c.32.06.58.19.9.26l-.13-1.43a3,3,0,0,0-.83-.25,8.94,8.94,0,0,0-2.16-.26C78.9,63.22,76.6,64.51,76.6,68.84Z"/><path id="Shape-4" data-name="Shape" class="cls-1" d="M86.78,74.33H88.7V66a7.93,7.93,0,0,1,3-1.1c1.27,0,1.91.71,1.91,3.55v5.88h1.91v-6c0-3.49-1-4.85-3.31-4.85a5.18,5.18,0,0,0-3.56,1.23V59.28l-1.91.2V74.33Z"/><path id="Shape-5" data-name="Shape" class="cls-1" d="M108,60.51a7.33,7.33,0,0,0-4.71-1.23H99v15h4.7c5.16,0,6.37-3.1,6.37-7.82C110.08,63.22,109.24,61.54,108,60.51Zm-4.9,12.34H101v-12h2.8c3.43,0,4.39,1.88,4.39,5.75C108.17,71.43,107.09,72.85,103.08,72.85Z"/><path id="Shape-6" data-name="Shape" class="cls-1" d="M121.59,66.71a5.1,5.1,0,0,0-1.66-.52,2.93,2.93,0,0,0,2.61-3c0-2.84-1.4-3.94-5.22-3.94h-4.07V74.27h4.84c3.43,0,5.15-1.36,5.15-4.33A3.5,3.5,0,0,0,121.59,66.71Zm-6.49-5.88h2c2.61,0,3.63.46,3.63,2.33,0,1.61-.83,2.52-3.19,2.52H115.1V60.83Zm2.48,12H115.1V67h2.48c2.61,0,3.82.65,3.82,3S120.13,72.85,117.59,72.85Z"/><path id="Shape-7" data-name="Shape" class="cls-1" d="M46.94,74.33A15.48,15.48,0,0,0,49.88,74,9.12,9.12,0,0,1,51,73.69l.19-1.62-1.14.39a11.54,11.54,0,0,1-2.86.39c-2.74,0-4.08-1.81-4.08-6.27,0-4.65,1.59-6.13,4.27-6.13a14.42,14.42,0,0,1,2.73.32c.45.06.77.26,1.15.32l-.19-1.68c-.32-.13-.7-.19-1.08-.32a16.12,16.12,0,0,0-2.87-.32c-3.5,0-6.11,1.87-6.11,7.68,0,3,.64,5,1.72,6.2A5.29,5.29,0,0,0,46.94,74.33Z"/><path id="Shape-8" data-name="Shape" class="cls-1" d="M30,67.42a1.82,1.82,0,0,1-2,2H12.52a1.76,1.76,0,0,1-2-2,1.82,1.82,0,0,1,2-2H28.11A1.77,1.77,0,0,1,30,67.42Zm-1.91,3H12.52a1.77,1.77,0,0,0-2,2,1.82,1.82,0,0,0,2,2H28.11a1.77,1.77,0,0,0,2-2C30,71,29.39,70.39,28.11,70.39Zm4.84-10.91h0a1.74,1.74,0,0,0-2,1.93V72.33a1.82,1.82,0,0,0,2,2h0c1.91-.06,2.93-2,2.93-5.94V63.48C35.88,60.83,34.86,59.54,32.95,59.48Zm-25.26,0h0c-1.91.06-2.93,1.35-2.93,4v4.91c0,3.94,1,5.88,2.93,5.94h0a1.76,1.76,0,0,0,2-2V61.48A1.85,1.85,0,0,0,7.69,59.48Zm25.26-1c0-3.3-1.72-4.85-4.84-4.91H12.52c-3.18.06-4.83,1.68-4.83,4.91h0a2.63,2.63,0,0,1,2.92,3,2.64,2.64,0,0,0,2.93,3H27.16a2.64,2.64,0,0,0,2.93-3c-.07-2,1-2.91,2.86-3Z"/></g></svg>
<svg id="CouchDB" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain-wordmark"><path id="Shape" fill="#444" d="M57.9,63.22c-3.19,0-4.71,2.2-4.71,5.56s1.52,5.55,4.71,5.55,4.64-2.26,4.64-5.55S61.08,63.22,57.9,63.22Zm0,9.63c-2.1,0-2.74-1.68-2.74-4.07,0-2.59.7-4.07,2.74-4.07s2.73,1.48,2.73,4.07C60.63,71.17,59.92,72.85,57.9,72.85Z"/><path id="Shape-2" data-name="Shape" fill="#444" d="M73.92,63.35H72v8.53c-.25.19-.51.32-.82.51a4.8,4.8,0,0,1-2.1.52c-1.53,0-2-1-2-3.36V63.42H65.21v6.2c0,3.29,1.09,4.78,3.44,4.78a5,5,0,0,0,2.67-.71,4.06,4.06,0,0,0,1-.71l.25,1.35,1.4-.13V63.35Z"/><path id="Shape-3" data-name="Shape" fill="#444" d="M76.6,68.84c0,4.07,2.29,5.49,4.51,5.49a9.53,9.53,0,0,0,2.17-.26,8,8,0,0,0,.82-.26l.2-1.48c-.26.06-.58.19-.9.26a8.58,8.58,0,0,1-2,.26c-1.85,0-2.87-1.23-2.87-4s1-4.13,2.87-4.13a8.58,8.58,0,0,1,2,.26c.32.06.58.19.9.26l-.13-1.43a3,3,0,0,0-.83-.25,8.94,8.94,0,0,0-2.16-.26C78.9,63.22,76.6,64.51,76.6,68.84Z"/><path id="Shape-4" data-name="Shape" fill="#444" d="M86.78,74.33H88.7V66a7.93,7.93,0,0,1,3-1.1c1.27,0,1.91.71,1.91,3.55v5.88h1.91v-6c0-3.49-1-4.85-3.31-4.85a5.18,5.18,0,0,0-3.56,1.23V59.28l-1.91.2V74.33Z"/><path id="Shape-5" data-name="Shape" fill="#444" d="M108,60.51a7.33,7.33,0,0,0-4.71-1.23H99v15h4.7c5.16,0,6.37-3.1,6.37-7.82C110.08,63.22,109.24,61.54,108,60.51Zm-4.9,12.34H101v-12h2.8c3.43,0,4.39,1.88,4.39,5.75C108.17,71.43,107.09,72.85,103.08,72.85Z"/><path id="Shape-6" data-name="Shape" fill="#444" d="M121.59,66.71a5.1,5.1,0,0,0-1.66-.52,2.93,2.93,0,0,0,2.61-3c0-2.84-1.4-3.94-5.22-3.94h-4.07V74.27h4.84c3.43,0,5.15-1.36,5.15-4.33A3.5,3.5,0,0,0,121.59,66.71Zm-6.49-5.88h2c2.61,0,3.63.46,3.63,2.33,0,1.61-.83,2.52-3.19,2.52H115.1V60.83Zm2.48,12H115.1V67h2.48c2.61,0,3.82.65,3.82,3S120.13,72.85,117.59,72.85Z"/><path id="Shape-7" data-name="Shape" fill="#444" d="M46.94,74.33A15.48,15.48,0,0,0,49.88,74,9.12,9.12,0,0,1,51,73.69l.19-1.62-1.14.39a11.54,11.54,0,0,1-2.86.39c-2.74,0-4.08-1.81-4.08-6.27,0-4.65,1.59-6.13,4.27-6.13a14.42,14.42,0,0,1,2.73.32c.45.06.77.26,1.15.32l-.19-1.68c-.32-.13-.7-.19-1.08-.32a16.12,16.12,0,0,0-2.87-.32c-3.5,0-6.11,1.87-6.11,7.68,0,3,.64,5,1.72,6.2A5.29,5.29,0,0,0,46.94,74.33Z"/><path id="Shape-8" data-name="Shape" fill="#444" d="M30,67.42a1.82,1.82,0,0,1-2,2H12.52a1.76,1.76,0,0,1-2-2,1.82,1.82,0,0,1,2-2H28.11A1.77,1.77,0,0,1,30,67.42Zm-1.91,3H12.52a1.77,1.77,0,0,0-2,2,1.82,1.82,0,0,0,2,2H28.11a1.77,1.77,0,0,0,2-2C30,71,29.39,70.39,28.11,70.39Zm4.84-10.91h0a1.74,1.74,0,0,0-2,1.93V72.33a1.82,1.82,0,0,0,2,2h0c1.91-.06,2.93-2,2.93-5.94V63.48C35.88,60.83,34.86,59.54,32.95,59.48Zm-25.26,0h0c-1.91.06-2.93,1.35-2.93,4v4.91c0,3.94,1,5.88,2.93,5.94h0a1.76,1.76,0,0,0,2-2V61.48A1.85,1.85,0,0,0,7.69,59.48Zm25.26-1c0-3.3-1.72-4.85-4.84-4.91H12.52c-3.18.06-4.83,1.68-4.83,4.91h0a2.63,2.63,0,0,1,2.92,3,2.64,2.64,0,0,0,2.93,3H27.16a2.64,2.64,0,0,0,2.93-3c-.07-2,1-2.91,2.86-3Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1 +1 @@
<svg id="CouchDB" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#444;}</style></defs><title>Artboard 14</title><g id="plain"><path class="cls-1" d="M101.4,77.2c0,5-2.7,7.5-7.6,7.7H33.9c-4.9,0-7.6-2.5-7.6-7.7,0-5,2.7-7.5,7.6-7.7H94.1C99,69.7,101.4,72.2,101.4,77.2ZM94.1,88.7H33.9c-4.9,0-7.6,2.4-7.6,7.7,0,5,2.7,7.4,7.6,7.7H94.1c4.9,0,7.6-2.5,7.6-7.7C101.4,91.1,99,88.7,94.1,88.7Zm18.6-42.1h0c-4.9,0-7.6,2.5-7.6,7.4V96.1c0,5,2.7,7.5,7.6,7.7h0c7.4-.2,11.3-7.7,11.3-22.9V62C124,51.8,120.1,46.8,112.7,46.6Zm-97.4,0h0C7.9,46.8,4,51.8,4,62V80.9c0,15.2,3.9,22.7,11.3,22.9h0c4.9,0,7.6-2.4,7.6-7.7V54.3C22.7,49.3,20.2,46.8,15.3,46.6Zm97.4-3.8c0-12.7-6.6-18.7-18.6-18.9H33.9c-12.2.2-18.6,6.5-18.6,18.9h0c7.4,0,11.3,4,11.3,11.5s3.9,11.4,11.3,11.4H90.4c7.3,0,11.3-3.9,11.3-11.4-.3-7.7,3.9-11.2,11-11.5Z"/></g></svg>
<svg id="CouchDB" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain"><path fill="#444" d="M101.4,77.2c0,5-2.7,7.5-7.6,7.7H33.9c-4.9,0-7.6-2.5-7.6-7.7,0-5,2.7-7.5,7.6-7.7H94.1C99,69.7,101.4,72.2,101.4,77.2ZM94.1,88.7H33.9c-4.9,0-7.6,2.4-7.6,7.7,0,5,2.7,7.4,7.6,7.7H94.1c4.9,0,7.6-2.5,7.6-7.7C101.4,91.1,99,88.7,94.1,88.7Zm18.6-42.1h0c-4.9,0-7.6,2.5-7.6,7.4V96.1c0,5,2.7,7.5,7.6,7.7h0c7.4-.2,11.3-7.7,11.3-22.9V62C124,51.8,120.1,46.8,112.7,46.6Zm-97.4,0h0C7.9,46.8,4,51.8,4,62V80.9c0,15.2,3.9,22.7,11.3,22.9h0c4.9,0,7.6-2.4,7.6-7.7V54.3C22.7,49.3,20.2,46.8,15.3,46.6Zm97.4-3.8c0-12.7-6.6-18.7-18.6-18.9H33.9c-12.2.2-18.6,6.5-18.6,18.9h0c7.4,0,11.3,4,11.3,11.5s3.9,11.4,11.3,11.4H90.4c7.3,0,11.3-3.9,11.3-11.4-.3-7.7,3.9-11.2,11-11.5Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 838 B

After

Width:  |  Height:  |  Size: 764 B

View File

@ -2,11 +2,7 @@
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 362.8 362.8" style="enable-background:new 0 0 362.8 362.8;" xml:space="preserve">
<style type="text/css">
.st0{fill:#00A818;}
</style>
<title>cucumber-plain-wordmark</title>
<path id="Logos" class="st0" d="M315.2,188.5c-3.7,0-7.1,2-8.8,5.3c0-0.8,0.4-1.8,0.4-2.5v-1.5h-7v34.9h7v-20.1
<path id="Logos" fill="#00A818" d="M315.2,188.5c-3.7,0-7.1,2-8.8,5.3c0-0.8,0.4-1.8,0.4-2.5v-1.5h-7v34.9h7v-20.1
c0-5.6,3.1-9.2,8.5-9.2h1.4v-7H315.2L315.2,188.5z M31.8,201.3c-1.8-3.2-5.1-5.2-8.8-5.2c-6.1,0-11,5-11,11.1c0,6.1,4.9,11,11,11
c3.6,0.1,7-1.9,8.8-5l6.4,3.8c-3.4,5.1-9.1,8.2-15.2,8.3c-9.9,0.6-18.3-7-18.9-16.9c-0.6-9.9,7-18.3,16.9-18.9c0.7,0,1.3,0,2,0
c6.2-0.1,11.9,3,15.2,8.3L31.8,201.3L31.8,201.3z M44.3,190.3h7.2v19c-0.2,4.5,3.3,8.3,7.8,8.4c0.1,0,0.3,0,0.4,0

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -2,10 +2,7 @@
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill:#00A818;}
</style>
<path class="st0" d="M92.2,8.3c-1-0.6-2-1.2-3-1.7c-1.1-0.5-2.2-1-3.3-1.5c-0.4-0.1-0.7-0.3-1.1-0.4c-1-0.4-1.9-0.8-2.9-1.1
<path fill="#00A818" d="M92.2,8.3c-1-0.6-2-1.2-3-1.7c-1.1-0.5-2.2-1-3.3-1.5c-0.4-0.1-0.7-0.3-1.1-0.4c-1-0.4-1.9-0.8-2.9-1.1
c-5.4-1.8-11.1-2.7-17.1-2.7C34.3,0.9,9.7,25.6,9.7,56.1c0,26.9,19.2,49.2,44.5,54.2v15.8c32.9-5,62.1-31.2,64.3-65.6
C119.8,39.7,109.5,18.5,92.2,8.3z M51.6,21.6c1.8-0.2,3.8,0.5,5.1,2.1c1,1,1.6,2.3,2.3,3.7c2,4.7,1.3,9.8-1.4,13.5
c-4.7-1-9-4-11-8.7c-0.7-1.3-1.1-3.1-1.1-4.4C45.6,24.4,48.5,21.9,51.6,21.6z M35.1,37.9c0.4,0,0.7,0,1.1,0c1.7,0,3,0.4,4.7,1.1

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1 +1 @@
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#558d6c;}.cls-2{fill:#5aa579;}.cls-3{fill:#60be86;}.cls-4{fill:#65d693;}</style></defs><title>Artboard 13</title><g id="original-wordmark"><polygon class="cls-1" points="12.69 26.57 21.51 102.14 63.98 123.74 63.98 26.57 12.69 26.57"/><polygon class="cls-2" points="63.98 26.57 63.98 26.52 63.98 123.74 64.03 123.78 106.54 102.17 115.31 26.57 63.98 26.57"/><polygon class="cls-3" points="24.78 38.98 30.41 95.48 63.98 111.59 63.98 38.98 24.78 38.98"/><polygon class="cls-4" points="63.98 38.98 63.98 38.98 63.98 111.59 64.03 111.63 97.64 95.45 103.22 38.98 63.98 38.98"/><path class="cls-2" d="M100.15,67.23,71.9,53.79,70.33,53l-1,2L64,65.94V78.88l8-15.7,18.68,8.31-20,9-.89.41-.11,1.36v5.37l.15,2.73,2-1,28.42-13.63c.64-.3.75-1,.75-1.75V69C100.89,68.22,100.79,67.54,100.15,67.23Z"/><path class="cls-1" d="M57,79.82,38.09,71.48l20.27-9,1.4-.6-.12-1.16V52.35L56.8,53.6,27.29,67.23A2,2,0,0,0,26.14,69v5a2,2,0,0,0,1.19,1.75l29.1,13.45L58.2,90l1.05-2L64,78.88V65.94Z"/><path class="cls-1" d="M14.57,20.49v-16h5.51a13.36,13.36,0,0,1,2.85.23,5.42,5.42,0,0,1,2.34,1.15,6.51,6.51,0,0,1,1.89,2.73,10.73,10.73,0,0,1,.63,3.8,11.17,11.17,0,0,1-.43,3.23A7.83,7.83,0,0,1,26.27,18a5.79,5.79,0,0,1-1.46,1.45,5.92,5.92,0,0,1-1.91.8,10.89,10.89,0,0,1-2.57.27Zm2.12-1.89H20.1a8.28,8.28,0,0,0,2.48-.29A3.55,3.55,0,0,0,24,17.48a5,5,0,0,0,1.17-2,9.89,9.89,0,0,0,.42-3.08,7.44,7.44,0,0,0-.82-3.86,4.14,4.14,0,0,0-2-1.8A8.27,8.27,0,0,0,20,6.39H16.68Z"/><path class="cls-1" d="M30.74,20.49v-16H42.3V6.39H32.86v4.9H41.7v1.88H32.86v5.44h9.81v1.89Z"/><path class="cls-1" d="M50.16,20.49,44,4.51h2.29l4.15,11.61q.5,1.4.84,2.62.37-1.31.86-2.62L56.43,4.51h2.16l-6.26,16Z"/><path class="cls-1" d="M60.85,20.49v-16H63v16Z"/><path class="cls-1" d="M78.1,14.89l2.12.53a7.12,7.12,0,0,1-2.39,4,6.6,6.6,0,0,1-4.23,1.37,7.59,7.59,0,0,1-4.2-1.05,6.57,6.57,0,0,1-2.46-3,10.88,10.88,0,0,1-.85-4.29A9.42,9.42,0,0,1,67,8,6.54,6.54,0,0,1,69.76,5.2a7.93,7.93,0,0,1,3.88-1,6.56,6.56,0,0,1,4,1.22,6.34,6.34,0,0,1,2.28,3.44l-2.08.49a4.94,4.94,0,0,0-1.61-2.54A4.3,4.3,0,0,0,73.59,6a5.17,5.17,0,0,0-3.08.88A4.66,4.66,0,0,0,68.77,9.3a9.55,9.55,0,0,0-.5,3.07,9.76,9.76,0,0,0,.59,3.56,4.43,4.43,0,0,0,1.85,2.27,5.18,5.18,0,0,0,2.72.75,4.55,4.55,0,0,0,3-1A5.24,5.24,0,0,0,78.1,14.89Z"/><path class="cls-1" d="M82.18,12.71a8.69,8.69,0,0,1,2.14-6.23,7.27,7.27,0,0,1,5.52-2.25,7.66,7.66,0,0,1,4,1.06,6.91,6.91,0,0,1,2.71,2.95,9.58,9.58,0,0,1,.93,4.29,9.42,9.42,0,0,1-1,4.35,6.7,6.7,0,0,1-2.78,2.91,7.94,7.94,0,0,1-3.88,1,7.56,7.56,0,0,1-4-1.09,7,7,0,0,1-2.69-3A9,9,0,0,1,82.18,12.71Zm2.18,0a6.4,6.4,0,0,0,1.55,4.55,5.42,5.42,0,0,0,7.83,0,6.79,6.79,0,0,0,1.54-4.77,8.19,8.19,0,0,0-.66-3.41A5.07,5.07,0,0,0,92.7,6.84,5.23,5.23,0,0,0,89.85,6,5.41,5.41,0,0,0,86,7.59Q84.36,9.13,84.36,12.74Z"/><path class="cls-1" d="M100.18,20.49v-16h2.17l8.4,12.55V4.51h2v16H110.6L102.2,7.93V20.49Z"/></g></svg>
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original-wordmark"><polygon fill="#558d6c" points="12.69 26.57 21.51 102.14 63.98 123.74 63.98 26.57 12.69 26.57"/><polygon fill="#5aa579" points="63.98 26.57 63.98 26.52 63.98 123.74 64.03 123.78 106.54 102.17 115.31 26.57 63.98 26.57"/><polygon fill="#60be86" points="24.78 38.98 30.41 95.48 63.98 111.59 63.98 38.98 24.78 38.98"/><polygon fill="#65d693" points="63.98 38.98 63.98 38.98 63.98 111.59 64.03 111.63 97.64 95.45 103.22 38.98 63.98 38.98"/><path fill="#5aa579" d="M100.15,67.23,71.9,53.79,70.33,53l-1,2L64,65.94V78.88l8-15.7,18.68,8.31-20,9-.89.41-.11,1.36v5.37l.15,2.73,2-1,28.42-13.63c.64-.3.75-1,.75-1.75V69C100.89,68.22,100.79,67.54,100.15,67.23Z"/><path fill="#558d6c" d="M57,79.82,38.09,71.48l20.27-9,1.4-.6-.12-1.16V52.35L56.8,53.6,27.29,67.23A2,2,0,0,0,26.14,69v5a2,2,0,0,0,1.19,1.75l29.1,13.45L58.2,90l1.05-2L64,78.88V65.94Z"/><path fill="#558d6c" d="M14.57,20.49v-16h5.51a13.36,13.36,0,0,1,2.85.23,5.42,5.42,0,0,1,2.34,1.15,6.51,6.51,0,0,1,1.89,2.73,10.73,10.73,0,0,1,.63,3.8,11.17,11.17,0,0,1-.43,3.23A7.83,7.83,0,0,1,26.27,18a5.79,5.79,0,0,1-1.46,1.45,5.92,5.92,0,0,1-1.91.8,10.89,10.89,0,0,1-2.57.27Zm2.12-1.89H20.1a8.28,8.28,0,0,0,2.48-.29A3.55,3.55,0,0,0,24,17.48a5,5,0,0,0,1.17-2,9.89,9.89,0,0,0,.42-3.08,7.44,7.44,0,0,0-.82-3.86,4.14,4.14,0,0,0-2-1.8A8.27,8.27,0,0,0,20,6.39H16.68Z"/><path fill="#558d6c" d="M30.74,20.49v-16H42.3V6.39H32.86v4.9H41.7v1.88H32.86v5.44h9.81v1.89Z"/><path fill="#558d6c" d="M50.16,20.49,44,4.51h2.29l4.15,11.61q.5,1.4.84,2.62.37-1.31.86-2.62L56.43,4.51h2.16l-6.26,16Z"/><path fill="#558d6c" d="M60.85,20.49v-16H63v16Z"/><path fill="#558d6c" d="M78.1,14.89l2.12.53a7.12,7.12,0,0,1-2.39,4,6.6,6.6,0,0,1-4.23,1.37,7.59,7.59,0,0,1-4.2-1.05,6.57,6.57,0,0,1-2.46-3,10.88,10.88,0,0,1-.85-4.29A9.42,9.42,0,0,1,67,8,6.54,6.54,0,0,1,69.76,5.2a7.93,7.93,0,0,1,3.88-1,6.56,6.56,0,0,1,4,1.22,6.34,6.34,0,0,1,2.28,3.44l-2.08.49a4.94,4.94,0,0,0-1.61-2.54A4.3,4.3,0,0,0,73.59,6a5.17,5.17,0,0,0-3.08.88A4.66,4.66,0,0,0,68.77,9.3a9.55,9.55,0,0,0-.5,3.07,9.76,9.76,0,0,0,.59,3.56,4.43,4.43,0,0,0,1.85,2.27,5.18,5.18,0,0,0,2.72.75,4.55,4.55,0,0,0,3-1A5.24,5.24,0,0,0,78.1,14.89Z"/><path fill="#558d6c" d="M82.18,12.71a8.69,8.69,0,0,1,2.14-6.23,7.27,7.27,0,0,1,5.52-2.25,7.66,7.66,0,0,1,4,1.06,6.91,6.91,0,0,1,2.71,2.95,9.58,9.58,0,0,1,.93,4.29,9.42,9.42,0,0,1-1,4.35,6.7,6.7,0,0,1-2.78,2.91,7.94,7.94,0,0,1-3.88,1,7.56,7.56,0,0,1-4-1.09,7,7,0,0,1-2.69-3A9,9,0,0,1,82.18,12.71Zm2.18,0a6.4,6.4,0,0,0,1.55,4.55,5.42,5.42,0,0,0,7.83,0,6.79,6.79,0,0,0,1.54-4.77,8.19,8.19,0,0,0-.66-3.41A5.07,5.07,0,0,0,92.7,6.84,5.23,5.23,0,0,0,89.85,6,5.41,5.41,0,0,0,86,7.59Q84.36,9.13,84.36,12.74Z"/><path fill="#558d6c" d="M100.18,20.49v-16h2.17l8.4,12.55V4.51h2v16H110.6L102.2,7.93V20.49Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +1 @@
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#558d6c;}.cls-2{fill:#5aa579;}.cls-3{fill:#60be86;}.cls-4{fill:#65d693;}</style></defs><title>Artboard 15</title><g id="original"><polygon class="cls-1" points="4.92 8 15.09 95.05 64 119.95 64 8 4.92 8"/><polygon class="cls-2" points="64 8 64 8.02 64 119.95 64.05 120 112.98 95.09 123.08 8 64 8"/><polygon class="cls-3" points="18.84 22.11 25.33 87.29 64 105.97 64 22.11 18.84 22.11"/><polygon class="cls-4" points="64 22.11 64 22.11 64 105.97 64.05 106.02 102.74 87.26 109.16 22.11 64 22.11"/><path class="cls-2" d="M105.72,54.9,73.14,39.42l-1.83-.9-1.12,2.28L64,53.41V68.3l9.15-18.08,21.5,9.57L71.56,70.16l-.87.47,0,1.56v6.18l0,3.14L73,80.38l32.78-15.69a2,2,0,0,0,.92-2V56.91A2,2,0,0,0,105.72,54.9Z"/><path class="cls-1" d="M56,69.39l-21.79-9.6L57.51,49.42l1.76-.7,0-1.33V37.76L55.87,39.2,21.94,54.89a2.26,2.26,0,0,0-1.28,2v5.77a2.22,2.22,0,0,0,1.24,2L55.34,80.18l2,.9,1.21-2.26L64,68.3V53.41Z"/></g></svg>
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original"><polygon fill="#558d6c" points="4.92 8 15.09 95.05 64 119.95 64 8 4.92 8"/><polygon fill="#5aa579" points="64 8 64 8.02 64 119.95 64.05 120 112.98 95.09 123.08 8 64 8"/><polygon fill="#60be86" points="18.84 22.11 25.33 87.29 64 105.97 64 22.11 18.84 22.11"/><polygon fill="#65d693" points="64 22.11 64 22.11 64 105.97 64.05 106.02 102.74 87.26 109.16 22.11 64 22.11"/><path fill="#5aa579" d="M105.72,54.9,73.14,39.42l-1.83-.9-1.12,2.28L64,53.41V68.3l9.15-18.08,21.5,9.57L71.56,70.16l-.87.47,0,1.56v6.18l0,3.14L73,80.38l32.78-15.69a2,2,0,0,0,.92-2V56.91A2,2,0,0,0,105.72,54.9Z"/><path fill="#558d6c" d="M56,69.39l-21.79-9.6L57.51,49.42l1.76-.7,0-1.33V37.76L55.87,39.2,21.94,54.89a2.26,2.26,0,0,0-1.28,2v5.77a2.22,2.22,0,0,0,1.24,2L55.34,80.18l2,.9,1.21-2.26L64,68.3V53.41Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1008 B

After

Width:  |  Height:  |  Size: 876 B

View File

@ -1 +1 @@
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#60be86;}</style></defs><title>Artboard 12</title><g id="plain-wordmark"><path id="plain" class="cls-1" d="M64,24.2H11.6l9,77.23L64,123.55l.05,0,43.41-22.12,9-77.27Zm37.84,48.53c0,.78,0,1.48-.68,1.79l-29,13.92-2.14,1-.24-2.79V81.18L70,79.79l1-.41,20.5-9.19L72.43,61.7l-8.12,16-4.82,9.32-1.08,2-1.82-.8L26.8,74.53a2.14,2.14,0,0,1-1.29-1.79V67.62a2.11,2.11,0,0,1,1.25-1.79L56.86,51.92l2.84-1.28v8.55l.21,1.18L58.53,61,37.85,70.17l19.33,8.52,7.12-14.17L69.8,53.32l1-2,1.6.8,28.77,13.73c.65.31.67,1,.67,1.79Z"/><path class="cls-1" d="M14.29,20.55V4.69h5.57a13.76,13.76,0,0,1,2.88.23A5.53,5.53,0,0,1,25.1,6.06,6.45,6.45,0,0,1,27,8.77a10.45,10.45,0,0,1,.63,3.77,10.87,10.87,0,0,1-.43,3.2A7.7,7.7,0,0,1,26.12,18a5.8,5.8,0,0,1-1.47,1.44,6,6,0,0,1-1.93.79,11.22,11.22,0,0,1-2.6.27Zm2.14-1.87h3.45a8.53,8.53,0,0,0,2.51-.29,3.6,3.6,0,0,0,1.45-.82,5,5,0,0,0,1.19-2,9.63,9.63,0,0,0,.42-3.06,7.26,7.26,0,0,0-.83-3.82,4.16,4.16,0,0,0-2-1.79,8.52,8.52,0,0,0-2.77-.32h-3.4Z"/><path class="cls-1" d="M30.64,20.55V4.69H42.33V6.56H32.78v4.86h8.94v1.86H32.78v5.4H42.7v1.87Z"/><path class="cls-1" d="M50.28,20.55,44,4.69h2.32l4.2,11.52q.51,1.38.85,2.6.37-1.3.87-2.6L56.62,4.69H58.8L52.47,20.55Z"/><path class="cls-1" d="M61.08,20.55V4.69h2.14V20.55Z"/><path class="cls-1" d="M78.52,15l2.14.53a7,7,0,0,1-2.42,3.94A6.76,6.76,0,0,1,74,20.82a7.79,7.79,0,0,1-4.25-1,6.54,6.54,0,0,1-2.49-3,10.61,10.61,0,0,1-.85-4.25,9.19,9.19,0,0,1,1-4.32,6.54,6.54,0,0,1,2.75-2.8,8.15,8.15,0,0,1,3.92-1,6.72,6.72,0,0,1,4.08,1.21A6.28,6.28,0,0,1,80.39,9l-2.11.49A4.89,4.89,0,0,0,76.65,7,4.41,4.41,0,0,0,74,6.22a5.3,5.3,0,0,0-3.11.88,4.63,4.63,0,0,0-1.76,2.35,9.31,9.31,0,0,0-.51,3,9.51,9.51,0,0,0,.6,3.53A4.41,4.41,0,0,0,71,18.28a5.32,5.32,0,0,0,2.75.75,4.66,4.66,0,0,0,3-1A5.18,5.18,0,0,0,78.52,15Z"/><path class="cls-1" d="M82.65,12.83a8.51,8.51,0,0,1,2.16-6.18,7.42,7.42,0,0,1,5.58-2.23,7.86,7.86,0,0,1,4,1,6.9,6.9,0,0,1,2.74,2.93,9.35,9.35,0,0,1,.94,4.26,9.19,9.19,0,0,1-1,4.31,6.7,6.7,0,0,1-2.81,2.88,8.15,8.15,0,0,1-3.93,1,7.76,7.76,0,0,1-4.08-1.08,7,7,0,0,1-2.72-3A8.81,8.81,0,0,1,82.65,12.83Zm2.21,0a6.28,6.28,0,0,0,1.57,4.51,5.56,5.56,0,0,0,7.92,0,6.65,6.65,0,0,0,1.56-4.73,8,8,0,0,0-.67-3.38,5.06,5.06,0,0,0-2-2.24,5.37,5.37,0,0,0-2.88-.79,5.53,5.53,0,0,0-3.91,1.53Q84.85,9.28,84.85,12.86Z"/><path class="cls-1" d="M100.84,20.55V4.69H103l8.49,12.45V4.69h2.05V20.55h-2.19L102.89,8.09V20.55Z"/></g></svg>
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain-wordmark"><path id="plain" fill="#60be86" d="M64,24.2H11.6l9,77.23L64,123.55l.05,0,43.41-22.12,9-77.27Zm37.84,48.53c0,.78,0,1.48-.68,1.79l-29,13.92-2.14,1-.24-2.79V81.18L70,79.79l1-.41,20.5-9.19L72.43,61.7l-8.12,16-4.82,9.32-1.08,2-1.82-.8L26.8,74.53a2.14,2.14,0,0,1-1.29-1.79V67.62a2.11,2.11,0,0,1,1.25-1.79L56.86,51.92l2.84-1.28v8.55l.21,1.18L58.53,61,37.85,70.17l19.33,8.52,7.12-14.17L69.8,53.32l1-2,1.6.8,28.77,13.73c.65.31.67,1,.67,1.79Z"/><path fill="#60be86" d="M14.29,20.55V4.69h5.57a13.76,13.76,0,0,1,2.88.23A5.53,5.53,0,0,1,25.1,6.06,6.45,6.45,0,0,1,27,8.77a10.45,10.45,0,0,1,.63,3.77,10.87,10.87,0,0,1-.43,3.2A7.7,7.7,0,0,1,26.12,18a5.8,5.8,0,0,1-1.47,1.44,6,6,0,0,1-1.93.79,11.22,11.22,0,0,1-2.6.27Zm2.14-1.87h3.45a8.53,8.53,0,0,0,2.51-.29,3.6,3.6,0,0,0,1.45-.82,5,5,0,0,0,1.19-2,9.63,9.63,0,0,0,.42-3.06,7.26,7.26,0,0,0-.83-3.82,4.16,4.16,0,0,0-2-1.79,8.52,8.52,0,0,0-2.77-.32h-3.4Z"/><path fill="#60be86" d="M30.64,20.55V4.69H42.33V6.56H32.78v4.86h8.94v1.86H32.78v5.4H42.7v1.87Z"/><path fill="#60be86" d="M50.28,20.55,44,4.69h2.32l4.2,11.52q.51,1.38.85,2.6.37-1.3.87-2.6L56.62,4.69H58.8L52.47,20.55Z"/><path fill="#60be86" d="M61.08,20.55V4.69h2.14V20.55Z"/><path fill="#60be86" d="M78.52,15l2.14.53a7,7,0,0,1-2.42,3.94A6.76,6.76,0,0,1,74,20.82a7.79,7.79,0,0,1-4.25-1,6.54,6.54,0,0,1-2.49-3,10.61,10.61,0,0,1-.85-4.25,9.19,9.19,0,0,1,1-4.32,6.54,6.54,0,0,1,2.75-2.8,8.15,8.15,0,0,1,3.92-1,6.72,6.72,0,0,1,4.08,1.21A6.28,6.28,0,0,1,80.39,9l-2.11.49A4.89,4.89,0,0,0,76.65,7,4.41,4.41,0,0,0,74,6.22a5.3,5.3,0,0,0-3.11.88,4.63,4.63,0,0,0-1.76,2.35,9.31,9.31,0,0,0-.51,3,9.51,9.51,0,0,0,.6,3.53A4.41,4.41,0,0,0,71,18.28a5.32,5.32,0,0,0,2.75.75,4.66,4.66,0,0,0,3-1A5.18,5.18,0,0,0,78.52,15Z"/><path fill="#60be86" d="M82.65,12.83a8.51,8.51,0,0,1,2.16-6.18,7.42,7.42,0,0,1,5.58-2.23,7.86,7.86,0,0,1,4,1,6.9,6.9,0,0,1,2.74,2.93,9.35,9.35,0,0,1,.94,4.26,9.19,9.19,0,0,1-1,4.31,6.7,6.7,0,0,1-2.81,2.88,8.15,8.15,0,0,1-3.93,1,7.76,7.76,0,0,1-4.08-1.08,7,7,0,0,1-2.72-3A8.81,8.81,0,0,1,82.65,12.83Zm2.21,0a6.28,6.28,0,0,0,1.57,4.51,5.56,5.56,0,0,0,7.92,0,6.65,6.65,0,0,0,1.56-4.73,8,8,0,0,0-.67-3.38,5.06,5.06,0,0,0-2-2.24,5.37,5.37,0,0,0-2.88-.79,5.53,5.53,0,0,0-3.91,1.53Q84.85,9.28,84.85,12.86Z"/><path fill="#60be86" d="M100.84,20.55V4.69H103l8.49,12.45V4.69h2.05V20.55h-2.19L102.89,8.09V20.55Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1 +1 @@
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#60be86;}</style></defs><title>Artboard 14</title><path id="plain" class="cls-1" d="M64,7.83H4.77L14.95,95.13l49,25,.06,0,49.07-25L123.23,7.83Zm42.77,54.86c0,.88,0,1.67-.77,2L73.25,80.44l-2.42,1.13-.27-3.15V72.23l.24-1.57,1.09-.47L95.07,59.81l-21.54-9.6L64.35,68.34,58.9,78.87l-1.22,2.27-2.05-.9L22,64.71a2.42,2.42,0,0,1-1.45-2V56.91a2.39,2.39,0,0,1,1.42-2l34-15.73,3.21-1.44v9.66l.24,1.34-1.56.7L34.45,59.79,56.3,69.42l8.05-16,6.21-12.65,1.13-2.28,1.81.91L106,54.89c.73.35.76,1.14.76,2Z"/></svg>
<svg id="Devicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path id="plain" fill="#60be86" d="M64,7.83H4.77L14.95,95.13l49,25,.06,0,49.07-25L123.23,7.83Zm42.77,54.86c0,.88,0,1.67-.77,2L73.25,80.44l-2.42,1.13-.27-3.15V72.23l.24-1.57,1.09-.47L95.07,59.81l-21.54-9.6L64.35,68.34,58.9,78.87l-1.22,2.27-2.05-.9L22,64.71a2.42,2.42,0,0,1-1.45-2V56.91a2.39,2.39,0,0,1,1.42-2l34-15.73,3.21-1.44v9.66l.24,1.34-1.56.7L34.45,59.79,56.3,69.42l8.05-16,6.21-12.65,1.13-2.28,1.81.91L106,54.89c.73.35.76,1.14.76,2Z"/></svg>

Before

Width:  |  Height:  |  Size: 596 B

After

Width:  |  Height:  |  Size: 522 B

View File

@ -1 +1 @@
<svg id="Electron" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#47848f;}</style></defs><title>Artboard 7</title><g id="original-wordmark"><path class="cls-1" d="M29,69.59h6.65a.35.35,0,1,0,0-.7H29.39V64.8h5.55a.35.35,0,1,0,0-.7H29.39v-4h6.2a.35.35,0,1,0,0-.7H29a.39.39,0,0,0-.38.38v9.43a.39.39,0,0,0,.38.38Zm11.62-.38a.39.39,0,0,0,.38.38h6.07a.35.35,0,0,0,0-.7H41.39V59.72a.38.38,0,0,0-.76,0Zm11.64.38h6.65a.35.35,0,1,0,0-.7H52.64V64.8h5.55a.35.35,0,1,0,0-.7H52.64v-4h6.2a.35.35,0,0,0,0-.7H52.26a.39.39,0,0,0-.38.38v9.43a.39.39,0,0,0,.38.38Zm16.24.17a5.28,5.28,0,0,0,3.86-1.59.37.37,0,0,0,.12-.26.38.38,0,0,0-.36-.36.37.37,0,0,0-.26.12,4.49,4.49,0,0,1-3.32,1.41,4.39,4.39,0,0,1-4.31-4.59v0a4.36,4.36,0,0,1,4.29-4.56,4.55,4.55,0,0,1,3.25,1.32.39.39,0,0,0,.26.1.4.4,0,0,0,.39-.38.44.44,0,0,0-.15-.31,5.32,5.32,0,0,0-3.74-1.43,5.12,5.12,0,0,0-5.09,5.27v0a5.06,5.06,0,0,0,5.07,5.24Zm11.2-.49a.38.38,0,0,0,.76,0V60.1h3.26a.35.35,0,1,0,0-.7H76.44a.35.35,0,1,0,0,.7H79.7Zm8.85,0a.38.38,0,0,0,.76,0v-3.9h3.33l3.13,4.08a.42.42,0,0,0,.33.2.41.41,0,0,0,.39-.39.42.42,0,0,0-.12-.26l-2.9-3.76c1.72-.23,3-1.21,3-2.91v0a2.69,2.69,0,0,0-.77-1.89,4,4,0,0,0-2.87-1h-3.9a.39.39,0,0,0-.38.38Zm.76-4.59V60.1h3.48c1.85,0,2.93.86,2.93,2.23v0c0,1.47-1.27,2.33-3,2.33ZM106,69.76a5.13,5.13,0,0,0,5.14-5.27v0a5.13,5.13,0,1,0-10.25,0v0A5.08,5.08,0,0,0,106,69.76Zm0-.68a4.41,4.41,0,0,1-4.35-4.59v0A4.36,4.36,0,0,1,106,59.91a4.41,4.41,0,0,1,4.35,4.59v0A4.36,4.36,0,0,1,106,69.08Zm9.93.2a.36.36,0,0,0,.73,0V60.5l7,8.88a.52.52,0,0,0,.38.25h.06a.31.31,0,0,0,.31-.32V59.7a.36.36,0,0,0-.73,0v8.59l-6.87-8.72a.47.47,0,0,0-.38-.22h-.12a.39.39,0,0,0-.38.38Z"/><path class="cls-1" d="M9.58,58.75c-2.41-.44-4.31,0-5.07,1.33a3.67,3.67,0,0,0,.39,3.67.25.25,0,0,0,.43-.25,3.21,3.21,0,0,1-.39-3.18c.63-1.09,2.33-1.5,4.55-1.09a.25.25,0,0,0,.09-.49ZM6.15,65.44a15.44,15.44,0,0,0,3.68,2.9c3.49,2,7.21,2.55,9,1.31a.25.25,0,0,0-.28-.41c-1.64,1.12-5.17.61-8.51-1.32a15,15,0,0,1-3.56-2.81.25.25,0,0,0-.36.33Z"/><path class="cls-1" d="M18.29,65.14c1.58-1.86,2.13-3.73,1.37-5a3.63,3.63,0,0,0-3.3-1.49.25.25,0,0,0,0,.49,3.17,3.17,0,0,1,2.88,1.25c.63,1.09.14,2.76-1.32,4.48a.25.25,0,1,0,.38.32Zm-4-6.31a15.41,15.41,0,0,0-4.4,1.74c-3.6,2.08-6,5.15-5.63,7.37a.25.25,0,0,0,.49-.07C4.41,65.9,6.64,63,10.09,61a14.92,14.92,0,0,1,4.25-1.69.25.25,0,1,0-.1-.48Z"/><path class="cls-1" d="M8.4,69.49c.82,2.3,2.17,3.72,3.69,3.72A3.61,3.61,0,0,0,15,71.13a.25.25,0,1,0-.42-.25,3.15,3.15,0,0,1-2.5,1.84c-1.26,0-2.46-1.26-3.22-3.39a.25.25,0,0,0-.46.17ZM15.92,69a15.49,15.49,0,0,0,.66-4.57c0-4.09-1.43-7.61-3.47-8.52a.25.25,0,0,0-.2.45c1.82.81,3.18,4.15,3.18,8.06a15,15,0,0,1-.63,4.43.25.25,0,0,0,.47.15Z"/><path class="cls-1" d="M20.57,68.8A1.18,1.18,0,1,0,19.39,70a1.18,1.18,0,0,0,1.18-1.18Zm-.49,0a.69.69,0,1,1-.69-.69.69.69,0,0,1,.69.69Z"/><path class="cls-1" d="M4.77,70A1.18,1.18,0,1,0,3.59,68.8,1.18,1.18,0,0,0,4.77,70Zm0-.49a.69.69,0,1,1,.69-.69.69.69,0,0,1-.69.69Z"/><path class="cls-1" d="M12.09,57.16A1.18,1.18,0,1,0,10.91,56a1.18,1.18,0,0,0,1.18,1.18Zm0-.49a.69.69,0,1,1,.69-.69.69.69,0,0,1-.69.69Z"/><path class="cls-1" d="M12.27,65.3a.85.85,0,1,1,.65-1A.85.85,0,0,1,12.27,65.3Z"/></g></svg>
<svg id="Electron" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original-wordmark"><path fill="#47848f" d="M29,69.59h6.65a.35.35,0,1,0,0-.7H29.39V64.8h5.55a.35.35,0,1,0,0-.7H29.39v-4h6.2a.35.35,0,1,0,0-.7H29a.39.39,0,0,0-.38.38v9.43a.39.39,0,0,0,.38.38Zm11.62-.38a.39.39,0,0,0,.38.38h6.07a.35.35,0,0,0,0-.7H41.39V59.72a.38.38,0,0,0-.76,0Zm11.64.38h6.65a.35.35,0,1,0,0-.7H52.64V64.8h5.55a.35.35,0,1,0,0-.7H52.64v-4h6.2a.35.35,0,0,0,0-.7H52.26a.39.39,0,0,0-.38.38v9.43a.39.39,0,0,0,.38.38Zm16.24.17a5.28,5.28,0,0,0,3.86-1.59.37.37,0,0,0,.12-.26.38.38,0,0,0-.36-.36.37.37,0,0,0-.26.12,4.49,4.49,0,0,1-3.32,1.41,4.39,4.39,0,0,1-4.31-4.59v0a4.36,4.36,0,0,1,4.29-4.56,4.55,4.55,0,0,1,3.25,1.32.39.39,0,0,0,.26.1.4.4,0,0,0,.39-.38.44.44,0,0,0-.15-.31,5.32,5.32,0,0,0-3.74-1.43,5.12,5.12,0,0,0-5.09,5.27v0a5.06,5.06,0,0,0,5.07,5.24Zm11.2-.49a.38.38,0,0,0,.76,0V60.1h3.26a.35.35,0,1,0,0-.7H76.44a.35.35,0,1,0,0,.7H79.7Zm8.85,0a.38.38,0,0,0,.76,0v-3.9h3.33l3.13,4.08a.42.42,0,0,0,.33.2.41.41,0,0,0,.39-.39.42.42,0,0,0-.12-.26l-2.9-3.76c1.72-.23,3-1.21,3-2.91v0a2.69,2.69,0,0,0-.77-1.89,4,4,0,0,0-2.87-1h-3.9a.39.39,0,0,0-.38.38Zm.76-4.59V60.1h3.48c1.85,0,2.93.86,2.93,2.23v0c0,1.47-1.27,2.33-3,2.33ZM106,69.76a5.13,5.13,0,0,0,5.14-5.27v0a5.13,5.13,0,1,0-10.25,0v0A5.08,5.08,0,0,0,106,69.76Zm0-.68a4.41,4.41,0,0,1-4.35-4.59v0A4.36,4.36,0,0,1,106,59.91a4.41,4.41,0,0,1,4.35,4.59v0A4.36,4.36,0,0,1,106,69.08Zm9.93.2a.36.36,0,0,0,.73,0V60.5l7,8.88a.52.52,0,0,0,.38.25h.06a.31.31,0,0,0,.31-.32V59.7a.36.36,0,0,0-.73,0v8.59l-6.87-8.72a.47.47,0,0,0-.38-.22h-.12a.39.39,0,0,0-.38.38Z"/><path fill="#47848f" d="M9.58,58.75c-2.41-.44-4.31,0-5.07,1.33a3.67,3.67,0,0,0,.39,3.67.25.25,0,0,0,.43-.25,3.21,3.21,0,0,1-.39-3.18c.63-1.09,2.33-1.5,4.55-1.09a.25.25,0,0,0,.09-.49ZM6.15,65.44a15.44,15.44,0,0,0,3.68,2.9c3.49,2,7.21,2.55,9,1.31a.25.25,0,0,0-.28-.41c-1.64,1.12-5.17.61-8.51-1.32a15,15,0,0,1-3.56-2.81.25.25,0,0,0-.36.33Z"/><path fill="#47848f" d="M18.29,65.14c1.58-1.86,2.13-3.73,1.37-5a3.63,3.63,0,0,0-3.3-1.49.25.25,0,0,0,0,.49,3.17,3.17,0,0,1,2.88,1.25c.63,1.09.14,2.76-1.32,4.48a.25.25,0,1,0,.38.32Zm-4-6.31a15.41,15.41,0,0,0-4.4,1.74c-3.6,2.08-6,5.15-5.63,7.37a.25.25,0,0,0,.49-.07C4.41,65.9,6.64,63,10.09,61a14.92,14.92,0,0,1,4.25-1.69.25.25,0,1,0-.1-.48Z"/><path fill="#47848f" d="M8.4,69.49c.82,2.3,2.17,3.72,3.69,3.72A3.61,3.61,0,0,0,15,71.13a.25.25,0,1,0-.42-.25,3.15,3.15,0,0,1-2.5,1.84c-1.26,0-2.46-1.26-3.22-3.39a.25.25,0,0,0-.46.17ZM15.92,69a15.49,15.49,0,0,0,.66-4.57c0-4.09-1.43-7.61-3.47-8.52a.25.25,0,0,0-.2.45c1.82.81,3.18,4.15,3.18,8.06a15,15,0,0,1-.63,4.43.25.25,0,0,0,.47.15Z"/><path fill="#47848f" d="M20.57,68.8A1.18,1.18,0,1,0,19.39,70a1.18,1.18,0,0,0,1.18-1.18Zm-.49,0a.69.69,0,1,1-.69-.69.69.69,0,0,1,.69.69Z"/><path fill="#47848f" d="M4.77,70A1.18,1.18,0,1,0,3.59,68.8,1.18,1.18,0,0,0,4.77,70Zm0-.49a.69.69,0,1,1,.69-.69.69.69,0,0,1-.69.69Z"/><path fill="#47848f" d="M12.09,57.16A1.18,1.18,0,1,0,10.91,56a1.18,1.18,0,0,0,1.18,1.18Zm0-.49a.69.69,0,1,1,.69-.69.69.69,0,0,1-.69.69Z"/><path fill="#47848f" d="M12.27,65.3a.85.85,0,1,1,.65-1A.85.85,0,0,1,12.27,65.3Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1 +1 @@
<svg id="Electron" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#47848f;}</style></defs><title>Artboard 5</title><g id="original"><path class="cls-1" d="M49.07,32.66c-14.37-2.62-25.72.12-30.25,8-3.38,5.85-2.41,13.61,2.34,21.9a1.47,1.47,0,0,0,2.56-1.47c-4.28-7.47-5.12-14.17-2.35-19,3.76-6.51,13.89-9,27.17-6.54a1.47,1.47,0,1,0,.53-2.9ZM28.63,72.61a92.2,92.2,0,0,0,22,17.34c20.84,12,43,15.25,54,7.79a1.47,1.47,0,0,0-1.66-2.43C93.11,102,72,98.92,52.07,87.39A89.27,89.27,0,0,1,30.81,70.62a1.47,1.47,0,0,0-2.18,2Z"/><path class="cls-1" d="M101.06,70.81c9.41-11.11,12.69-22.29,8.17-30.11-3.32-5.76-10.35-8.8-19.69-8.92a1.47,1.47,0,0,0,0,2.95c8.4.11,14.45,2.73,17.18,7.45,3.75,6.5.82,16.47-7.87,26.74a1.47,1.47,0,1,0,2.25,1.9ZM76.89,33.15a92,92,0,0,0-26.25,10.4C29.13,56,15.09,74.29,17,87.57A1.47,1.47,0,0,0,20,87.14C18.23,75.35,31.53,58,52.11,46.11A89.07,89.07,0,0,1,77.51,36a1.47,1.47,0,1,0-.62-2.88Z"/><path class="cls-1" d="M42,96.78C47,110.51,55,119,64.05,119c6.6,0,12.7-4.5,17.46-12.42A1.47,1.47,0,1,0,79,105c-4.28,7.12-9.53,11-14.94,11-7.52,0-14.69-7.54-19.24-20.24a1.47,1.47,0,0,0-2.77,1ZM87,94.09a92.5,92.5,0,0,0,3.91-27.3c0-24.41-8.54-45.44-20.71-50.85A1.47,1.47,0,0,0,69,18.64c10.85,4.82,19,24.78,19,48.15a89.57,89.57,0,0,1-3.78,26.42,1.47,1.47,0,0,0,2.81.88Z"/><path class="cls-1" d="M114.71,92.65a7.05,7.05,0,1,0-7.05,7.05,7.05,7.05,0,0,0,7.05-7.05Zm-2.95,0a4.1,4.1,0,1,1-4.1-4.1,4.1,4.1,0,0,1,4.1,4.1Z"/><path class="cls-1" d="M20.34,99.7a7.05,7.05,0,1,0-7.05-7.05,7.05,7.05,0,0,0,7.05,7.05Zm0-2.95a4.1,4.1,0,1,1,4.1-4.1,4.1,4.1,0,0,1-4.1,4.1Z"/><path class="cls-1" d="M64.05,23.13A7.05,7.05,0,1,0,57,16.08a7.05,7.05,0,0,0,7.05,7.05Zm0-2.95a4.1,4.1,0,1,1,4.1-4.1,4.1,4.1,0,0,1-4.1,4.1Z"/><path class="cls-1" d="M65.13,71.77A5.1,5.1,0,1,1,69,65.71,5.1,5.1,0,0,1,65.13,71.77Z"/></g></svg>
<svg id="Electron" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original"><path fill="#47848f" d="M49.07,32.66c-14.37-2.62-25.72.12-30.25,8-3.38,5.85-2.41,13.61,2.34,21.9a1.47,1.47,0,0,0,2.56-1.47c-4.28-7.47-5.12-14.17-2.35-19,3.76-6.51,13.89-9,27.17-6.54a1.47,1.47,0,1,0,.53-2.9ZM28.63,72.61a92.2,92.2,0,0,0,22,17.34c20.84,12,43,15.25,54,7.79a1.47,1.47,0,0,0-1.66-2.43C93.11,102,72,98.92,52.07,87.39A89.27,89.27,0,0,1,30.81,70.62a1.47,1.47,0,0,0-2.18,2Z"/><path fill="#47848f" d="M101.06,70.81c9.41-11.11,12.69-22.29,8.17-30.11-3.32-5.76-10.35-8.8-19.69-8.92a1.47,1.47,0,0,0,0,2.95c8.4.11,14.45,2.73,17.18,7.45,3.75,6.5.82,16.47-7.87,26.74a1.47,1.47,0,1,0,2.25,1.9ZM76.89,33.15a92,92,0,0,0-26.25,10.4C29.13,56,15.09,74.29,17,87.57A1.47,1.47,0,0,0,20,87.14C18.23,75.35,31.53,58,52.11,46.11A89.07,89.07,0,0,1,77.51,36a1.47,1.47,0,1,0-.62-2.88Z"/><path fill="#47848f" d="M42,96.78C47,110.51,55,119,64.05,119c6.6,0,12.7-4.5,17.46-12.42A1.47,1.47,0,1,0,79,105c-4.28,7.12-9.53,11-14.94,11-7.52,0-14.69-7.54-19.24-20.24a1.47,1.47,0,0,0-2.77,1ZM87,94.09a92.5,92.5,0,0,0,3.91-27.3c0-24.41-8.54-45.44-20.71-50.85A1.47,1.47,0,0,0,69,18.64c10.85,4.82,19,24.78,19,48.15a89.57,89.57,0,0,1-3.78,26.42,1.47,1.47,0,0,0,2.81.88Z"/><path fill="#47848f" d="M114.71,92.65a7.05,7.05,0,1,0-7.05,7.05,7.05,7.05,0,0,0,7.05-7.05Zm-2.95,0a4.1,4.1,0,1,1-4.1-4.1,4.1,4.1,0,0,1,4.1,4.1Z"/><path fill="#47848f" d="M20.34,99.7a7.05,7.05,0,1,0-7.05-7.05,7.05,7.05,0,0,0,7.05,7.05Zm0-2.95a4.1,4.1,0,1,1,4.1-4.1,4.1,4.1,0,0,1-4.1,4.1Z"/><path fill="#47848f" d="M64.05,23.13A7.05,7.05,0,1,0,57,16.08a7.05,7.05,0,0,0,7.05,7.05Zm0-2.95a4.1,4.1,0,1,1,4.1-4.1,4.1,4.1,0,0,1-4.1,4.1Z"/><path fill="#47848f" d="M65.13,71.77A5.1,5.1,0,1,1,69,65.71,5.1,5.1,0,0,1,65.13,71.77Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +1 @@
<svg id="Elm" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#efa500;}.cls-2{fill:#8dd737;}.cls-3{fill:#60b5cc;}.cls-4{fill:#34495e;}</style></defs><title>Artboard 13</title><g id="original-wordmark"><polygon class="cls-1" points="27.29 62.59 38.44 51.44 16.14 51.44 27.29 62.59"/><polygon class="cls-2" points="2.92 38.21 14.14 49.44 38.55 49.44 27.32 38.21 2.92 38.21"/><rect class="cls-2" x="32.25" y="55.38" width="17.26" height="17.18" transform="translate(-33.26 47.64) rotate(-45)"/><polygon class="cls-3" points="53.08 61.14 53.08 38.21 30.15 38.21 53.08 61.14"/><polygon class="cls-4" points="25.87 64 1.5 39.63 1.5 88.37 25.87 64"/><polygon class="cls-1" points="42.27 77.56 53.08 88.37 53.08 66.75 42.27 77.56"/><polygon class="cls-3" points="27.29 65.42 2.92 89.79 51.66 89.79 27.29 65.42"/><path class="cls-4" d="M62.74,50.22h16.7v3.09h-13v9.1h11v3.14h-11V76.07H79.88V79.2H62.74Z"/><path class="cls-4" d="M85.58,47.74h3.62V75.14c0,1.15.49,1.59,1,1.59a3.08,3.08,0,0,0,.8-.09l.49,2.74a4.89,4.89,0,0,1-2.08.35c-2.74,0-3.84-1.72-3.84-4.86Z"/><path class="cls-4" d="M96.85,57.73h3l.31,3.09h.13c1.86-2,4.11-3.62,6.67-3.62,3.27,0,5,1.55,5.92,4.11,2.25-2.43,4.46-4.11,7.07-4.11,4.42,0,6.54,2.92,6.54,8.39V79.2h-3.62V66.08c0-4-1.28-5.74-4-5.74-1.68,0-3.4,1.11-5.39,3.31V79.2h-3.62V66.08c0-4-1.28-5.74-4-5.74-1.59,0-3.4,1.11-5.39,3.31V79.2H96.85Z"/></g></svg>
<svg id="Elm" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original-wordmark"><polygon fill="#efa500" points="27.29 62.59 38.44 51.44 16.14 51.44 27.29 62.59"/><polygon fill="#8dd737" points="2.92 38.21 14.14 49.44 38.55 49.44 27.32 38.21 2.92 38.21"/><rect fill="#8dd737" x="32.25" y="55.38" width="17.26" height="17.18" transform="translate(-33.26 47.64) rotate(-45)"/><polygon fill="#60b5cc" points="53.08 61.14 53.08 38.21 30.15 38.21 53.08 61.14"/><polygon fill="#34495e" points="25.87 64 1.5 39.63 1.5 88.37 25.87 64"/><polygon fill="#efa500" points="42.27 77.56 53.08 88.37 53.08 66.75 42.27 77.56"/><polygon fill="#60b5cc" points="27.29 65.42 2.92 89.79 51.66 89.79 27.29 65.42"/><path fill="#34495e" d="M62.74,50.22h16.7v3.09h-13v9.1h11v3.14h-11V76.07H79.88V79.2H62.74Z"/><path fill="#34495e" d="M85.58,47.74h3.62V75.14c0,1.15.49,1.59,1,1.59a3.08,3.08,0,0,0,.8-.09l.49,2.74a4.89,4.89,0,0,1-2.08.35c-2.74,0-3.84-1.72-3.84-4.86Z"/><path fill="#34495e" d="M96.85,57.73h3l.31,3.09h.13c1.86-2,4.11-3.62,6.67-3.62,3.27,0,5,1.55,5.92,4.11,2.25-2.43,4.46-4.11,7.07-4.11,4.42,0,6.54,2.92,6.54,8.39V79.2h-3.62V66.08c0-4-1.28-5.74-4-5.74-1.68,0-3.4,1.11-5.39,3.31V79.2h-3.62V66.08c0-4-1.28-5.74-4-5.74-1.59,0-3.4,1.11-5.39,3.31V79.2H96.85Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1 +1 @@
<svg id="Elm" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#efa500;}.cls-2{fill:#8dd737;}.cls-3{fill:#60b5cc;}.cls-4{fill:#34495e;}</style></defs><title>Artboard 12</title><g id="original"><polygon class="cls-1" points="64 60.74 89.65 35.09 38.35 35.09 64 60.74"/><polygon class="cls-2" points="7.91 4.65 33.74 30.49 89.91 30.49 64.07 4.65 7.91 4.65"/><rect class="cls-2" x="75.42" y="44.17" width="39.71" height="39.53" transform="translate(-17.3 86.09) rotate(-45)"/><polygon class="cls-3" points="123.35 57.42 123.35 4.65 70.58 4.65 123.35 57.42"/><polygon class="cls-4" points="60.74 64 4.65 7.91 4.65 120.1 60.74 64"/><polygon class="cls-1" points="98.47 95.21 123.35 120.1 123.35 70.33 98.47 95.21"/><polygon class="cls-3" points="64 67.26 7.91 123.35 120.09 123.35 64 67.26"/></g></svg>
<svg id="Elm" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original"><polygon fill="#efa500" points="64 60.74 89.65 35.09 38.35 35.09 64 60.74"/><polygon fill="#8dd737" points="7.91 4.65 33.74 30.49 89.91 30.49 64.07 4.65 7.91 4.65"/><rect fill="#8dd737" x="75.42" y="44.17" width="39.71" height="39.53" transform="translate(-17.3 86.09) rotate(-45)"/><polygon fill="#60b5cc" points="123.35 57.42 123.35 4.65 70.58 4.65 123.35 57.42"/><polygon fill="#34495e" points="60.74 64 4.65 7.91 4.65 120.1 60.74 64"/><polygon fill="#efa500" points="98.47 95.21 123.35 120.1 123.35 70.33 98.47 95.21"/><polygon fill="#60b5cc" points="64 67.26 7.91 123.35 120.09 123.35 64 67.26"/></g></svg>

Before

Width:  |  Height:  |  Size: 830 B

After

Width:  |  Height:  |  Size: 699 B

View File

@ -1 +1 @@
<svg id="Elm" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#34495e;}</style></defs><title>Artboard 15</title><g id="plain-wordmark"><polygon class="cls-1" points="27.29 62.59 38.44 51.44 16.14 51.44 27.29 62.59"/><polygon class="cls-1" points="2.92 38.21 14.14 49.44 38.55 49.44 27.32 38.21 2.92 38.21"/><rect class="cls-1" x="32.25" y="55.38" width="17.26" height="17.18" transform="translate(-33.26 47.64) rotate(-45)"/><polygon class="cls-1" points="53.08 61.14 53.08 38.21 30.15 38.21 53.08 61.14"/><polygon class="cls-1" points="25.87 64 1.5 39.63 1.5 88.37 25.87 64"/><polygon class="cls-1" points="42.27 77.56 53.08 88.37 53.08 66.75 42.27 77.56"/><polygon class="cls-1" points="27.29 65.42 2.92 89.79 51.66 89.79 27.29 65.42"/><path class="cls-1" d="M62.74,50.22h16.7v3.09h-13v9.1h11v3.14h-11V76.07H79.88V79.2H62.74Z"/><path class="cls-1" d="M85.58,47.74h3.62V75.14c0,1.15.49,1.59,1,1.59a3.08,3.08,0,0,0,.8-.09l.49,2.74a4.89,4.89,0,0,1-2.08.35c-2.74,0-3.84-1.72-3.84-4.86Z"/><path class="cls-1" d="M96.85,57.73h3l.31,3.09h.13c1.86-2,4.11-3.62,6.67-3.62,3.27,0,5,1.55,5.92,4.11,2.25-2.43,4.46-4.11,7.07-4.11,4.42,0,6.54,2.92,6.54,8.39V79.2h-3.62V66.08c0-4-1.28-5.74-4-5.74-1.68,0-3.4,1.11-5.39,3.31V79.2h-3.62V66.08c0-4-1.28-5.74-4-5.74-1.59,0-3.4,1.11-5.39,3.31V79.2H96.85Z"/></g></svg>
<svg id="Elm" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain-wordmark"><polygon fill="#34495e" points="27.29 62.59 38.44 51.44 16.14 51.44 27.29 62.59"/><polygon fill="#34495e" points="2.92 38.21 14.14 49.44 38.55 49.44 27.32 38.21 2.92 38.21"/><rect fill="#34495e" x="32.25" y="55.38" width="17.26" height="17.18" transform="translate(-33.26 47.64) rotate(-45)"/><polygon fill="#34495e" points="53.08 61.14 53.08 38.21 30.15 38.21 53.08 61.14"/><polygon fill="#34495e" points="25.87 64 1.5 39.63 1.5 88.37 25.87 64"/><polygon fill="#34495e" points="42.27 77.56 53.08 88.37 53.08 66.75 42.27 77.56"/><polygon fill="#34495e" points="27.29 65.42 2.92 89.79 51.66 89.79 27.29 65.42"/><path fill="#34495e" d="M62.74,50.22h16.7v3.09h-13v9.1h11v3.14h-11V76.07H79.88V79.2H62.74Z"/><path fill="#34495e" d="M85.58,47.74h3.62V75.14c0,1.15.49,1.59,1,1.59a3.08,3.08,0,0,0,.8-.09l.49,2.74a4.89,4.89,0,0,1-2.08.35c-2.74,0-3.84-1.72-3.84-4.86Z"/><path fill="#34495e" d="M96.85,57.73h3l.31,3.09h.13c1.86-2,4.11-3.62,6.67-3.62,3.27,0,5,1.55,5.92,4.11,2.25-2.43,4.46-4.11,7.07-4.11,4.42,0,6.54,2.92,6.54,8.39V79.2h-3.62V66.08c0-4-1.28-5.74-4-5.74-1.68,0-3.4,1.11-5.39,3.31V79.2h-3.62V66.08c0-4-1.28-5.74-4-5.74-1.59,0-3.4,1.11-5.39,3.31V79.2H96.85Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1 +1 @@
<svg id="Elm" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#34495e;}</style></defs><title>Artboard 14</title><g id="plain"><polygon class="cls-1" points="64 60.74 89.65 35.09 38.35 35.09 64 60.74"/><polygon class="cls-1" points="7.91 4.65 33.74 30.49 89.91 30.49 64.07 4.65 7.91 4.65"/><rect class="cls-1" x="75.42" y="44.17" width="39.71" height="39.53" transform="translate(-17.3 86.09) rotate(-45)"/><polygon class="cls-1" points="123.35 57.42 123.35 4.65 70.58 4.65 123.35 57.42"/><polygon class="cls-1" points="60.74 64 4.65 7.91 4.65 120.1 60.74 64"/><polygon class="cls-1" points="98.47 95.21 123.35 120.1 123.35 70.33 98.47 95.21"/><polygon class="cls-1" points="64 67.26 7.91 123.35 120.09 123.35 64 67.26"/></g></svg>
<svg id="Elm" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain"><polygon fill="#34495e" points="64 60.74 89.65 35.09 38.35 35.09 64 60.74"/><polygon fill="#34495e" points="7.91 4.65 33.74 30.49 89.91 30.49 64.07 4.65 7.91 4.65"/><rect fill="#34495e" x="75.42" y="44.17" width="39.71" height="39.53" transform="translate(-17.3 86.09) rotate(-45)"/><polygon fill="#34495e" points="123.35 57.42 123.35 4.65 70.58 4.65 123.35 57.42"/><polygon fill="#34495e" points="60.74 64 4.65 7.91 4.65 120.1 60.74 64"/><polygon fill="#34495e" points="98.47 95.21 123.35 120.1 123.35 70.33 98.47 95.21"/><polygon fill="#34495e" points="64 67.26 7.91 123.35 120.09 123.35 64 67.26"/></g></svg>

Before

Width:  |  Height:  |  Size: 764 B

After

Width:  |  Height:  |  Size: 696 B

View File

@ -1 +1 @@
<svg id="Ember" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1,.cls-2{fill:#dd3f24;}.cls-2{font-size:8.5px;font-family:MyriadPro-Regular, Myriad Pro;}</style></defs><title>Artboard 5</title><g id="original-wordmark"><path class="cls-1" d="M127.28,72.53a1.46,1.46,0,0,0-2.13-1.34s-3.08,2.39-5.79,2.12S117.5,67,117.5,67s.58-5.55-1-6-3.56,1.45-3.56,1.45a20,20,0,0,0-3.61,6.17l-.32.11s.37-6.06-.05-7.44c-.32-.69-3.24-.64-3.72.58s-2.82,9.73-3,13.29c0,0-4.57,3.88-8.56,4.52s-4.94-1.86-4.94-1.86,10.84-3,10.47-11.69-8.74-5.46-9.69-4.75S83.71,65,82.29,73.15c0,.28-.13,1.49-.13,1.49a37.47,37.47,0,0,1-6.54,3.56s6.54-11-1.44-16C70.57,60,67.7,64.6,67.7,64.6s10.79-12,8.4-22.16c-1.14-4.83-3.56-5.35-5.77-4.57a10.06,10.06,0,0,0-4.64,3.3,37.12,37.12,0,0,0-5.37,15.73c-1,9.41-2.5,20.78-2.5,20.78s-2.07,2-4,2.13-1.06-5.69-1.06-5.69,1.49-8.82,1.38-10.31-.21-2.29-2-2.82-3.67,1.7-3.67,1.7-5,7.65-5.47,8.82l-.27.48-.27-.32s3.56-10.42.16-10.58S37,64.81,37,64.81,33.15,71.3,33,72l-.27-.32s1.59-7.55,1.28-9.41a1.71,1.71,0,0,0-2.07-1.49s-2.23-.27-2.82,1.17a105.2,105.2,0,0,0-3,14s-5.58,4-9.25,4-3.3-2.33-3.3-2.33S27,73.09,23.37,64a6.66,6.66,0,0,0-6.27-3c-2.71.05-6,1.71-8.17,6.6a21.21,21.21,0,0,0-1.55,6.22h0s-2.43.48-3.71-.58-2,0-2,0-2.21,2.75,0,3.6A26.67,26.67,0,0,0,7.22,78h0a10.25,10.25,0,0,0,3.87,6.07c4,3,11.64-.26,11.64-.26l3.14-1.75S26,85,28.26,85.39s3.24,0,7.23-9.68C37.83,70.77,38,71,38,71l.27-.05s-1.81,9.46-1.12,12,3.72,2.29,3.72,2.29,1.65.28,3-4.4A70,70,0,0,1,47.71,71H48s-1.12,9.71.58,12.8,6.11,1.06,6.11,1.06a30.71,30.71,0,0,0,3.56-2,12.53,12.53,0,0,0,8.82,2.55c11.54-2.27,15.64-5.33,15.64-5.33a9.52,9.52,0,0,0,8.12,5.49,13.48,13.48,0,0,0,10.84-3.88s-.05,2.87,2.39,3.88,4.09-4.7,4.09-4.7l4.09-11.32h.37s.21,7.38,4.25,8.54,9.3-2.72,9.3-2.72A2.72,2.72,0,0,0,127.28,72.53ZM13,73.58c.16-6.32,4.31-9.09,5.74-7.71s.9,4.36-1.81,6.22S13,73.58,13,73.58ZM66.9,49.08s3.77-9.83,4.68-5-7.92,19-7.92,19C63.76,59.87,66.9,49.08,66.9,49.08Zm4.52,27.37c-2.5,6.54-8.56,3.88-8.56,3.88s-.69-2.34,1.28-8.88,6.59-4,6.59-4S73.91,69.92,71.42,76.45Zm16.74-2.87s-.58-2.07,1.59-6.06,3.88-1.81,3.88-1.81,1.86,2-.27,5A6.26,6.26,0,0,1,88.16,73.58Z"/><text class="cls-2" transform="translate(108.17 88.31)">®</text></g></svg>
<svg id="Ember" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original-wordmark"><path fill="#dd3f24" d="M127.28,72.53a1.46,1.46,0,0,0-2.13-1.34s-3.08,2.39-5.79,2.12S117.5,67,117.5,67s.58-5.55-1-6-3.56,1.45-3.56,1.45a20,20,0,0,0-3.61,6.17l-.32.11s.37-6.06-.05-7.44c-.32-.69-3.24-.64-3.72.58s-2.82,9.73-3,13.29c0,0-4.57,3.88-8.56,4.52s-4.94-1.86-4.94-1.86,10.84-3,10.47-11.69-8.74-5.46-9.69-4.75S83.71,65,82.29,73.15c0,.28-.13,1.49-.13,1.49a37.47,37.47,0,0,1-6.54,3.56s6.54-11-1.44-16C70.57,60,67.7,64.6,67.7,64.6s10.79-12,8.4-22.16c-1.14-4.83-3.56-5.35-5.77-4.57a10.06,10.06,0,0,0-4.64,3.3,37.12,37.12,0,0,0-5.37,15.73c-1,9.41-2.5,20.78-2.5,20.78s-2.07,2-4,2.13-1.06-5.69-1.06-5.69,1.49-8.82,1.38-10.31-.21-2.29-2-2.82-3.67,1.7-3.67,1.7-5,7.65-5.47,8.82l-.27.48-.27-.32s3.56-10.42.16-10.58S37,64.81,37,64.81,33.15,71.3,33,72l-.27-.32s1.59-7.55,1.28-9.41a1.71,1.71,0,0,0-2.07-1.49s-2.23-.27-2.82,1.17a105.2,105.2,0,0,0-3,14s-5.58,4-9.25,4-3.3-2.33-3.3-2.33S27,73.09,23.37,64a6.66,6.66,0,0,0-6.27-3c-2.71.05-6,1.71-8.17,6.6a21.21,21.21,0,0,0-1.55,6.22h0s-2.43.48-3.71-.58-2,0-2,0-2.21,2.75,0,3.6A26.67,26.67,0,0,0,7.22,78h0a10.25,10.25,0,0,0,3.87,6.07c4,3,11.64-.26,11.64-.26l3.14-1.75S26,85,28.26,85.39s3.24,0,7.23-9.68C37.83,70.77,38,71,38,71l.27-.05s-1.81,9.46-1.12,12,3.72,2.29,3.72,2.29,1.65.28,3-4.4A70,70,0,0,1,47.71,71H48s-1.12,9.71.58,12.8,6.11,1.06,6.11,1.06a30.71,30.71,0,0,0,3.56-2,12.53,12.53,0,0,0,8.82,2.55c11.54-2.27,15.64-5.33,15.64-5.33a9.52,9.52,0,0,0,8.12,5.49,13.48,13.48,0,0,0,10.84-3.88s-.05,2.87,2.39,3.88,4.09-4.7,4.09-4.7l4.09-11.32h.37s.21,7.38,4.25,8.54,9.3-2.72,9.3-2.72A2.72,2.72,0,0,0,127.28,72.53ZM13,73.58c.16-6.32,4.31-9.09,5.74-7.71s.9,4.36-1.81,6.22S13,73.58,13,73.58ZM66.9,49.08s3.77-9.83,4.68-5-7.92,19-7.92,19C63.76,59.87,66.9,49.08,66.9,49.08Zm4.52,27.37c-2.5,6.54-8.56,3.88-8.56,3.88s-.69-2.34,1.28-8.88,6.59-4,6.59-4S73.91,69.92,71.42,76.45Zm16.74-2.87s-.58-2.07,1.59-6.06,3.88-1.81,3.88-1.81,1.86,2-.27,5A6.26,6.26,0,0,1,88.16,73.58Z"/><text fill="#dd3f24" font-size="8.5px" font-family="MyriadPro-Regular, Myriad Pro" transform="translate(108.17 88.31)">®</text></g></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -1 +1 @@
<svg id="facebook" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#3d5a98;}.cls-2{fill:#fff;}</style></defs><title>facebook</title><g id="original"><rect id="Blue" class="cls-1" x="4.83" y="4.83" width="118.35" height="118.35" rx="6.53" ry="6.53"/><path id="f" class="cls-2" d="M86.48,123.17V77.34h15.38l2.3-17.86H86.48V48.08c0-5.17,1.44-8.7,8.85-8.7h9.46v-16A126.56,126.56,0,0,0,91,22.7C77.38,22.7,68,31,68,46.31V59.48H52.62V77.34H68v45.83Z"/></g></svg>
<svg id="facebook" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original"><rect id="Blue" fill="#3d5a98" x="4.83" y="4.83" width="118.35" height="118.35" rx="6.53" ry="6.53"/><path id="f" fill="#fff" d="M86.48,123.17V77.34h15.38l2.3-17.86H86.48V48.08c0-5.17,1.44-8.7,8.85-8.7h9.46v-16A126.56,126.56,0,0,0,91,22.7C77.38,22.7,68,31,68,46.31V59.48H52.62V77.34H68v45.83Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 489 B

After

Width:  |  Height:  |  Size: 398 B

View File

@ -1 +1 @@
<svg id="facebook" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#3d5a98;}</style></defs><title>facebook-plain</title><path id="original-plain" class="cls-1" d="M116.42,5.07H11.58a6.5,6.5,0,0,0-6.5,6.5V116.42a6.5,6.5,0,0,0,6.5,6.5H68V77.29H52.66V59.5H68V46.38c0-15.22,9.3-23.51,22.88-23.51a126,126,0,0,1,13.72.7V39.48H95.21c-7.39,0-8.82,3.51-8.82,8.66V59.5H104l-2.29,17.79H86.39v45.64h30a6.51,6.51,0,0,0,6.5-6.5V11.58A6.5,6.5,0,0,0,116.42,5.07Z"/></svg>
<svg id="facebook" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path id="original-plain" fill="#3d5a98" d="M116.42,5.07H11.58a6.5,6.5,0,0,0-6.5,6.5V116.42a6.5,6.5,0,0,0,6.5,6.5H68V77.29H52.66V59.5H68V46.38c0-15.22,9.3-23.51,22.88-23.51a126,126,0,0,1,13.72.7V39.48H95.21c-7.39,0-8.82,3.51-8.82,8.66V59.5H104l-2.29,17.79H86.39v45.64h30a6.51,6.51,0,0,0,6.5-6.5V11.58A6.5,6.5,0,0,0,116.42,5.07Z"/></svg>

Before

Width:  |  Height:  |  Size: 489 B

After

Width:  |  Height:  |  Size: 412 B

View File

@ -1 +1 @@
<svg id="flutter-original" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><style type="text/css">.st0{fill:#3FB6D3;}.st1{fill:#27AACD;}.st2{fill:#19599A;}.st3{fill:url(#SVGID_1_);}.st4{fill:url(#SVGID_2_);}</style><g id="Capa_4"><g><g><path class="st0" d="M 12.3,64.2 76.3,0 115.7,0 32.1,83.6 z"/><path class="st0" d="M 76.3,128 115.7,128 81.6,93.9 115.7,59.1 76.3,59.1 42.2,93.5 z"/></g><path class="st1" d="M 81.6,93.9 61.6,73.9 42.2,93.5 61.6,113.1 z"/><path class="st2" d="M 115.7,128 81.6,93.9 61.6,113.1 76.3,128 z"/><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="59.3649" y1="116.3598" x2="86.8249" y2="99.3992"><stop offset="0" style="stop-color:#1B4E94"/><stop offset="0.6305" style="stop-color:#1A5497"/><stop offset="1" style="stop-color:#195A9B"/></linearGradient><path class="st3" d="M 61.6,113.1 92.4,104.7 81.6,93.9 z"/></g></g></svg>
<svg id="flutter-original" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="Capa_4"><g><g><path fill="#3FB6D3" d="M 12.3,64.2 76.3,0 115.7,0 32.1,83.6 z"/><path fill="#3FB6D3" d="M 76.3,128 115.7,128 81.6,93.9 115.7,59.1 76.3,59.1 42.2,93.5 z"/></g><path fill="#27AACD" d="M 81.6,93.9 61.6,73.9 42.2,93.5 61.6,113.1 z"/><path fill="#19599A" d="M 115.7,128 81.6,93.9 61.6,113.1 76.3,128 z"/><linearGradient id="SVGID_1_FLUTTER" gradientUnits="userSpaceOnUse" x1="59.3649" y1="116.3598" x2="86.8249" y2="99.3992"><stop offset="0" style="stop-color:#1B4E94"/><stop offset="0.6305" style="stop-color:#1A5497"/><stop offset="1" style="stop-color:#195A9B"/></linearGradient><path fill="url(#SVGID_1_FLUTTER)" d="M 61.6,113.1 92.4,104.7 81.6,93.9 z"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 889 B

After

Width:  |  Height:  |  Size: 785 B

View File

@ -1 +1 @@
<svg id="flutter" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><style type="text/css">.st1{fill:#3FB6D3;}</style><path class="st1" d="M 12.3 64.2 76.3 0 115.7 0 32.1 83.6z"/><path class="st1" d="M 76.3 128 115.7 128 81.6 93.9 115.7 59.1 76.3 59.1 42.2 93.5z"/></svg>
<svg id="flutter" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#3FB6D3" d="M 12.3 64.2 76.3 0 115.7 0 32.1 83.6z"/><path fill="#3FB6D3" d="M 76.3 128 115.7 128 81.6 93.9 115.7 59.1 76.3 59.1 42.2 93.5z"/></svg>

Before

Width:  |  Height:  |  Size: 278 B

After

Width:  |  Height:  |  Size: 234 B

View File

@ -2,10 +2,7 @@
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E77500;}
</style>
<path class="st0" d="M25.5,43.6H8.8c-4.6,0-8.3,3.7-8.3,8.3v16.7c0,4.6,3.7,8.3,8.3,8.3h16.7c4.6,0,8.3-3.7,8.3-8.3V51.9
<path fill="#E77500" d="M25.5,43.6H8.8c-4.6,0-8.3,3.7-8.3,8.3v16.7c0,4.6,3.7,8.3,8.3,8.3h16.7c4.6,0,8.3-3.7,8.3-8.3V51.9
C33.8,47.4,30,43.6,25.5,43.6z M18.5,71.3C12.3,72.2,6.3,67.8,5.7,62c-0.8-6.8,3.7-12.3,10.5-12.8c3-0.2,6-0.1,9,0
c0.5,0,2.3,0,2.3,0s0,0.7,0,0.9c0.1,0.9-0.2,2.2-0.9,2.7c-1,0.8-2.4,1.3-3.7,1.5c-1.7,0.2-3.4,0-5.2,0.1c-3.8,0.1-6.3,1.8-6.8,4.6
c-0.5,2.9,0.4,5.3,3.2,6.6c3.1,1.5,6.2,0.6,8.9-2.7c-3.4-0.7-7.8,1.1-8.3-4.7c4.7,0,9.3,0,13.9,0C29.6,65,25.5,70.4,18.5,71.3z

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -2,10 +2,7 @@
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E77500;}
</style>
<path class="st0" d="M94.3,3.9H33.7C17.1,3.9,3.5,17.5,3.5,34.1v60.6c0,16.6,13.6,30.2,30.2,30.2h60.6c16.6,0,30.2-13.6,30.2-30.2
<path fill="#E77500" d="M94.3,3.9H33.7C17.1,3.9,3.5,17.5,3.5,34.1v60.6c0,16.6,13.6,30.2,30.2,30.2h60.6c16.6,0,30.2-13.6,30.2-30.2
V34.1C124.5,17.5,110.9,3.9,94.3,3.9z M68.9,104.7c-22.4,3-44.2-12.9-46.6-34.1c-2.8-24.8,13.4-44.8,38.2-46.4
c10.8-0.7,21.8-0.4,32.7,0c1.8,0.1,8.2,0.1,8.2,0.1s0,2.6,0,3.1c0.2,3.3-0.9,8-3.3,9.9c-3.7,2.9-8.7,4.7-13.4,5.4
c-6.2,0.9-12.5,0.1-18.8,0.3C52,43.3,43.1,49.4,41.3,59.9C39.5,70.5,42.8,79,52.9,83.8C64,89.1,75.3,86,85.2,73.9

Before

Width:  |  Height:  |  Size: 956 B

After

Width:  |  Height:  |  Size: 905 B

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><style type="text/css">.st0{fill:#64328B;}</style><path class="st0" d="M17.4,47.3c-9.2,0-16.7,7.5-16.7,16.7v0c0,9.2,7.5,16.7,16.7,16.7s16.7-7.5,16.7-16.7v0 C34.1,54.8,26.6,47.3,17.4,47.3z M4.1,64.1l13.3,13.3C10,77.4,4.1,71.4,4.1,64.1z M20.3,77l-15.9-16c1.4-5.9,6.6-10.3,13-10.3 c4.3,0,8.2,2.1,10.6,5.3l-2,1.9c-1.9-2.7-5.1-4.5-8.7-4.5c-4.6,0-8.5,2.9-10,7C9.3,62.2,20.3,73.2,21,74c3.3-1.2,5.8-4.1,6.7-7.6 H22V64l8.6,0.1C30.6,70.4,26.2,75.7,20.3,77z"/><path d="M56.9,63.9v2.8l4.7,0c-0.9,2.3-3.2,4-5.9,4c-3.5,0-6.4-2.9-6.4-6.4s2.9-6.4,6.4-6.4c2,0,3.8,0.9,5,2.4l2.8-2 c-1.8-2.3-4.6-3.8-7.7-3.8h-0.2c-5.4,0-9.7,4.3-9.7,9.7s4.3,9.7,9.7,9.7h0.2c5.4,0,9.7-4.3,9.7-9.7c0-0.2,0-0.3,0-0.4L56.9,63.9z"/><path d="M75.8,63.4c-1-1.3-2.4-2.1-4.1-2.1c-3,0-5.4,2.9-5.4,6.4c0,3.5,2.4,6.4,5.4,6.4c1.7,0,3.2-0.9,4.2-2.3v1.6h3.3V61.6h-3.4 V63.4z M73.1,70.9c-1.9,0-3.4-1.5-3.4-3.4c0-1.9,1.5-3.4,3.4-3.4c1.9,0,3.4,1.5,3.4,3.4C76.5,69.4,74.9,70.9,73.1,70.9z"/><path d="M107.4,61.2c-1.6,0-3.1,0.8-4.1,2.1v-1.7v-8H100v8v11.7h3.3v-1.6c1,1.4,2.5,2.3,4.2,2.3c3,0,5.4-2.9,5.4-6.4 C112.9,64.1,110.4,61.2,107.4,61.2z M106.1,70.9c-1.9,0-3.4-1.5-3.4-3.4c0-1.9,1.5-3.4,3.4-3.4c1.9,0,3.4,1.5,3.4,3.4 C109.4,69.4,107.9,70.9,106.1,70.9z"/><path d="M 85.5,57.6 82.4,57.6 82.4,61.6 81.1,61.6 81.1,64.3 82.3,64.3 82.3,73.3 85.5,73.3 85.5,64.3 88,64.3 88,61.6 85.5,61.6 z"/><path d="M93.1,65.5c-0.9,0-1.3-3.5,2.8-1.1l1.6-1.9c0,0-3.9-2.8-7.2,0c-2.4,3.5,1.1,5.2,1.1,5.2l2.1,0.9c0,0,2.9,1.3,0,2.8 c-2.4,0.1-3.2-1.6-3.2-1.6l-1.6,2c0,0,4.3,4.4,8.9,0C100,66.1,94.4,66.1,93.1,65.5z"/><path d="M 123.7,61.6 120.3,68.3 116.7,61.6 112.9,61.6 118.4,71.8 114,79.8 117.9,79.8 127.4,61.6 z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328B" d="M17.4,47.3c-9.2,0-16.7,7.5-16.7,16.7v0c0,9.2,7.5,16.7,16.7,16.7s16.7-7.5,16.7-16.7v0 C34.1,54.8,26.6,47.3,17.4,47.3z M4.1,64.1l13.3,13.3C10,77.4,4.1,71.4,4.1,64.1z M20.3,77l-15.9-16c1.4-5.9,6.6-10.3,13-10.3 c4.3,0,8.2,2.1,10.6,5.3l-2,1.9c-1.9-2.7-5.1-4.5-8.7-4.5c-4.6,0-8.5,2.9-10,7C9.3,62.2,20.3,73.2,21,74c3.3-1.2,5.8-4.1,6.7-7.6 H22V64l8.6,0.1C30.6,70.4,26.2,75.7,20.3,77z"/><path d="M56.9,63.9v2.8l4.7,0c-0.9,2.3-3.2,4-5.9,4c-3.5,0-6.4-2.9-6.4-6.4s2.9-6.4,6.4-6.4c2,0,3.8,0.9,5,2.4l2.8-2 c-1.8-2.3-4.6-3.8-7.7-3.8h-0.2c-5.4,0-9.7,4.3-9.7,9.7s4.3,9.7,9.7,9.7h0.2c5.4,0,9.7-4.3,9.7-9.7c0-0.2,0-0.3,0-0.4L56.9,63.9z"/><path d="M75.8,63.4c-1-1.3-2.4-2.1-4.1-2.1c-3,0-5.4,2.9-5.4,6.4c0,3.5,2.4,6.4,5.4,6.4c1.7,0,3.2-0.9,4.2-2.3v1.6h3.3V61.6h-3.4 V63.4z M73.1,70.9c-1.9,0-3.4-1.5-3.4-3.4c0-1.9,1.5-3.4,3.4-3.4c1.9,0,3.4,1.5,3.4,3.4C76.5,69.4,74.9,70.9,73.1,70.9z"/><path d="M107.4,61.2c-1.6,0-3.1,0.8-4.1,2.1v-1.7v-8H100v8v11.7h3.3v-1.6c1,1.4,2.5,2.3,4.2,2.3c3,0,5.4-2.9,5.4-6.4 C112.9,64.1,110.4,61.2,107.4,61.2z M106.1,70.9c-1.9,0-3.4-1.5-3.4-3.4c0-1.9,1.5-3.4,3.4-3.4c1.9,0,3.4,1.5,3.4,3.4 C109.4,69.4,107.9,70.9,106.1,70.9z"/><path d="M 85.5,57.6 82.4,57.6 82.4,61.6 81.1,61.6 81.1,64.3 82.3,64.3 82.3,73.3 85.5,73.3 85.5,64.3 88,64.3 88,61.6 85.5,61.6 z"/><path d="M93.1,65.5c-0.9,0-1.3-3.5,2.8-1.1l1.6-1.9c0,0-3.9-2.8-7.2,0c-2.4,3.5,1.1,5.2,1.1,5.2l2.1,0.9c0,0,2.9,1.3,0,2.8 c-2.4,0.1-3.2-1.6-3.2-1.6l-1.6,2c0,0,4.3,4.4,8.9,0C100,66.1,94.4,66.1,93.1,65.5z"/><path d="M 123.7,61.6 120.3,68.3 116.7,61.6 112.9,61.6 118.4,71.8 114,79.8 117.9,79.8 127.4,61.6 z"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1 +1 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><style type="text/css">.st2{fill:#64328B;}</style><path class="st2" d="M64,0C28.7,0,0,28.7,0,64v0c0,35.3,28.7,64,64,64s64-28.7,64-64v0C128,28.7,99.3,0,64,0z M13.2,64L64,114.8 C35.9,114.8,13.2,92.1,13.2,64z M75.4,113.5l-60.9-61C19.7,30,39.9,13.2,64,13.2c16.6,0,31.3,7.9,40.5,20.2l-7.5,7.2 C89.7,30.2,77.7,23.5,64,23.5c-17.6,0-32.5,11.2-38.1,26.8C33.1,57,75.4,98.8,78.1,102c12.7-4.7,22.3-15.5,25.4-28.9H81.9v-9.4 l33,0.2C114.8,88.2,98,108.4,75.4,113.5z"/></svg>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328B" d="M64,0C28.7,0,0,28.7,0,64v0c0,35.3,28.7,64,64,64s64-28.7,64-64v0C128,28.7,99.3,0,64,0z M13.2,64L64,114.8 C35.9,114.8,13.2,92.1,13.2,64z M75.4,113.5l-60.9-61C19.7,30,39.9,13.2,64,13.2c16.6,0,31.3,7.9,40.5,20.2l-7.5,7.2 C89.7,30.2,77.7,23.5,64,23.5c-17.6,0-32.5,11.2-38.1,26.8C33.1,57,75.4,98.8,78.1,102c12.7-4.7,22.3-15.5,25.4-28.9H81.9v-9.4 l33,0.2C114.8,88.2,98,108.4,75.4,113.5z"/></svg>

Before

Width:  |  Height:  |  Size: 535 B

After

Width:  |  Height:  |  Size: 488 B

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><style type="text/css">.st0{fill:#64328B;}</style><path class="st0" d="M17.4,47.3c-9.2,0-16.7,7.5-16.7,16.7v0c0,9.2,7.5,16.7,16.7,16.7s16.7-7.5,16.7-16.7v0 C34.1,54.8,26.6,47.3,17.4,47.3z M4.1,64.1l13.3,13.3C10,77.4,4.1,71.4,4.1,64.1z M20.3,77l-15.9-16c1.4-5.9,6.6-10.3,13-10.3 c4.3,0,8.2,2.1,10.6,5.3l-2,1.9c-1.9-2.7-5.1-4.5-8.7-4.5c-4.6,0-8.5,2.9-10,7C9.3,62.2,20.3,73.2,21,74c3.3-1.2,5.8-4.1,6.7-7.6 H22V64l8.6,0.1C30.6,70.4,26.2,75.7,20.3,77z"/><path class="st0" d="M57.1,63.9v2.8l4.7,0c-0.9,2.3-3.2,4-5.9,4c-3.5,0-6.4-2.9-6.4-6.4s2.9-6.4,6.4-6.4c2,0,3.8,0.9,5,2.4l2.8-2 c-1.8-2.3-4.6-3.8-7.7-3.8h-0.2c-5.4,0-9.7,4.3-9.7,9.7s4.3,9.7,9.7,9.7h0.2c5.4,0,9.7-4.3,9.7-9.7c0-0.2,0-0.3,0-0.4L57.1,63.9z"/><path class="st0" d="M75.9,63.4c-1-1.3-2.4-2.1-4.1-2.1c-3,0-5.4,2.9-5.4,6.4c0,3.5,2.4,6.4,5.4,6.4c1.7,0,3.2-0.9,4.2-2.3v1.6 h3.3V61.6h-3.4V63.4z M73.2,70.9c-1.9,0-3.4-1.5-3.4-3.4c0-1.9,1.5-3.4,3.4-3.4c1.9,0,3.4,1.5,3.4,3.4 C76.6,69.4,75.1,70.9,73.2,70.9z"/><path class="st0" d="M107.6,61.2c-1.6,0-3.1,0.8-4.1,2.1v-1.7v-8h-3.4v8v11.7h3.3v-1.6c1,1.4,2.5,2.3,4.2,2.3c3,0,5.4-2.9,5.4-6.4 C113,64.1,110.6,61.2,107.6,61.2z M106.2,70.9c-1.9,0-3.4-1.5-3.4-3.4c0-1.9,1.5-3.4,3.4-3.4c1.9,0,3.4,1.5,3.4,3.4 C109.6,69.4,108.1,70.9,106.2,70.9z"/><path class="st0" d="M 85.7,57.6 82.5,57.6 82.5,61.6 81.2,61.6 81.2,64.3 82.5,64.3 82.5,73.3 85.7,73.3 85.7,64.3 88.1,64.3 88.1,61.6 85.7,61.6 z"/><path class="st0" d="M93.2,65.5c-0.9,0-1.3-3.5,2.8-1.1l1.6-1.9c0,0-3.9-2.8-7.2,0c-2.4,3.5,1.1,5.2,1.1,5.2l2.1,0.9 c0,0,2.9,1.3,0,2.8c-2.4,0.1-3.2-1.6-3.2-1.6l-1.6,2c0,0,4.3,4.4,8.9,0C100.1,66.1,94.6,66.1,93.2,65.5z"/><path class="st0" d="M 123.8,61.6 120.4,68.3 116.8,61.6 113,61.6 118.5,71.8 114.2,79.8 118,79.8 127.5,61.6 z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328B" d="M17.4,47.3c-9.2,0-16.7,7.5-16.7,16.7v0c0,9.2,7.5,16.7,16.7,16.7s16.7-7.5,16.7-16.7v0 C34.1,54.8,26.6,47.3,17.4,47.3z M4.1,64.1l13.3,13.3C10,77.4,4.1,71.4,4.1,64.1z M20.3,77l-15.9-16c1.4-5.9,6.6-10.3,13-10.3 c4.3,0,8.2,2.1,10.6,5.3l-2,1.9c-1.9-2.7-5.1-4.5-8.7-4.5c-4.6,0-8.5,2.9-10,7C9.3,62.2,20.3,73.2,21,74c3.3-1.2,5.8-4.1,6.7-7.6 H22V64l8.6,0.1C30.6,70.4,26.2,75.7,20.3,77z"/><path fill="#64328B" d="M57.1,63.9v2.8l4.7,0c-0.9,2.3-3.2,4-5.9,4c-3.5,0-6.4-2.9-6.4-6.4s2.9-6.4,6.4-6.4c2,0,3.8,0.9,5,2.4l2.8-2 c-1.8-2.3-4.6-3.8-7.7-3.8h-0.2c-5.4,0-9.7,4.3-9.7,9.7s4.3,9.7,9.7,9.7h0.2c5.4,0,9.7-4.3,9.7-9.7c0-0.2,0-0.3,0-0.4L57.1,63.9z"/><path fill="#64328B" d="M75.9,63.4c-1-1.3-2.4-2.1-4.1-2.1c-3,0-5.4,2.9-5.4,6.4c0,3.5,2.4,6.4,5.4,6.4c1.7,0,3.2-0.9,4.2-2.3v1.6 h3.3V61.6h-3.4V63.4z M73.2,70.9c-1.9,0-3.4-1.5-3.4-3.4c0-1.9,1.5-3.4,3.4-3.4c1.9,0,3.4,1.5,3.4,3.4 C76.6,69.4,75.1,70.9,73.2,70.9z"/><path fill="#64328B" d="M107.6,61.2c-1.6,0-3.1,0.8-4.1,2.1v-1.7v-8h-3.4v8v11.7h3.3v-1.6c1,1.4,2.5,2.3,4.2,2.3c3,0,5.4-2.9,5.4-6.4 C113,64.1,110.6,61.2,107.6,61.2z M106.2,70.9c-1.9,0-3.4-1.5-3.4-3.4c0-1.9,1.5-3.4,3.4-3.4c1.9,0,3.4,1.5,3.4,3.4 C109.6,69.4,108.1,70.9,106.2,70.9z"/><path fill="#64328B" d="M 85.7,57.6 82.5,57.6 82.5,61.6 81.2,61.6 81.2,64.3 82.5,64.3 82.5,73.3 85.7,73.3 85.7,64.3 88.1,64.3 88.1,61.6 85.7,61.6 z"/><path fill="#64328B" d="M93.2,65.5c-0.9,0-1.3-3.5,2.8-1.1l1.6-1.9c0,0-3.9-2.8-7.2,0c-2.4,3.5,1.1,5.2,1.1,5.2l2.1,0.9 c0,0,2.9,1.3,0,2.8c-2.4,0.1-3.2-1.6-3.2-1.6l-1.6,2c0,0,4.3,4.4,8.9,0C100.1,66.1,94.6,66.1,93.2,65.5z"/><path fill="#64328B" d="M 123.8,61.6 120.4,68.3 116.8,61.6 113,61.6 118.5,71.8 114.2,79.8 118,79.8 127.5,61.6 z"/></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1 +1 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><style type="text/css">.st2{fill:#64328B;}</style><path class="st2" d="M64,0C28.7,0,0,28.7,0,64v0c0,35.3,28.7,64,64,64s64-28.7,64-64v0C128,28.7,99.3,0,64,0z M13.2,64L64,114.8 C35.9,114.8,13.2,92.1,13.2,64z M75.4,113.5l-60.9-61C19.7,30,39.9,13.2,64,13.2c16.6,0,31.3,7.9,40.5,20.2l-7.5,7.2 C89.7,30.2,77.7,23.5,64,23.5c-17.6,0-32.5,11.2-38.1,26.8C33.1,57,75.4,98.8,78.1,102c12.7-4.7,22.3-15.5,25.4-28.9H81.9v-9.4 l33,0.2C114.8,88.2,98,108.4,75.4,113.5z"/></svg>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#64328B" d="M64,0C28.7,0,0,28.7,0,64v0c0,35.3,28.7,64,64,64s64-28.7,64-64v0C128,28.7,99.3,0,64,0z M13.2,64L64,114.8 C35.9,114.8,13.2,92.1,13.2,64z M75.4,113.5l-60.9-61C19.7,30,39.9,13.2,64,13.2c16.6,0,31.3,7.9,40.5,20.2l-7.5,7.2 C89.7,30.2,77.7,23.5,64,23.5c-17.6,0-32.5,11.2-38.1,26.8C33.1,57,75.4,98.8,78.1,102c12.7-4.7,22.3-15.5,25.4-28.9H81.9v-9.4 l33,0.2C114.8,88.2,98,108.4,75.4,113.5z"/></svg>

Before

Width:  |  Height:  |  Size: 535 B

After

Width:  |  Height:  |  Size: 488 B

View File

@ -1 +1 @@
<svg id="google" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#4885ed;}.cls-2{fill:#db3236;}.cls-3{fill:#f4c20d;}.cls-4{fill:#3cba54;}</style></defs><title>google</title><g id="original-wordmark"><path id="path2998" class="cls-1" d="M31.85,57.91H17.09v4.38H27.56c-.52,6.14-5.63,8.76-10.45,8.76a11.7,11.7,0,0,1,0-23.4A11.36,11.36,0,0,1,25,50.82l3.07-3.18A15.59,15.59,0,0,0,17,43.26a16.09,16.09,0,1,0,.23,32.18c8.61,0,14.92-5.9,14.92-14.63a13.13,13.13,0,0,0-.27-2.9Z"/><path id="path3000" class="cls-2" d="M43.94,54.74A10.34,10.34,0,1,0,54.32,65.12,10.22,10.22,0,0,0,43.94,54.74ZM44,58.8a6.29,6.29,0,1,1-5.92,6.26A5.95,5.95,0,0,1,44,58.8Z"/><path id="path3005" class="cls-3" d="M66.56,54.74A10.34,10.34,0,1,0,76.93,65.12,10.22,10.22,0,0,0,66.56,54.74Zm.06,4.06a6.29,6.29,0,1,1-5.92,6.26,5.95,5.95,0,0,1,5.92-6.26Z"/><path id="path3007" class="cls-1" d="M88.73,54.75c-5.56,0-9.93,4.87-9.93,10.33a10.2,10.2,0,0,0,9.83,10.35,6.83,6.83,0,0,0,5.67-2.51v2c0,3.57-2.17,5.7-5.44,5.7A5.73,5.73,0,0,1,83.58,77l-4,1.66a10,10,0,0,0,9.3,6.09c5.53,0,9.74-3.48,9.74-10.78V55.37H94.31v1.75a7.32,7.32,0,0,0-5.58-2.37Zm.4,4.05c2.73,0,5.52,2.33,5.52,6.3s-2.79,6.27-5.58,6.27a5.88,5.88,0,0,1-5.72-6.23c0-4,2.86-6.34,5.78-6.34Z"/><path id="path3011" class="cls-2" d="M117.93,54.72c-5.24,0-9.65,4.17-9.65,10.33a10,10,0,0,0,10.15,10.38,10.49,10.49,0,0,0,8.66-4.54l-3.58-2.38a5.79,5.79,0,0,1-5.07,2.85,5.32,5.32,0,0,1-5.07-3.13l13.87-5.75-.72-1.69a9.36,9.36,0,0,0-8.6-6.06Zm.18,4a4.12,4.12,0,0,1,3.83,2.21l-9.26,3.87a5.74,5.74,0,0,1,5.43-6.08Z"/><path id="path3015" class="cls-4" d="M101.67,74.82h4.56V44.33h-4.56Z"/></g></svg>
<svg id="google" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original-wordmark"><path id="path2998" fill="#4885ed" d="M31.85,57.91H17.09v4.38H27.56c-.52,6.14-5.63,8.76-10.45,8.76a11.7,11.7,0,0,1,0-23.4A11.36,11.36,0,0,1,25,50.82l3.07-3.18A15.59,15.59,0,0,0,17,43.26a16.09,16.09,0,1,0,.23,32.18c8.61,0,14.92-5.9,14.92-14.63a13.13,13.13,0,0,0-.27-2.9Z"/><path id="path3000" fill="#db3236" d="M43.94,54.74A10.34,10.34,0,1,0,54.32,65.12,10.22,10.22,0,0,0,43.94,54.74ZM44,58.8a6.29,6.29,0,1,1-5.92,6.26A5.95,5.95,0,0,1,44,58.8Z"/><path id="path3005" fill="#f4c20d" d="M66.56,54.74A10.34,10.34,0,1,0,76.93,65.12,10.22,10.22,0,0,0,66.56,54.74Zm.06,4.06a6.29,6.29,0,1,1-5.92,6.26,5.95,5.95,0,0,1,5.92-6.26Z"/><path id="path3007" fill="#4885ed" d="M88.73,54.75c-5.56,0-9.93,4.87-9.93,10.33a10.2,10.2,0,0,0,9.83,10.35,6.83,6.83,0,0,0,5.67-2.51v2c0,3.57-2.17,5.7-5.44,5.7A5.73,5.73,0,0,1,83.58,77l-4,1.66a10,10,0,0,0,9.3,6.09c5.53,0,9.74-3.48,9.74-10.78V55.37H94.31v1.75a7.32,7.32,0,0,0-5.58-2.37Zm.4,4.05c2.73,0,5.52,2.33,5.52,6.3s-2.79,6.27-5.58,6.27a5.88,5.88,0,0,1-5.72-6.23c0-4,2.86-6.34,5.78-6.34Z"/><path id="path3011" fill="#db3236" d="M117.93,54.72c-5.24,0-9.65,4.17-9.65,10.33a10,10,0,0,0,10.15,10.38,10.49,10.49,0,0,0,8.66-4.54l-3.58-2.38a5.79,5.79,0,0,1-5.07,2.85,5.32,5.32,0,0,1-5.07-3.13l13.87-5.75-.72-1.69a9.36,9.36,0,0,0-8.6-6.06Zm.18,4a4.12,4.12,0,0,1,3.83,2.21l-9.26,3.87a5.74,5.74,0,0,1,5.43-6.08Z"/><path id="path3015" fill="#3cba54" d="M101.67,74.82h4.56V44.33h-4.56Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1 +1 @@
<svg id="google" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#e33629;}.cls-3{fill:#f8bd00;}.cls-4{fill:#587dbd;}.cls-5{fill:#319f43;}</style></defs><title>google</title><g id="original"><path class="cls-1" d="M44.59,4.21a63.28,63.28,0,0,0,4.33,120.9,67.6,67.6,0,0,0,32.36.35A57.13,57.13,0,0,0,107.18,112a57.44,57.44,0,0,0,16-26.26,74.33,74.33,0,0,0,1.61-33.58H65.27c0,8.23,0,16.46,0,24.69H99.74A29.72,29.72,0,0,1,87.08,96.37a36.16,36.16,0,0,1-13.93,5.5,41.29,41.29,0,0,1-15.1,0A37.16,37.16,0,0,1,44,95.74a39.3,39.3,0,0,1-14.5-19.42,38.31,38.31,0,0,1,0-24.63,39.25,39.25,0,0,1,9.18-14.91A37.17,37.17,0,0,1,76.13,27a34.28,34.28,0,0,1,13.64,8q5.83-5.8,11.64-11.63c2-2.09,4.18-4.08,6.15-6.22A61.22,61.22,0,0,0,87.2,4.59,64,64,0,0,0,44.59,4.21Z"/><path class="cls-2" d="M44.59,4.21a64,64,0,0,1,42.61.37A61.22,61.22,0,0,1,107.55,17.2c-2,2.14-4.11,4.14-6.15,6.22Q95.58,29.23,89.77,35a34.28,34.28,0,0,0-13.64-8,37.17,37.17,0,0,0-37.46,9.74,39.25,39.25,0,0,0-9.18,14.91L8.76,35.6A63.53,63.53,0,0,1,44.59,4.21Z"/><path class="cls-3" d="M3.26,51.5a62.93,62.93,0,0,1,5.5-15.9L29.49,51.69a38.31,38.31,0,0,0,0,24.63q-10.36,8-20.73,16.08A63.33,63.33,0,0,1,3.26,51.5Z"/><path class="cls-4" d="M65.27,52.15h59.52a74.33,74.33,0,0,1-1.61,33.58,57.44,57.44,0,0,1-16,26.26c-6.69-5.22-13.41-10.4-20.1-15.62A29.72,29.72,0,0,0,99.74,76.83H65.27C65.26,68.61,65.27,60.38,65.27,52.15Z"/><path class="cls-5" d="M8.75,92.4q10.37-8,20.73-16.08A39.3,39.3,0,0,0,44,95.74a37.16,37.16,0,0,0,14.08,6.08,41.29,41.29,0,0,0,15.1,0,36.16,36.16,0,0,0,13.93-5.5c6.69,5.22,13.41,10.4,20.1,15.62a57.13,57.13,0,0,1-25.9,13.47,67.6,67.6,0,0,1-32.36-.35,63,63,0,0,1-23-11.59A63.73,63.73,0,0,1,8.75,92.4Z"/></g></svg>
<svg id="google" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="original"><path fill="#fff" d="M44.59,4.21a63.28,63.28,0,0,0,4.33,120.9,67.6,67.6,0,0,0,32.36.35A57.13,57.13,0,0,0,107.18,112a57.44,57.44,0,0,0,16-26.26,74.33,74.33,0,0,0,1.61-33.58H65.27c0,8.23,0,16.46,0,24.69H99.74A29.72,29.72,0,0,1,87.08,96.37a36.16,36.16,0,0,1-13.93,5.5,41.29,41.29,0,0,1-15.1,0A37.16,37.16,0,0,1,44,95.74a39.3,39.3,0,0,1-14.5-19.42,38.31,38.31,0,0,1,0-24.63,39.25,39.25,0,0,1,9.18-14.91A37.17,37.17,0,0,1,76.13,27a34.28,34.28,0,0,1,13.64,8q5.83-5.8,11.64-11.63c2-2.09,4.18-4.08,6.15-6.22A61.22,61.22,0,0,0,87.2,4.59,64,64,0,0,0,44.59,4.21Z"/><path fill="#e33629" d="M44.59,4.21a64,64,0,0,1,42.61.37A61.22,61.22,0,0,1,107.55,17.2c-2,2.14-4.11,4.14-6.15,6.22Q95.58,29.23,89.77,35a34.28,34.28,0,0,0-13.64-8,37.17,37.17,0,0,0-37.46,9.74,39.25,39.25,0,0,0-9.18,14.91L8.76,35.6A63.53,63.53,0,0,1,44.59,4.21Z"/><path fill="#f8bd00" d="M3.26,51.5a62.93,62.93,0,0,1,5.5-15.9L29.49,51.69a38.31,38.31,0,0,0,0,24.63q-10.36,8-20.73,16.08A63.33,63.33,0,0,1,3.26,51.5Z"/><path fill="#587dbd" d="M65.27,52.15h59.52a74.33,74.33,0,0,1-1.61,33.58,57.44,57.44,0,0,1-16,26.26c-6.69-5.22-13.41-10.4-20.1-15.62A29.72,29.72,0,0,0,99.74,76.83H65.27C65.26,68.61,65.27,60.38,65.27,52.15Z"/><path fill="#319f43" d="M8.75,92.4q10.37-8,20.73-16.08A39.3,39.3,0,0,0,44,95.74a37.16,37.16,0,0,0,14.08,6.08,41.29,41.29,0,0,0,15.1,0,36.16,36.16,0,0,0,13.93-5.5c6.69,5.22,13.41,10.4,20.1,15.62a57.13,57.13,0,0,1-25.9,13.47,67.6,67.6,0,0,1-32.36-.35,63,63,0,0,1-23-11.59A63.73,63.73,0,0,1,8.75,92.4Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1 +1 @@
<svg id="google" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#587dbd;}</style></defs><title>google</title><g id="plain-wordmark"><path id="path2998" class="cls-1" d="M31.85,57.91H17.09v4.38H27.56c-.52,6.14-5.63,8.76-10.45,8.76a11.7,11.7,0,0,1,0-23.4A11.36,11.36,0,0,1,25,50.82l3.07-3.18A15.59,15.59,0,0,0,17,43.26a16.09,16.09,0,1,0,.23,32.18c8.61,0,14.92-5.9,14.92-14.63a13.13,13.13,0,0,0-.27-2.9Z"/><path id="path3000" class="cls-1" d="M43.94,54.74A10.34,10.34,0,1,0,54.32,65.12,10.22,10.22,0,0,0,43.94,54.74ZM44,58.8a6.29,6.29,0,1,1-5.92,6.26A5.95,5.95,0,0,1,44,58.8Z"/><path id="path3005" class="cls-1" d="M66.56,54.74A10.34,10.34,0,1,0,76.93,65.12,10.22,10.22,0,0,0,66.56,54.74Zm.06,4.06a6.29,6.29,0,1,1-5.92,6.26,5.95,5.95,0,0,1,5.92-6.26Z"/><path id="path3007" class="cls-1" d="M88.73,54.75c-5.56,0-9.93,4.87-9.93,10.33a10.2,10.2,0,0,0,9.83,10.35,6.83,6.83,0,0,0,5.67-2.51v2c0,3.57-2.17,5.7-5.44,5.7A5.73,5.73,0,0,1,83.58,77l-4,1.66a10,10,0,0,0,9.3,6.09c5.53,0,9.74-3.48,9.74-10.78V55.37H94.31v1.75a7.32,7.32,0,0,0-5.58-2.37Zm.4,4.05c2.73,0,5.52,2.33,5.52,6.3s-2.79,6.27-5.58,6.27a5.88,5.88,0,0,1-5.72-6.23c0-4,2.86-6.34,5.78-6.34Z"/><path id="path3011" class="cls-1" d="M117.93,54.72c-5.24,0-9.65,4.17-9.65,10.33a10,10,0,0,0,10.15,10.38,10.49,10.49,0,0,0,8.66-4.54l-3.58-2.38a5.79,5.79,0,0,1-5.07,2.85,5.32,5.32,0,0,1-5.07-3.13l13.87-5.75-.72-1.69a9.36,9.36,0,0,0-8.6-6.06Zm.18,4a4.12,4.12,0,0,1,3.83,2.21l-9.26,3.87a5.74,5.74,0,0,1,5.43-6.08Z"/><path id="path3015" class="cls-1" d="M101.67,74.82h4.56V44.33h-4.56Z"/></g></svg>
<svg id="google" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain-wordmark"><path id="path2998" fill="#587dbd" d="M31.85,57.91H17.09v4.38H27.56c-.52,6.14-5.63,8.76-10.45,8.76a11.7,11.7,0,0,1,0-23.4A11.36,11.36,0,0,1,25,50.82l3.07-3.18A15.59,15.59,0,0,0,17,43.26a16.09,16.09,0,1,0,.23,32.18c8.61,0,14.92-5.9,14.92-14.63a13.13,13.13,0,0,0-.27-2.9Z"/><path id="path3000" fill="#587dbd" d="M43.94,54.74A10.34,10.34,0,1,0,54.32,65.12,10.22,10.22,0,0,0,43.94,54.74ZM44,58.8a6.29,6.29,0,1,1-5.92,6.26A5.95,5.95,0,0,1,44,58.8Z"/><path id="path3005" fill="#587dbd" d="M66.56,54.74A10.34,10.34,0,1,0,76.93,65.12,10.22,10.22,0,0,0,66.56,54.74Zm.06,4.06a6.29,6.29,0,1,1-5.92,6.26,5.95,5.95,0,0,1,5.92-6.26Z"/><path id="path3007" fill="#587dbd" d="M88.73,54.75c-5.56,0-9.93,4.87-9.93,10.33a10.2,10.2,0,0,0,9.83,10.35,6.83,6.83,0,0,0,5.67-2.51v2c0,3.57-2.17,5.7-5.44,5.7A5.73,5.73,0,0,1,83.58,77l-4,1.66a10,10,0,0,0,9.3,6.09c5.53,0,9.74-3.48,9.74-10.78V55.37H94.31v1.75a7.32,7.32,0,0,0-5.58-2.37Zm.4,4.05c2.73,0,5.52,2.33,5.52,6.3s-2.79,6.27-5.58,6.27a5.88,5.88,0,0,1-5.72-6.23c0-4,2.86-6.34,5.78-6.34Z"/><path id="path3011" fill="#587dbd" d="M117.93,54.72c-5.24,0-9.65,4.17-9.65,10.33a10,10,0,0,0,10.15,10.38,10.49,10.49,0,0,0,8.66-4.54l-3.58-2.38a5.79,5.79,0,0,1-5.07,2.85,5.32,5.32,0,0,1-5.07-3.13l13.87-5.75-.72-1.69a9.36,9.36,0,0,0-8.6-6.06Zm.18,4a4.12,4.12,0,0,1,3.83,2.21l-9.26,3.87a5.74,5.74,0,0,1,5.43-6.08Z"/><path id="path3015" fill="#587dbd" d="M101.67,74.82h4.56V44.33h-4.56Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1 +1 @@
<svg id="google" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><style>.cls-1{fill:#587dbd;}</style></defs><title>google</title><g id="plain"><path class="cls-1" d="M44.59,4.21a63.28,63.28,0,0,0,4.33,120.9,67.6,67.6,0,0,0,32.36.35A57.13,57.13,0,0,0,107.18,112a57.44,57.44,0,0,0,16-26.26,74.33,74.33,0,0,0,1.61-33.58H65.27c0,8.23,0,16.46,0,24.69H99.74A29.72,29.72,0,0,1,87.08,96.37a36.16,36.16,0,0,1-13.93,5.5,41.29,41.29,0,0,1-15.1,0A37.16,37.16,0,0,1,44,95.74a39.3,39.3,0,0,1-14.5-19.42,38.31,38.31,0,0,1,0-24.63,39.25,39.25,0,0,1,9.18-14.91A37.17,37.17,0,0,1,76.13,27a34.28,34.28,0,0,1,13.64,8q5.83-5.8,11.64-11.63c2-2.09,4.18-4.08,6.15-6.22A61.22,61.22,0,0,0,87.2,4.59,64,64,0,0,0,44.59,4.21Z"/></g></svg>
<svg id="google" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g id="plain"><path fill="#587dbd" d="M44.59,4.21a63.28,63.28,0,0,0,4.33,120.9,67.6,67.6,0,0,0,32.36.35A57.13,57.13,0,0,0,107.18,112a57.44,57.44,0,0,0,16-26.26,74.33,74.33,0,0,0,1.61-33.58H65.27c0,8.23,0,16.46,0,24.69H99.74A29.72,29.72,0,0,1,87.08,96.37a36.16,36.16,0,0,1-13.93,5.5,41.29,41.29,0,0,1-15.1,0A37.16,37.16,0,0,1,44,95.74a39.3,39.3,0,0,1-14.5-19.42,38.31,38.31,0,0,1,0-24.63,39.25,39.25,0,0,1,9.18-14.91A37.17,37.17,0,0,1,76.13,27a34.28,34.28,0,0,1,13.64,8q5.83-5.8,11.64-11.63c2-2.09,4.18-4.08,6.15-6.22A61.22,61.22,0,0,0,87.2,4.59,64,64,0,0,0,44.59,4.21Z"/></g></svg>

Before

Width:  |  Height:  |  Size: 724 B

After

Width:  |  Height:  |  Size: 655 B

View File

@ -2,10 +2,7 @@
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill:#363636;}
</style>
<path class="st0" d="M39.2,49.5c1,0.7,2,1.3,3,2c0.2,0.2,0.6,0.2,0.9,0.2c3.1-0.5,6.1,0,8.6,2c1.6,1.3,2.7,3,3.2,5
<path fill="#363636" d="M39.2,49.5c1,0.7,2,1.3,3,2c0.2,0.2,0.6,0.2,0.9,0.2c3.1-0.5,6.1,0,8.6,2c1.6,1.3,2.7,3,3.2,5
c0.1,0.6,0,0.8-0.6,0.7c-0.2,0-0.5,0-0.7,0c-1.5,0.2-2.6,0-3.4-1.7c-1-2.1-3.4-2.9-5.8-2.4c-0.1,1,0,2.1-0.2,3.1
c-0.7,3.3-2.4,6.1-5.6,7.7c-0.5,0.2-0.5,0.5-0.3,0.9c1.1,4,4.5,6.1,8.6,5.5c1.2-0.2,4.3-1.5,4.2-2c0-1,0-1.9,0-2.9
c0-0.6-0.2-0.8-0.7-0.8c-1.5,0-2.9,0-4.4,0c-0.6,0-0.8-0.2-0.7-0.8c0-0.6,0-1.2,0-1.8c0-0.5,0.1-0.7,0.6-0.6c2.8,0,5.6,0,8.5,0

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -2,10 +2,7 @@
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill:#02303A;}
</style>
<path class="st0" d="M99.5,112.5c-0.3,0-0.5,0-0.7,0c-4.5,0-9,0-13.5,0c-0.5,0-0.8-0.2-1.1-0.5c-3.2-4-6.7-7.7-10.9-10.6
<path fill="#02303A" d="M99.5,112.5c-0.3,0-0.5,0-0.7,0c-4.5,0-9,0-13.5,0c-0.5,0-0.8-0.2-1.1-0.5c-3.2-4-6.7-7.7-10.9-10.6
c-2.1-1.5-4.3-2.8-6.8-3.5c-2-0.6-4.1-0.9-6.2-0.4c-2.1,0.5-3.9,1.7-5.4,3.2c-1.9,1.9-3.2,4.2-4.2,6.7c-0.6,1.5-1.1,3-1.6,4.5
c-0.1,0.2-0.1,0.4-0.2,0.6c-3.8,0-7.5,0-11.4,0c-0.1-0.6-0.2-1.2-0.3-1.9c-0.4-2-1-4-2-5.8c-0.7-1.4-1.6-2.6-2.8-3.6
c-1.3-1.1-2.8-1.7-4.5-1.7c-1.3,0-2.4,0.5-3.5,1.2c-1.5,1-2.7,2.3-3.6,3.8c-1.4,2.2-2.2,4.7-2.9,7.2c-0.1,0.2-0.1,0.5-0.2,0.8

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,14 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg enable-background="new 0 0 128 128" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<style type="text/css">
.st0{fill:#333333;fill-opacity:0.937;}
.st1{fill:#463B63;}
.st2{fill:#5E5187;}
.st3{fill:#904F8C;}
</style>
<path class="st0" d="m47.1 52.5v18.7h-5.1v-7.3h-6.3v7.3h-5.1v-18.7h5.1v6.9h6.3v-6.9h5.1zm6.7 19c-0.7 0-1.3-0.1-1.9-0.3s-1.1-0.5-1.6-0.9c-0.4-0.4-0.8-0.9-1-1.4-0.2-0.6-0.3-1.2-0.3-1.9s0.1-1.3 0.4-1.9 0.7-1.1 1.2-1.5 1.2-0.7 1.9-1c0.7-0.2 1.5-0.3 2.4-0.3 1.1 0 2.1 0.2 2.8 0.5v-0.4c0-0.6-0.2-1.1-0.6-1.4s-1-0.5-1.8-0.5-1.5 0.1-2.2 0.4c-0.7 0.2-1.4 0.6-2.1 1.1l-1.4-3.1c1.8-1.2 3.9-1.8 6.2-1.8 2.2 0 3.9 0.5 5.1 1.5s1.8 2.5 1.8 4.4v2.7c0 0.5 0.1 0.8 0.3 1s0.5 0.3 0.9 0.3v4.2c-0.5 0.1-0.9 0.1-1.3 0.2s-0.8 0.1-1.1 0.1c-0.9 0-1.6-0.2-2.1-0.5s-0.8-0.8-0.9-1.4l-0.1-0.5c-0.6 0.8-1.3 1.4-2.1 1.8-0.7 0.4-1.6 0.6-2.5 0.6zm1.5-3.6c0.3 0 0.6 0 0.9-0.1s0.6-0.2 0.8-0.4c0.2-0.1 0.4-0.3 0.5-0.4 0.1-0.2 0.2-0.4 0.2-0.5v-1c-0.3-0.1-0.6-0.2-1-0.3s-0.7-0.1-0.9-0.1c-0.6 0-1.1 0.1-1.5 0.4s-0.6 0.7-0.6 1.1 0.1 0.7 0.4 0.9c0.3 0.3 0.7 0.4 1.2 0.4zm16.5 3.6c-0.6 0-1.2 0-1.9-0.1s-1.3-0.2-2-0.3c-0.6-0.1-1.2-0.3-1.8-0.5s-1.1-0.4-1.6-0.7l1.9-3.4c1 0.5 1.9 0.9 2.8 1.2s1.7 0.4 2.5 0.4c0.9 0 1.3-0.2 1.3-0.7 0-0.2-0.2-0.4-0.5-0.6-0.4-0.2-1-0.4-2-0.6-1-0.3-1.8-0.5-2.5-0.8s-1.2-0.6-1.6-0.9-0.7-0.7-0.9-1.1-0.3-0.9-0.3-1.4c0-0.7 0.1-1.4 0.4-1.9 0.3-0.6 0.7-1.1 1.2-1.6 0.5-0.4 1.1-0.8 1.9-1 0.7-0.2 1.5-0.4 2.4-0.4s1.9 0.1 3 0.4 2.2 0.6 3.3 1.2l-1.9 3.2c-1-0.5-1.8-0.8-2.4-1s-1.3-0.3-1.9-0.3c-0.4 0-0.7 0.1-0.9 0.2s-0.3 0.3-0.3 0.5c0 0.1 0 0.3 0.1 0.4s0.2 0.2 0.4 0.3 0.4 0.2 0.7 0.3 0.7 0.2 1.2 0.3c1.1 0.3 1.9 0.5 2.7 0.8 0.7 0.3 1.3 0.6 1.7 0.9s0.7 0.7 0.9 1.2c0.2 0.4 0.3 0.9 0.3 1.5 0 1.4-0.5 2.5-1.6 3.4-1.3 0.7-2.7 1.1-4.6 1.1zm16.9-0.3-3.1-5.1-1 1.1v3.9h-5v-19.1h5v10.5l3.7-5.1h5.3l-4.8 6.1 5.2 7.8h-5.3v-0.1z"/>
<path class="st0" d="m101 71.5c-1.2 0-2.3-0.2-3.2-0.6s-1.7-0.9-2.4-1.6c-0.6-0.6-1.1-1.4-1.4-2.2s-0.5-1.7-0.5-2.7 0.2-1.9 0.5-2.8 0.8-1.7 1.4-2.3c0.6-0.7 1.4-1.2 2.4-1.6 0.9-0.4 2-0.6 3.3-0.6 1.2 0 2.3 0.2 3.3 0.6 0.9 0.4 1.7 0.9 2.4 1.6 0.6 0.6 1.1 1.4 1.4 2.3s0.5 1.8 0.5 2.7c0 0.3 0 0.5-0.1 0.8 0 0.3 0 0.5-0.1 0.7h-9.7c0.1 0.7 0.3 1.3 0.8 1.6s1 0.5 1.6 0.5c0.5 0 1.1-0.1 1.5-0.4 0.5-0.2 0.8-0.6 1-1l4.2 1.2c-0.6 1.1-1.4 2-2.6 2.7s-2.6 1.1-4.3 1.1zm2.2-8.7c-0.1-0.7-0.3-1.2-0.7-1.6s-0.9-0.6-1.6-0.6c-0.6 0-1.2 0.2-1.6 0.6s-0.6 0.9-0.7 1.6h4.6zm6.9-10.8h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5zm9.6 0h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5z"/>
<path class="st1" d="M0,71.3l6.2-9.3L0,52.6h4.7l6.2,9.3l-6.2,9.3H0z"/>
<path class="st2" d="m6.2 71.3 6.2-9.3-6.2-9.3h4.7l12.5 18.7h-4.7l-3.9-5.8-3.9 5.8h-4.7z"/>
<path class="st3" d="m21.3 65.8-2.1-3.1h7.3v3.1h-5.2zm-3.1-4.7-2.1-3.1h10.4v3.1h-8.3z"/>
<path fill="#333333" opacity="0.937" d="m47.1 52.5v18.7h-5.1v-7.3h-6.3v7.3h-5.1v-18.7h5.1v6.9h6.3v-6.9h5.1zm6.7 19c-0.7 0-1.3-0.1-1.9-0.3s-1.1-0.5-1.6-0.9c-0.4-0.4-0.8-0.9-1-1.4-0.2-0.6-0.3-1.2-0.3-1.9s0.1-1.3 0.4-1.9 0.7-1.1 1.2-1.5 1.2-0.7 1.9-1c0.7-0.2 1.5-0.3 2.4-0.3 1.1 0 2.1 0.2 2.8 0.5v-0.4c0-0.6-0.2-1.1-0.6-1.4s-1-0.5-1.8-0.5-1.5 0.1-2.2 0.4c-0.7 0.2-1.4 0.6-2.1 1.1l-1.4-3.1c1.8-1.2 3.9-1.8 6.2-1.8 2.2 0 3.9 0.5 5.1 1.5s1.8 2.5 1.8 4.4v2.7c0 0.5 0.1 0.8 0.3 1s0.5 0.3 0.9 0.3v4.2c-0.5 0.1-0.9 0.1-1.3 0.2s-0.8 0.1-1.1 0.1c-0.9 0-1.6-0.2-2.1-0.5s-0.8-0.8-0.9-1.4l-0.1-0.5c-0.6 0.8-1.3 1.4-2.1 1.8-0.7 0.4-1.6 0.6-2.5 0.6zm1.5-3.6c0.3 0 0.6 0 0.9-0.1s0.6-0.2 0.8-0.4c0.2-0.1 0.4-0.3 0.5-0.4 0.1-0.2 0.2-0.4 0.2-0.5v-1c-0.3-0.1-0.6-0.2-1-0.3s-0.7-0.1-0.9-0.1c-0.6 0-1.1 0.1-1.5 0.4s-0.6 0.7-0.6 1.1 0.1 0.7 0.4 0.9c0.3 0.3 0.7 0.4 1.2 0.4zm16.5 3.6c-0.6 0-1.2 0-1.9-0.1s-1.3-0.2-2-0.3c-0.6-0.1-1.2-0.3-1.8-0.5s-1.1-0.4-1.6-0.7l1.9-3.4c1 0.5 1.9 0.9 2.8 1.2s1.7 0.4 2.5 0.4c0.9 0 1.3-0.2 1.3-0.7 0-0.2-0.2-0.4-0.5-0.6-0.4-0.2-1-0.4-2-0.6-1-0.3-1.8-0.5-2.5-0.8s-1.2-0.6-1.6-0.9-0.7-0.7-0.9-1.1-0.3-0.9-0.3-1.4c0-0.7 0.1-1.4 0.4-1.9 0.3-0.6 0.7-1.1 1.2-1.6 0.5-0.4 1.1-0.8 1.9-1 0.7-0.2 1.5-0.4 2.4-0.4s1.9 0.1 3 0.4 2.2 0.6 3.3 1.2l-1.9 3.2c-1-0.5-1.8-0.8-2.4-1s-1.3-0.3-1.9-0.3c-0.4 0-0.7 0.1-0.9 0.2s-0.3 0.3-0.3 0.5c0 0.1 0 0.3 0.1 0.4s0.2 0.2 0.4 0.3 0.4 0.2 0.7 0.3 0.7 0.2 1.2 0.3c1.1 0.3 1.9 0.5 2.7 0.8 0.7 0.3 1.3 0.6 1.7 0.9s0.7 0.7 0.9 1.2c0.2 0.4 0.3 0.9 0.3 1.5 0 1.4-0.5 2.5-1.6 3.4-1.3 0.7-2.7 1.1-4.6 1.1zm16.9-0.3-3.1-5.1-1 1.1v3.9h-5v-19.1h5v10.5l3.7-5.1h5.3l-4.8 6.1 5.2 7.8h-5.3v-0.1z"/>
<path fill="#333333" opacity="0.937" d="m101 71.5c-1.2 0-2.3-0.2-3.2-0.6s-1.7-0.9-2.4-1.6c-0.6-0.6-1.1-1.4-1.4-2.2s-0.5-1.7-0.5-2.7 0.2-1.9 0.5-2.8 0.8-1.7 1.4-2.3c0.6-0.7 1.4-1.2 2.4-1.6 0.9-0.4 2-0.6 3.3-0.6 1.2 0 2.3 0.2 3.3 0.6 0.9 0.4 1.7 0.9 2.4 1.6 0.6 0.6 1.1 1.4 1.4 2.3s0.5 1.8 0.5 2.7c0 0.3 0 0.5-0.1 0.8 0 0.3 0 0.5-0.1 0.7h-9.7c0.1 0.7 0.3 1.3 0.8 1.6s1 0.5 1.6 0.5c0.5 0 1.1-0.1 1.5-0.4 0.5-0.2 0.8-0.6 1-1l4.2 1.2c-0.6 1.1-1.4 2-2.6 2.7s-2.6 1.1-4.3 1.1zm2.2-8.7c-0.1-0.7-0.3-1.2-0.7-1.6s-0.9-0.6-1.6-0.6c-0.6 0-1.2 0.2-1.6 0.6s-0.6 0.9-0.7 1.6h4.6zm6.9-10.8h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5zm9.6 0h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5z"/>
<path fill="#463B63" d="M0,71.3l6.2-9.3L0,52.6h4.7l6.2,9.3l-6.2,9.3H0z"/>
<path fill="#463B63" d="m6.2 71.3 6.2-9.3-6.2-9.3h4.7l12.5 18.7h-4.7l-3.9-5.8-3.9 5.8h-4.7z"/>
<path fill="#904F8C" d="m21.3 65.8-2.1-3.1h7.3v3.1h-5.2zm-3.1-4.7-2.1-3.1h10.4v3.1h-8.3z"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1,11 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg enable-background="new 0 0 128 128" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<style type="text/css">
.st0{fill:#463B63;}
.st1{fill:#5E5187;}
.st2{fill:#904F8C;}
</style>
<path class="st0" d="M0,110.2L30.1,65L0,19.9h22.6L52.7,65l-30.1,45.1H0z"/>
<path class="st1" d="M30.1,110.2L60.2,65L30.1,19.9h22.6l60.2,90.3H90.4L71.5,81.9l-18.8,28.2H30.1z"/>
<path class="st2" d="m102.9 83.8-10-15.1h35.1v15.1h-25.1zm-15.1-22.5-10-15.1h50.2v15.1h-40.2z"/>
<path fill="#463B63" d="M0,110.2L30.1,65L0,19.9h22.6L52.7,65l-30.1,45.1H0z"/>
<path fill="#5E5187" d="M30.1,110.2L60.2,65L30.1,19.9h22.6l60.2,90.3H90.4L71.5,81.9l-18.8,28.2H30.1z"/>
<path fill="#904F8C" d="m102.9 83.8-10-15.1h35.1v15.1h-25.1zm-15.1-22.5-10-15.1h50.2v15.1h-40.2z"/>
</svg>

Before

Width:  |  Height:  |  Size: 551 B

After

Width:  |  Height:  |  Size: 464 B

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg enable-background="new 0 0 128 128" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<path class="st0" d="m47.1 52.5v18.7h-5.1v-7.3h-6.3v7.3h-5.1v-18.7h5.1v6.9h6.3v-6.9h5.1zm6.7 19c-0.7 0-1.3-0.1-1.9-0.3s-1.1-0.5-1.6-0.9c-0.4-0.4-0.8-0.9-1-1.4-0.2-0.6-0.3-1.2-0.3-1.9s0.1-1.3 0.4-1.9 0.7-1.1 1.2-1.5 1.2-0.7 1.9-1c0.7-0.2 1.5-0.3 2.4-0.3 1.1 0 2.1 0.2 2.8 0.5v-0.4c0-0.6-0.2-1.1-0.6-1.4s-1-0.5-1.8-0.5-1.5 0.1-2.2 0.4c-0.7 0.2-1.4 0.6-2.1 1.1l-1.4-3.1c1.8-1.2 3.9-1.8 6.2-1.8 2.2 0 3.9 0.5 5.1 1.5s1.8 2.5 1.8 4.4v2.7c0 0.5 0.1 0.8 0.3 1s0.5 0.3 0.9 0.3v4.2c-0.5 0.1-0.9 0.1-1.3 0.2s-0.8 0.1-1.1 0.1c-0.9 0-1.6-0.2-2.1-0.5s-0.8-0.8-0.9-1.4l-0.1-0.5c-0.6 0.8-1.3 1.4-2.1 1.8-0.7 0.4-1.6 0.6-2.5 0.6zm1.5-3.6c0.3 0 0.6 0 0.9-0.1s0.6-0.2 0.8-0.4c0.2-0.1 0.4-0.3 0.5-0.4 0.1-0.2 0.2-0.4 0.2-0.5v-1c-0.3-0.1-0.6-0.2-1-0.3s-0.7-0.1-0.9-0.1c-0.6 0-1.1 0.1-1.5 0.4s-0.6 0.7-0.6 1.1 0.1 0.7 0.4 0.9c0.3 0.3 0.7 0.4 1.2 0.4zm16.5 3.6c-0.6 0-1.2 0-1.9-0.1s-1.3-0.2-2-0.3c-0.6-0.1-1.2-0.3-1.8-0.5s-1.1-0.4-1.6-0.7l1.9-3.4c1 0.5 1.9 0.9 2.8 1.2s1.7 0.4 2.5 0.4c0.9 0 1.3-0.2 1.3-0.7 0-0.2-0.2-0.4-0.5-0.6-0.4-0.2-1-0.4-2-0.6-1-0.3-1.8-0.5-2.5-0.8s-1.2-0.6-1.6-0.9-0.7-0.7-0.9-1.1-0.3-0.9-0.3-1.4c0-0.7 0.1-1.4 0.4-1.9 0.3-0.6 0.7-1.1 1.2-1.6 0.5-0.4 1.1-0.8 1.9-1 0.7-0.2 1.5-0.4 2.4-0.4s1.9 0.1 3 0.4 2.2 0.6 3.3 1.2l-1.9 3.2c-1-0.5-1.8-0.8-2.4-1s-1.3-0.3-1.9-0.3c-0.4 0-0.7 0.1-0.9 0.2s-0.3 0.3-0.3 0.5c0 0.1 0 0.3 0.1 0.4s0.2 0.2 0.4 0.3 0.4 0.2 0.7 0.3 0.7 0.2 1.2 0.3c1.1 0.3 1.9 0.5 2.7 0.8 0.7 0.3 1.3 0.6 1.7 0.9s0.7 0.7 0.9 1.2c0.2 0.4 0.3 0.9 0.3 1.5 0 1.4-0.5 2.5-1.6 3.4-1.3 0.7-2.7 1.1-4.6 1.1zm16.9-0.3-3.1-5.1-1 1.1v3.9h-5v-19.1h5v10.5l3.7-5.1h5.3l-4.8 6.1 5.2 7.8h-5.3v-0.1z"/>
<path class="st0" d="m101 71.5c-1.2 0-2.3-0.2-3.2-0.6s-1.7-0.9-2.4-1.6c-0.6-0.6-1.1-1.4-1.4-2.2s-0.5-1.7-0.5-2.7 0.2-1.9 0.5-2.8 0.8-1.7 1.4-2.3c0.6-0.7 1.4-1.2 2.4-1.6 0.9-0.4 2-0.6 3.3-0.6 1.2 0 2.3 0.2 3.3 0.6 0.9 0.4 1.7 0.9 2.4 1.6 0.6 0.6 1.1 1.4 1.4 2.3s0.5 1.8 0.5 2.7c0 0.3 0 0.5-0.1 0.8 0 0.3 0 0.5-0.1 0.7h-9.7c0.1 0.7 0.3 1.3 0.8 1.6s1 0.5 1.6 0.5c0.5 0 1.1-0.1 1.5-0.4 0.5-0.2 0.8-0.6 1-1l4.2 1.2c-0.6 1.1-1.4 2-2.6 2.7s-2.6 1.1-4.3 1.1zm2.2-8.7c-0.1-0.7-0.3-1.2-0.7-1.6s-0.9-0.6-1.6-0.6c-0.6 0-1.2 0.2-1.6 0.6s-0.6 0.9-0.7 1.6h4.6zm6.9-10.8h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5zm9.6 0h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5z"/>
<path d="m47.1 52.5v18.7h-5.1v-7.3h-6.3v7.3h-5.1v-18.7h5.1v6.9h6.3v-6.9h5.1zm6.7 19c-0.7 0-1.3-0.1-1.9-0.3s-1.1-0.5-1.6-0.9c-0.4-0.4-0.8-0.9-1-1.4-0.2-0.6-0.3-1.2-0.3-1.9s0.1-1.3 0.4-1.9 0.7-1.1 1.2-1.5 1.2-0.7 1.9-1c0.7-0.2 1.5-0.3 2.4-0.3 1.1 0 2.1 0.2 2.8 0.5v-0.4c0-0.6-0.2-1.1-0.6-1.4s-1-0.5-1.8-0.5-1.5 0.1-2.2 0.4c-0.7 0.2-1.4 0.6-2.1 1.1l-1.4-3.1c1.8-1.2 3.9-1.8 6.2-1.8 2.2 0 3.9 0.5 5.1 1.5s1.8 2.5 1.8 4.4v2.7c0 0.5 0.1 0.8 0.3 1s0.5 0.3 0.9 0.3v4.2c-0.5 0.1-0.9 0.1-1.3 0.2s-0.8 0.1-1.1 0.1c-0.9 0-1.6-0.2-2.1-0.5s-0.8-0.8-0.9-1.4l-0.1-0.5c-0.6 0.8-1.3 1.4-2.1 1.8-0.7 0.4-1.6 0.6-2.5 0.6zm1.5-3.6c0.3 0 0.6 0 0.9-0.1s0.6-0.2 0.8-0.4c0.2-0.1 0.4-0.3 0.5-0.4 0.1-0.2 0.2-0.4 0.2-0.5v-1c-0.3-0.1-0.6-0.2-1-0.3s-0.7-0.1-0.9-0.1c-0.6 0-1.1 0.1-1.5 0.4s-0.6 0.7-0.6 1.1 0.1 0.7 0.4 0.9c0.3 0.3 0.7 0.4 1.2 0.4zm16.5 3.6c-0.6 0-1.2 0-1.9-0.1s-1.3-0.2-2-0.3c-0.6-0.1-1.2-0.3-1.8-0.5s-1.1-0.4-1.6-0.7l1.9-3.4c1 0.5 1.9 0.9 2.8 1.2s1.7 0.4 2.5 0.4c0.9 0 1.3-0.2 1.3-0.7 0-0.2-0.2-0.4-0.5-0.6-0.4-0.2-1-0.4-2-0.6-1-0.3-1.8-0.5-2.5-0.8s-1.2-0.6-1.6-0.9-0.7-0.7-0.9-1.1-0.3-0.9-0.3-1.4c0-0.7 0.1-1.4 0.4-1.9 0.3-0.6 0.7-1.1 1.2-1.6 0.5-0.4 1.1-0.8 1.9-1 0.7-0.2 1.5-0.4 2.4-0.4s1.9 0.1 3 0.4 2.2 0.6 3.3 1.2l-1.9 3.2c-1-0.5-1.8-0.8-2.4-1s-1.3-0.3-1.9-0.3c-0.4 0-0.7 0.1-0.9 0.2s-0.3 0.3-0.3 0.5c0 0.1 0 0.3 0.1 0.4s0.2 0.2 0.4 0.3 0.4 0.2 0.7 0.3 0.7 0.2 1.2 0.3c1.1 0.3 1.9 0.5 2.7 0.8 0.7 0.3 1.3 0.6 1.7 0.9s0.7 0.7 0.9 1.2c0.2 0.4 0.3 0.9 0.3 1.5 0 1.4-0.5 2.5-1.6 3.4-1.3 0.7-2.7 1.1-4.6 1.1zm16.9-0.3-3.1-5.1-1 1.1v3.9h-5v-19.1h5v10.5l3.7-5.1h5.3l-4.8 6.1 5.2 7.8h-5.3v-0.1z"/>
<path d="m101 71.5c-1.2 0-2.3-0.2-3.2-0.6s-1.7-0.9-2.4-1.6c-0.6-0.6-1.1-1.4-1.4-2.2s-0.5-1.7-0.5-2.7 0.2-1.9 0.5-2.8 0.8-1.7 1.4-2.3c0.6-0.7 1.4-1.2 2.4-1.6 0.9-0.4 2-0.6 3.3-0.6 1.2 0 2.3 0.2 3.3 0.6 0.9 0.4 1.7 0.9 2.4 1.6 0.6 0.6 1.1 1.4 1.4 2.3s0.5 1.8 0.5 2.7c0 0.3 0 0.5-0.1 0.8 0 0.3 0 0.5-0.1 0.7h-9.7c0.1 0.7 0.3 1.3 0.8 1.6s1 0.5 1.6 0.5c0.5 0 1.1-0.1 1.5-0.4 0.5-0.2 0.8-0.6 1-1l4.2 1.2c-0.6 1.1-1.4 2-2.6 2.7s-2.6 1.1-4.3 1.1zm2.2-8.7c-0.1-0.7-0.3-1.2-0.7-1.6s-0.9-0.6-1.6-0.6c-0.6 0-1.2 0.2-1.6 0.6s-0.6 0.9-0.7 1.6h4.6zm6.9-10.8h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5zm9.6 0h5v13.4c0 1.1 0.4 1.6 1.3 1.6 0.2 0 0.4 0 0.7-0.1 0.2-0.1 0.5-0.2 0.7-0.3l0.6 4c-0.6 0.3-1.3 0.5-2 0.7s-1.4 0.2-2.1 0.2c-1.3 0-2.4-0.3-3.1-1s-1.1-1.7-1.1-3v-15.5z"/>
<path d="M0,71.3l6.2-9.3L0,52.6h4.7l6.2,9.3l-6.2,9.3H0z"/>
<path d="m6.2 71.3 6.2-9.3-6.2-9.3h4.7l12.5 18.7h-4.7l-3.9-5.8-3.9 5.8h-4.7z"/>
<path d="m21.3 65.8-2.1-3.1h7.3v3.1h-5.2zm-3.1-4.7-2.1-3.1h10.4v3.1h-8.3z"/>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><style type="text/css">.st0{fill:#F6B214;}.st1{fill:#F17321;}.st2{fill:#EF5E21;}.st3{fill:#EA8220;}.st4{fill:#F8EF23;}.st5{fill:#F8C713;}.st6{fill:#EC4822;}</style><path class="st0" d="M 15.7,64 64.1,15.6 0,0 z"/><path class="st1" d="M 64,15.7 112.4,64.1 128,0 z"/><path class="st2" d="M 112.3,64 63.9,112.4 128,128 z"/><path class="st0" d="M 64,112.3 15.6,63.9 0,128 z"/><path class="st3" d="M 15.6,63.9 64,15.7 112.3,64 64,112.3 z"/><path class="st4" d="M 15.6,63.9 0,32 0,0 z"/><path class="st4" d="M 0,128 0,96 15.6,63.9 z"/><path class="st5" d="M 0,0 32,0 64,15.7 z"/><path class="st5" d="M 128,0 64,15.7 96,0 z"/><path class="st6" d="M 112.3,64 128,0 128,32 z"/><path class="st6" d="M 128,128 128,96 112.3,64 z"/><path class="st2" d="M 0,128 64,112.3 32,128 z"/><path class="st3" d="M 128,128 96,128 64,112.3 z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#F6B214" d="M 15.7,64 64.1,15.6 0,0 z"/><path fill="#F17321" d="M 64,15.7 112.4,64.1 128,0 z"/><path fill="#EF5E21" d="M 112.3,64 63.9,112.4 128,128 z"/><path fill="#F6B214" d="M 64,112.3 15.6,63.9 0,128 z"/><path fill="#EA8220" d="M 15.6,63.9 64,15.7 112.3,64 64,112.3 z"/><path fill="#F8EF23" d="M 15.6,63.9 0,32 0,0 z"/><path fill="#F8EF23" d="M 0,128 0,96 15.6,63.9 z"/><path fill="#F8C713" d="M 0,0 32,0 64,15.7 z"/><path fill="#F8C713" d="M 128,0 64,15.7 96,0 z"/><path fill="#EC4822" d="M 112.3,64 128,0 128,32 z"/><path fill="#EC4822" d="M 128,128 128,96 112.3,64 z"/><path fill="#EF5E21" d="M 0,128 64,112.3 32,128 z"/><path fill="#EA8220" d="M 128,128 96,128 64,112.3 z"/></svg>

Before

Width:  |  Height:  |  Size: 902 B

After

Width:  |  Height:  |  Size: 777 B

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><style type="text/css">.st3{fill:#EA8220;}</style><path class="st3" d="M 0,0 32.3,0 64,16 96.3,0 128,0 128,32.6 111.8,64 128,95.8 128,128 95.2,128 64,112.1 32.6,128 0,128 0,94.7 15.7,64 0,31.8 z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#EA8220" d="M 0,0 32.3,0 64,16 96.3,0 128,0 128,32.6 111.8,64 128,95.8 128,128 95.2,128 64,112.1 32.6,128 0,128 0,94.7 15.7,64 0,31.8 z"/></svg>

Before

Width:  |  Height:  |  Size: 269 B

After

Width:  |  Height:  |  Size: 222 B

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