Merge remote-tracking branch 'origin/develop' into amacado/feature/readme-release-strategy
# Conflicts: # CONTRIBUTING.md
31
.github/workflows/peek_icons.yml
vendored
@ -3,7 +3,10 @@ on:
|
||||
pull_request:
|
||||
types: [labeled]
|
||||
jobs:
|
||||
build:
|
||||
peek:
|
||||
# four outcomes: successful check and upload,
|
||||
# unsuccessful check (fail due to user),
|
||||
# fail due to system, skipped
|
||||
name: Peek Icons
|
||||
if: github.event.label.name == 'bot:peek'
|
||||
runs-on: windows-2019
|
||||
@ -20,6 +23,18 @@ jobs:
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r ./.github/scripts/requirements.txt
|
||||
|
||||
- name: Save the PR number in an artifact
|
||||
shell: bash
|
||||
env:
|
||||
PR_NUM: ${{ github.event.number }}
|
||||
run: echo $PR_NUM > pr_num.txt
|
||||
|
||||
- name: Upload the PR number
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pr_num
|
||||
path: ./pr_num.txt
|
||||
|
||||
- name: Run icomoon_peek.py
|
||||
env:
|
||||
PR_TITLE: ${{ github.event.pull_request.title }}
|
||||
@ -36,21 +51,9 @@ jobs:
|
||||
name: screenshots
|
||||
path: ./screenshots/*.png
|
||||
|
||||
- name: Save the pr num in an artifact
|
||||
shell: bash
|
||||
env:
|
||||
PR_NUM: ${{ github.event.number }}
|
||||
run: echo $PR_NUM > pr_num.txt
|
||||
|
||||
- name: Upload the pr num
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pr_num
|
||||
path: ./pr_num.txt
|
||||
|
||||
- name: Upload geckodriver.log for debugging purposes
|
||||
uses: actions/upload-artifact@v2
|
||||
if: failure()
|
||||
with:
|
||||
name: geckodriver-log
|
||||
path: ./geckodriver.log
|
||||
path: ./geckodriver.log
|
||||
|
33
.github/workflows/post_check_svgs_comment.yml
vendored
@ -35,21 +35,21 @@ jobs:
|
||||
with:
|
||||
path: ./svg_err_messages/svg_err_messages.txt
|
||||
|
||||
- name: Comment on the PR about the result - Success
|
||||
uses: jungwinter/comment@v1 # let us comment on a specific PR
|
||||
if: success() && steps.err_message_reader.outputs.content == '1'
|
||||
env:
|
||||
MESSAGE: |
|
||||
Hi!
|
||||
I'm Devicons' SVG-Checker Bot and everything looks great. Good job!
|
||||
# - name: Comment on the PR about the result - Success
|
||||
# uses: jungwinter/comment@v1 # let us comment on a specific PR
|
||||
# if: success() && steps.err_message_reader.outputs.content == '1'
|
||||
# env:
|
||||
# MESSAGE: |
|
||||
# Hi!
|
||||
# I'm Devicons' SVG-Checker Bot and everything looks great. Good job!
|
||||
|
||||
Have a nice day,
|
||||
SVG-Checker Bot :grin:
|
||||
with:
|
||||
type: create
|
||||
issue_number: ${{ steps.pr_num_reader.outputs.content }}
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
body: ${{ env.MESSAGE }}
|
||||
# Have a nice day,
|
||||
# SVG-Checker Bot :grin:
|
||||
# with:
|
||||
# type: create
|
||||
# issue_number: ${{ steps.pr_num_reader.outputs.content }}
|
||||
# token: ${{ secrets.GITHUB_TOKEN }}
|
||||
# body: ${{ env.MESSAGE }}
|
||||
|
||||
- name: Comment on the PR about the result - SVG Error
|
||||
uses: jungwinter/comment@v1 # let us comment on a specific PR
|
||||
@ -79,6 +79,11 @@ jobs:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
body: ${{ format(env.MESSAGE, steps.err_message_reader.outputs.content) }}
|
||||
|
||||
# if we posted error messages before, we fail this entire workflow
|
||||
- name: Fail workflow is there is an error.
|
||||
uses: cutenode/action-always-fail@v1.0.1
|
||||
if: success() && (steps.err_message_reader.outputs.content != '0' && steps.err_message_reader.outputs.content != '1')
|
||||
|
||||
- name: Comment on the PR about the result - Failure
|
||||
uses: jungwinter/comment@v1 # let us comment on a specific PR
|
||||
if: failure()
|
||||
|
29
.github/workflows/post_peek_screenshot.yml
vendored
@ -8,10 +8,16 @@ jobs:
|
||||
post_screenshots_in_comment:
|
||||
name: Post the screenshot
|
||||
runs-on: ubuntu-18.04
|
||||
if: github.event.action == 'completed' && github.event.workflow_run.conclusion != 'skipped'
|
||||
env:
|
||||
# three possible values: 'skipped', 'success', 'failure'
|
||||
# have to print github.event to console to see these values
|
||||
# note: can't use this env variable up in the if statement above for some reason.
|
||||
# I don't think it's an ordering issue cause it seems 'if' is auto evaluate first
|
||||
PEEK_STATUS: ${{ github.event.workflow_run.conclusion }}
|
||||
steps:
|
||||
- name: Check if the trigger run worked. If not, fail the current run.
|
||||
if: github.event.workflow_run.conclusion != 'success'
|
||||
uses: cutenode/action-always-fail@v1.0.1
|
||||
- name: Check state of last run
|
||||
run: echo $PEEK_STATUS
|
||||
|
||||
- name: Download workflow artifact
|
||||
uses: dawidd6/action-download-artifact@v2.11.0
|
||||
@ -21,7 +27,6 @@ jobs:
|
||||
run_id: ${{ github.event.workflow_run.id }}
|
||||
|
||||
- name: Read the pr_num file
|
||||
if: success()
|
||||
id: pr_num_reader
|
||||
uses: juliangruber/read-file-action@v1.0.0
|
||||
with:
|
||||
@ -29,6 +34,7 @@ jobs:
|
||||
|
||||
- name: Upload screenshot of the newly made icons gotten from the artifacts
|
||||
id: icons_overview_img_step
|
||||
if: env.PEEK_STATUS == 'success' && success()
|
||||
uses: devicons/public-upload-to-imgur@v2.2.1
|
||||
with:
|
||||
path: ./screenshots/new_icons.png
|
||||
@ -37,17 +43,15 @@ jobs:
|
||||
- name: Upload zoomed in screenshot of the newly made icons gotten from the artifacts
|
||||
id: icons_detailed_img_step
|
||||
uses: devicons/public-upload-to-imgur@v2.2.1
|
||||
if: success()
|
||||
if: env.PEEK_STATUS == 'success' && success()
|
||||
with:
|
||||
path: ./screenshots/screenshot_*.png
|
||||
client_id: ${{secrets.IMGUR_CLIENT_ID}}
|
||||
|
||||
- name: Comment on the PR about the result - Success
|
||||
uses: jungwinter/comment@v1 # let us comment on a specific PR
|
||||
if: success()
|
||||
if: env.PEEK_STATUS == 'success' && success()
|
||||
env:
|
||||
OVERVIEW_IMG_MARKDOWN: ${{ fromJSON(steps.icons_overview_img_step.outputs.markdown_urls)[0] }}
|
||||
DETAILED_IMGS_MARKDOWN: ${{ join(fromJSON(steps.icons_detailed_img_step.outputs.markdown_urls), '') }}
|
||||
MESSAGE: |
|
||||
Hi there,
|
||||
|
||||
@ -71,10 +75,13 @@ jobs:
|
||||
type: create
|
||||
issue_number: ${{ steps.pr_num_reader.outputs.content }}
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
body: ${{format(env.MESSAGE, env.OVERVIEW_IMG_MARKDOWN, env.DETAILED_IMGS_MARKDOWN)}}
|
||||
body: >
|
||||
${{ format(env.MESSAGE,
|
||||
fromJSON(steps.icons_overview_img_step.outputs.markdown_urls)[0],
|
||||
join(fromJSON(steps.icons_detailed_img_step.outputs.markdown_urls), '')) }}
|
||||
|
||||
- name: Comment on the PR about the result - Failure
|
||||
if: failure() || cancelled()
|
||||
if: failure() || env.PEEK_STATUS == 'failure'
|
||||
uses: jungwinter/comment@v1 # let us comment on a specific PR
|
||||
env:
|
||||
MESSAGE: |
|
||||
@ -88,7 +95,7 @@ jobs:
|
||||
- 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, I will try. If I still fail (sorry!), the maintainers will investigate further.
|
||||
I will retry once everything is fixed. If I still fail (sorry!) or there are other erros, the maintainers will investigate.
|
||||
|
||||
Best of luck,
|
||||
Peek Bot :relaxed:
|
||||
|
22
.github/workflows/stale.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: 'Stale'
|
||||
on:
|
||||
schedule:
|
||||
- cron: '30 1 * * *'
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@main
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
stale-pr-message: 'Hello there,
|
||||
we noticed that this PR has been inactive for a while now. If there are any changes which are suitable for our repository,
|
||||
we would love to have it. It would be great if you can continue with this PR, but if you cannot, we might fork your changes and merge the changes ourselves.
|
||||
|
||||
Since GitHub tracks contributions by commits, you will still be credited.
|
||||
|
||||
Let us know what you think 😃'
|
||||
stale-pr-label: 'stale'
|
||||
days-before-pr-stale: 30
|
||||
days-before-pr-close: -1
|
@ -1,6 +1,6 @@
|
||||
<h1>Contributing to Devicon</h1>
|
||||
<p>
|
||||
First of all, thanks for taking the time to contribute! This project can only grow and live by your countless contributions. To keep this project maintable we developed some guidelines for contributions.
|
||||
First of all, thanks for taking the time to contribute! This project can only grow and live by your countless contributions. To keep this project maintainable, we have developed some guidelines for our contributors.
|
||||
</p>
|
||||
|
||||
<h2>Table of Content</h2>
|
||||
@ -15,6 +15,7 @@ First of all, thanks for taking the time to contribute! This project can only gr
|
||||
<li><a href="#requestingIcon">Requesting An Icon</a></li>
|
||||
<li><a href="#teams">Maintainer/Reviewer/Teams</a></li>
|
||||
<li><a href="#buildScript">Regarding the Build Script</a></li>
|
||||
<li><a href="#discordServer">Discord server</a></li>
|
||||
<li><a href="#release">Release strategy, conventions, preparation and execution</a></li>
|
||||
</ul>
|
||||
|
||||
@ -22,14 +23,15 @@ First of all, thanks for taking the time to contribute! This project can only gr
|
||||
<h2 id="terms">Terms</h2>
|
||||
<p>Here are some terms that we will use in this repo: </p>
|
||||
<ol>
|
||||
<li>"Icon" refers to the set of svgs/icons of a technology/tool. Ex: We might refer to the React svgs and React icons as the React Icon</li>
|
||||
<li>"SVG/<code>.svg</code>" refers to the <code>svg</code> versions of the Icons.</li>
|
||||
<li>"icons" (lowercase) refers to the font icon versions of the Icons.</li>
|
||||
<li>"Technology" is used to describe a software, libraries, tool, etc...</li>
|
||||
<li>"Icon" refers to the svgs and icons version of a technology as a whole.</i>
|
||||
<li>"SVG/<code>svg</code>" refers to the <code>svg</code> versions of the Icons.</li>
|
||||
<li>"icon" (lowercase) refers specficially to the font icon versions of the Icons.</li>
|
||||
</ol>
|
||||
|
||||
<hr>
|
||||
<h2 id="overview">Overview on Submitting Icons</h2>
|
||||
<p>Here is an overview of what you have to do to submit your icons to the repo.</p>
|
||||
<p>Here is what you have to do to submit your icons to the repo.</p>
|
||||
<ol>
|
||||
<li>Create the svgs for each <a href="#versionNaming"> svg versions </a> that you have</li>
|
||||
<li>Put the svgs of each Icon into its own folders in <code>/icons</code> </li>
|
||||
@ -44,6 +46,13 @@ First of all, thanks for taking the time to contribute! This project can only gr
|
||||
|
||||
<hr>
|
||||
<h2 id='versionNaming'>Versions and Naming Conventions</h2>
|
||||
<p>For the technology name, make the file and folder name lowercase and concatenate them. For example:</p>
|
||||
<ul>
|
||||
<li>AngularJS becomes <code>angularjs</code> or just <code>angular</code></li>
|
||||
<li>Amazon Web Services becomes <code>amazonwebservices</code></li>
|
||||
<li>Microsoft SQL Server becomes <code>microsoftsqlserver</code></li>
|
||||
</ul>
|
||||
|
||||
<p>Each icon/svg can come in different versions. So far, we have:</p>
|
||||
<ul>
|
||||
<li><b>original</b>: the original logo. Can contain multiple colors. <a href="https://github.com/devicons/devicon/blob/master/icons/amazonwebservices/amazonwebservices-original.svg"> Example </a> </li>
|
||||
@ -66,7 +75,6 @@ First of all, thanks for taking the time to contribute! This project can only gr
|
||||
</li>
|
||||
<li>
|
||||
Some icons are really simple (ex. Apple), so the original version can be used as the plain version and as the icon font. In this case, you'll only need to make one of the version (either "original" or "plain"). You can then add an alias in the <code>devicon.json</code> so they can be found with either the "original" or "plain" naming convention. Note: this only applies to font icon versions only, not the SVG versions.
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@ -75,7 +83,7 @@ First of all, thanks for taking the time to contribute! This project can only gr
|
||||
<p>Before you submit your logos/svgs, please ensure that they meet the following standard:</p>
|
||||
<ul>
|
||||
<li>The background must be transparent.</li>
|
||||
<li>The svg name follows this convention: <code>(Icon name)-(original|plain|line)(-wordmark?).</code></li>
|
||||
<li>The svg name follows this convention: <code>(Technology name)-(original|plain|line)(-wordmark?).</code></li>
|
||||
<li>The <b>plain</b> and <b>line</b> versions (with or without wordmark) need to stay as simple as possible. They must have only one color and the paths are united. We will strip the color when turning it into icons so they can have any color.
|
||||
</li>
|
||||
<li>Optimize/compress your SVGs. You can use a service like <a href="https://compressor.io/">compressor</a> or <a href="https://petercollingridge.appspot.com/svg-editor">SVG Editor</a>.</li>
|
||||
@ -83,7 +91,7 @@ First of all, thanks for taking the time to contribute! This project can only gr
|
||||
<li>Each <code>.svg</code> file contains one version of an icon in a <code>0 0 128 128</code> viewbox. You can use a service like <a href="https://www.iloveimg.com/resize-image/resize-svg">resize-image</a> for scaling the svg.</li>
|
||||
<li>The <code>svg</code> element does not need the <code>height</code> and <code>width</code> attributes. However, if you do use it, ensure their values are either <code>"128"</code> or <code>"128px"</code>. Ex: <code>height="128"</code></li>
|
||||
<li>Each <code>.svg</code> must use the <code>fill</code> attribute instead of using <code>classes</code> for colors. See <a href="https://github.com/devicons/devicon/issues/407">here</a> for more details.</li>
|
||||
<li>The naming convention for the svg file is the following: <code>(Icon name)-(original|plain|line)(-wordmark?).</code></li>
|
||||
<li>The naming convention for the svg file is the following: <code>(Technology name)-(original|plain|line)(-wordmark?).</code></li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
@ -301,6 +309,12 @@ As an example, let's assume you have created the svgs for Redhat and Amazon Web
|
||||
<li>Publishing a new release to <a href="https://www.npmjs.com/package/devicon">npm</a>; See <a href="https://github.com/devicons/devicon/issues/288">#288</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="discordServer">Discord server</h2>
|
||||
<p>
|
||||
We are running a Discord server. You can go here to talk, discuss, and more with the maintainers and other people, too. Here's the invitation: https://discord.gg/hScy8KWACQ. If you don't have a GitHub account but want to suggest ideas or new icons, you can do that here in our Discord channel.
|
||||
<b>Note that the Discord server is unofficial, and Devicons is still being maintained via GitHub.<b>
|
||||
</p>
|
||||
|
||||
<h2 id='release'>Release strategy, conventions, preparation and execution</h2>
|
||||
<h5>Release strategy</h5>
|
||||
<p>Devicon does not follow a strict release plan. A new release is depended on current amount of contributions, required bugfixes/patches and will be discussed by the team of maintainers.</p>
|
||||
@ -312,6 +326,7 @@ As an example, let's assume you have created the svgs for Redhat and Amazon Web
|
||||
<li>MINOR version when you add functionality <b>(like a new icon)</b> in a backwards compatible manner, and</li>
|
||||
<li>PATCH version when you make backwards compatible bug fixes.</li>
|
||||
</ul>
|
||||
|
||||
<h5>Release preparation and execution</h5>
|
||||
<ol>
|
||||
<li>Define the next release version number based on the conventions</li>
|
||||
|
12
README.md
@ -51,6 +51,7 @@
|
||||
<li><a href="#getting-started">Getting started</a></li>
|
||||
<li><a href="#request-icon">Requesting icon</a></li>
|
||||
<li><a href="#contribute">Contributing</a></li>
|
||||
<li><a href="#stale-prs">Stale pull requests</a></li>
|
||||
<li><a href="#build-yourself">Go build yourself</a></li>
|
||||
</ol>
|
||||
|
||||
@ -155,6 +156,17 @@ Add css rules in your stylesheet
|
||||
to see how you can contribute to this project.
|
||||
</p>
|
||||
|
||||
<h2 id="stale-prs">Stale pull requests</h2>
|
||||
<p>
|
||||
After a pull request has been open for over 30 days with no activity or response from the author, it'll be automatically marked as stale. We might fork your changes and merge the changes ourselves. Since GitHub tracks contributions by commits, you will be credited.
|
||||
</p>
|
||||
|
||||
<h2 id="discord-server">Discord server</h2>
|
||||
<p>
|
||||
We are running a Discord server. You can go here to talk, discuss, and more with the maintainers and other people, too. Here's the invitation: https://discord.gg/hScy8KWACQ.
|
||||
<b>Note that the Discord server is unofficial, and Devicons is still being maintained via GitHub.<b>
|
||||
</p>
|
||||
|
||||
<h2 id="build-yourself">Go build yourself</h2>
|
||||
<p>
|
||||
Feel free to follow those steps when you want to build the font
|
||||
|
236
devicon.json
@ -772,6 +772,27 @@
|
||||
"color": "#f7974e",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "dart",
|
||||
"tags": [
|
||||
"programming",
|
||||
"language"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"original-wordmark",
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#00A8E1",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "debian",
|
||||
"tags": [
|
||||
@ -904,6 +925,23 @@
|
||||
"color": "#1384c8",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "dotnetcore",
|
||||
"tags": [
|
||||
"framework"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"plain"
|
||||
],
|
||||
"font": [
|
||||
"plain"
|
||||
]
|
||||
},
|
||||
"color": "#623697",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "drupal",
|
||||
"tags": [
|
||||
@ -924,6 +962,29 @@
|
||||
"color": "#0073BA",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "digitalocean",
|
||||
"tags": [
|
||||
"cloud",
|
||||
"hosting",
|
||||
"database",
|
||||
"storage"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"original-wordmark",
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#0080FF",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "electron",
|
||||
"tags": [
|
||||
@ -1061,6 +1122,23 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "figma",
|
||||
"tags": [
|
||||
"design"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"plain"
|
||||
],
|
||||
"font": [
|
||||
"plain"
|
||||
]
|
||||
},
|
||||
"color": "#f24e1e",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "firebase",
|
||||
"tags": [
|
||||
@ -1412,6 +1490,26 @@
|
||||
"color": "#feb672",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "graphql",
|
||||
"tags": [
|
||||
"language",
|
||||
"data",
|
||||
"query"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#e434aa",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "groovy",
|
||||
"tags": [
|
||||
@ -1970,6 +2068,32 @@
|
||||
"color": "#0076b2",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "lua",
|
||||
"tags": [
|
||||
"programming",
|
||||
"language",
|
||||
"object-oriented",
|
||||
"scripting",
|
||||
"procedural",
|
||||
"prototype-based",
|
||||
"functional"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"original-wordmark",
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#000080",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "linux",
|
||||
"tags": [
|
||||
@ -2139,6 +2263,37 @@
|
||||
"color": "#DF234F",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "nextjs",
|
||||
"tags": [
|
||||
"framework"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"line",
|
||||
"original-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"original",
|
||||
"plain",
|
||||
"line",
|
||||
"original-wordmark",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#000000",
|
||||
"aliases": [
|
||||
{
|
||||
"base": "original",
|
||||
"alias": "plain"
|
||||
},
|
||||
{
|
||||
"base": "original-wordmark",
|
||||
"alias": "plain-wordmark"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "nginx",
|
||||
"tags": [
|
||||
@ -2445,6 +2600,26 @@
|
||||
"color": "#ffd845",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "phoenix",
|
||||
"tags": [
|
||||
"framework"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"original-wordmark",
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#F15524",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "r",
|
||||
"tags": [
|
||||
@ -2835,6 +3010,26 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "spring",
|
||||
"tags": [
|
||||
"framework"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"original-wordmark",
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#5FB832",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "microsoftsqlserver",
|
||||
"tags": [
|
||||
@ -2983,6 +3178,27 @@
|
||||
"color": "#bb2031",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "thealgorithms",
|
||||
"tags": [
|
||||
"organization",
|
||||
"algorithms"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"original-wordmark",
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#00BCB4",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "trello",
|
||||
"tags": [
|
||||
@ -3181,6 +3397,26 @@
|
||||
"color": "#41B883",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "weblate",
|
||||
"tags": [
|
||||
"localization"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"plain",
|
||||
"original-wordmark",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#2eccaa",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "webpack",
|
||||
"tags": [
|
||||
|
1
docs/assets/css/discord-logo.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 245 240"><path d="M104.4 103.9c-5.7 0-10.2 5-10.2 11.1s4.6 11.1 10.2 11.1c5.7 0 10.2-5 10.2-11.1.1-6.1-4.5-11.1-10.2-11.1zM140.9 103.9c-5.7 0-10.2 5-10.2 11.1s4.6 11.1 10.2 11.1c5.7 0 10.2-5 10.2-11.1s-4.5-11.1-10.2-11.1z"/><path d="M189.5 20h-134C44.2 20 35 29.2 35 40.6v135.2c0 11.4 9.2 20.6 20.5 20.6h113.4l-5.3-18.5 12.8 11.9 12.1 11.2 21.5 19V40.6c0-11.4-9.2-20.6-20.5-20.6zm-38.6 130.6s-3.6-4.3-6.6-8.1c13.1-3.7 18.1-11.9 18.1-11.9-4.1 2.7-8 4.6-11.5 5.9-5 2.1-9.8 3.5-14.5 4.3-9.6 1.8-18.4 1.3-25.9-.1-5.7-1.1-10.6-2.7-14.7-4.3-2.3-.9-4.8-2-7.3-3.4-.3-.2-.6-.3-.9-.5-.2-.1-.3-.2-.4-.3-1.8-1-2.8-1.7-2.8-1.7s4.8 8 17.5 11.8c-3 3.8-6.7 8.3-6.7 8.3-22.1-.7-30.5-15.2-30.5-15.2 0-32.2 14.4-58.3 14.4-58.3 14.4-10.8 28.1-10.5 28.1-10.5l1 1.2c-18 5.2-26.3 13.1-26.3 13.1s2.2-1.2 5.9-2.9c10.7-4.7 19.2-6 22.7-6.3.6-.1 1.1-.2 1.7-.2 6.1-.8 13-1 20.2-.2 9.5 1.1 19.7 3.9 30.1 9.6 0 0-7.9-7.5-24.9-12.7l1.4-1.6s13.7-.3 28.1 10.5c0 0 14.4 26.1 14.4 58.3 0 0-8.5 14.5-30.6 15.2z"/></svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -8,6 +8,14 @@ html {
|
||||
*, *::after, *::before {
|
||||
box-sizing: inherit; }
|
||||
|
||||
.discord-logo:before {
|
||||
content: "";
|
||||
background-image: url("discord-logo.svg");
|
||||
height: 40px;
|
||||
width: 40px;
|
||||
display: inline-block;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.icon-brush:before {
|
||||
content: "\e600"; }
|
||||
|
@ -88,17 +88,20 @@
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Github Repo</h3>
|
||||
<h5>If you prefer a local install, you can download all the files on the github repo.</h5>
|
||||
<h3>GitHub repository</h3>
|
||||
<h5>If you prefer a local install, you can download all the files on the GitHub repository.</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>
|
||||
<a href="https://github.com/devicons/devicon/" target="blank"><i class="devicon-github-original"></i>GO TO THE REPOSITORY</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="download">
|
||||
<a href="https://discord.gg/hScy8KWACQ" target="blank"><i class="discord-logo"></i>DISCORD SERVER</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 />
|
||||
|
1
icons/dart/dart-original-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#231f20" d="M65.3 55.4c2.8 2.6 4.2 6.1 4.2 10.6s-1.4 8.1-4.1 10.8c-2.7 2.6-6.9 4-12.4 4h-9.8V51.7h10.1c5.2 0 9.2 1.2 12 3.7zm-4.8 17.3c1.6-1.5 2.4-3.7 2.4-6.6 0-2.9-.8-5.1-2.4-6.7-1.6-1.5-4.1-2.4-7.4-2.4h-3.8v18h4.2c3.1 0 5.4-.8 7-2.3zm32.1 8.1h-5.8V78c-1.7 2-3.6 3-6 3s-4.4-.7-6-2.1c-1.6-1.4-2.4-3.2-2.4-5.5s.8-4 2.5-5.1c1.7-1.1 4-1.7 6.9-1.7h4.6v-.2c0-2.4-1.2-3.6-3.8-3.6-1.1 0-2.2.2-3.4.6-1.2.4-2.2 1-3.1 1.6l-2.8-4.1c3-2.2 6.3-3.2 10.1-3.2 2.7 0 4.9.7 6.6 2.1 1.7 1.4 2.5 3.5 2.5 6.5v14.5h.1zm-6.3-8.6v-.9h-3.9c-2.5 0-3.8.7-3.8 2.2 0 .8.3 1.4.9 1.8.6.4 1.4.6 2.6.6 1.1 0 2.1-.3 2.9-1 .9-.7 1.3-1.6 1.3-2.7zm22.8-8.4c-1.9 0-3.4.6-4.3 2-.9 1.3-1.5 3.1-1.5 5.3v9.8h-6.2V58.4h6.2v2.9c.8-.9 2-1.7 3.2-2.3 1.2-.6 2.6-1 3.9-1v5.9l-1.3-.1zm11.3-.9v9.9c0 .9.2 1.5.7 2 .4.5 1 .7 1.6.7 1.2 0 2.2-.5 3-1.6l2.3 4.4c-1.9 1.8-4 2.7-6.1 2.7-2.2 0-4-.7-5.5-2.1-1.5-1.4-2.2-3.4-2.2-5.8V51.7h6.2V58h6.6l-3.4 5-3.2-.1z"/><path fill="#00c4b3" d="M9.3 56.3l-2.2-2.2v16.4c0 .3.1.7.2 1.1l17.3 6.1 4.3-1.9L9.3 56.3z"/><path d="M7.3 71.7zm21.6 4.2l-4.3 1.9-17.3-6.1c.3 1.3 1 2.7 1.8 3.5l5.6 5.6h12.5l1.7-4.9z" fill="#22d3c5"/><path fill="#0075c9" d="M.5 64.2c-.6.6-.3 1.8.6 2.8L5 70.9l2.4.9c-.1-.4-.2-.8-.2-1.1V70l-.1-15.9"/><path fill="#0075c9" d="M28.9 75.9l1.9-4.3-6.1-17.3c-.4-.1-.8-.2-1.1-.2H7.1"/><path d="M24.7 54.3zm4.2 21.6l4.7-1.5V61.5l-5.4-5.4c-.8-.8-2.2-1.5-3.5-1.8l6.1 17.3" fill="#00a8e1"/><path fill="#00c4b3" d="M23.9 51.9l-4-3.9c-.9-.9-2.1-1.2-2.7-.6L7.1 54.1h16.5c.3 0 .7.1 1.1.2l-.8-2.4z"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
icons/dart/dart-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00c4b3" d="M35.2 34.9l-8.3-8.3v59.7l.1 2.8c0 1.3.2 2.8.7 4.3l65.6 23.1 16.3-7.2-74.4-74.4z"/><path d="M27.7 93.4zm81.9 15.9l-16.3 7.2-65.4-23.1c1.3 4.8 4 10.1 7 13.2l21.3 21.2 47.6.1 5.8-18.6z" fill="#22d3c5"/><path fill="#0075c9" d="M1.7 65.1C-.4 67.3.7 72 4 75.5l14.7 14.8 9.2 3.3c-.3-1.5-.7-3-.7-4.3l-.1-2.8-.2-59.8m82.7 82.6l7.2-16.4-23-65.6c-1.5-.3-3-.6-4.3-.7l-2.9-.1-59.6.1"/><path d="M93.6 27.3c.2 0 .2 0 0 0 .2 0 .2 0 0 0zm16 82l17.7-5.8V54.8l-20.4-20.5c-3-3-8.3-5.8-13.2-7l23.1 65.6" fill="#00a8e1"/><path fill="#00c4b3" d="M90.5 18.2L75.7 3.5c-3.4-3.4-8-4.4-10.4-2.3L26.9 26.6h59.5l2.9.1c1.3 0 2.8.2 4.3.7l-3.1-9.2z"/></svg>
|
After Width: | Height: | Size: 711 B |
1
icons/dart/dart-plain-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00a8e1" d="M65.3 55.4c2.8 2.6 4.2 6.1 4.2 10.6s-1.4 8.1-4.1 10.8c-2.7 2.6-6.9 4-12.4 4h-9.8V51.7h10.1c5.2 0 9.2 1.2 12 3.7zm-4.8 17.3c1.6-1.5 2.4-3.7 2.4-6.6 0-2.9-.8-5.1-2.4-6.7-1.6-1.5-4.1-2.4-7.4-2.4h-3.8v18h4.2c3.1 0 5.4-.8 7-2.3zm32.1 8.1h-5.8V78c-1.7 2-3.6 3-6 3s-4.4-.7-6-2.1-2.4-3.2-2.4-5.5.8-4 2.5-5.1 4-1.7 6.9-1.7h4.6v-.2c0-2.4-1.2-3.6-3.8-3.6-1.1 0-2.2.2-3.4.6-1.2.4-2.2 1-3.1 1.6l-2.8-4.1c3-2.2 6.3-3.2 10.1-3.2 2.7 0 4.9.7 6.6 2.1 1.7 1.4 2.5 3.5 2.5 6.5v14.5h.1zm-6.3-8.6v-.9h-3.9c-2.5 0-3.8.7-3.8 2.2 0 .8.3 1.4.9 1.8s1.4.6 2.6.6c1.1 0 2.1-.3 2.9-1 .9-.7 1.3-1.6 1.3-2.7zm22.8-8.4c-1.9 0-3.4.6-4.3 2-.9 1.3-1.5 3.1-1.5 5.3v9.8h-6.2V58.4h6.2v2.9c.8-.9 2-1.7 3.2-2.3s2.6-1 3.9-1v5.9l-1.3-.1zm11.3-.9v9.9c0 .9.2 1.5.7 2 .4.5 1 .7 1.6.7 1.2 0 2.2-.5 3-1.6l2.3 4.4c-1.9 1.8-4 2.7-6.1 2.7-2.2 0-4-.7-5.5-2.1s-2.2-3.4-2.2-5.8V51.7h6.2V58h6.6l-3.4 5-3.2-.1zM23.1 76.5l2.8-1.3L7.1 56.4v13.9c0 .1 0 .3.1.5l15.9 5.7zm-.4-21.1c-.2 0-.4-.1-.6-.1H8.2L27 74.1l1.3-2.9-5.6-15.8zm-1.2-1.6h.8c.4 0 .8.1 1.2.2h.1l-.6-1.5-3.8-3.8c-.9-.9-2.1-1.1-2.7-.6L8 53.8h13.5z"/><path fill="#00a8e1" d="M27.2 56.6c-.7-.7-1.9-1.4-3.1-1.7l5.8 16.4-1.7 3.9.4.4 3.9-1.3V61.9l-5.3-5.3zM5.7 70.3V56.2L.3 64.4c-.5.6-.3 1.8.6 2.7L4.6 71l1.2.4c-.1-.4-.1-.7-.1-1.1zm17.5 7.8l-.3-.1-15.7-5.6c.4 1 .9 2.1 1.6 2.7l5.5 5.4h12.2l1.4-4.6-4.7 2.2z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
1
icons/dart/dart-plain.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g fill="#00A8E1"><path d="M86.6 25l3 .1c1.1.1 2.2.3 3.4.5l-2.5-7.4L75.7 3.5c-3.4-3.4-8-4.4-10.4-2.3L29.2 25.1l57.4-.1zM92.7 28.6c-1.2-.2-2.3-.4-3.3-.5l-2.9-.1-56 .1 78.6 78.6 6.1-13.8-22.5-64.3zM28.9 92.2l64.3 22.7 13.8-6.1-78.6-78.6v56.1l.1 2.7c0 .9.1 2 .4 3.2z"/><path d="M106.9 34.3c-2.6-2.6-7-5.1-11.3-6.5L118.4 93l-6.9 15.7 15.8-5.2V54.8l-20.4-20.5zM93.4 118.1l-65-22.9c1.4 4.3 3.8 8.7 6.5 11.4l21.3 21.2 47.6.1 5.3-16.7-15.7 6.9zM25.5 89.1l-.1-2.7V28.9L1.7 65.1C-.4 67.3.7 72 4 75.5l14.7 14.8 7.3 2.6c-.3-1.3-.5-2.5-.5-3.8z"/></g></svg>
|
After Width: | Height: | Size: 606 B |
15
icons/digitalocean/digitalocean-original-wordmark.svg
Normal file
After Width: | Height: | Size: 13 KiB |
12
icons/digitalocean/digitalocean-original.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="128px" height="128px" viewBox="0 0 128 128" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="digitalocean-original" fill-rule="nonzero" fill="#0080FF">
|
||||
<g id="digitalocean" transform="translate(17.000000, 17.000000)">
|
||||
<path d="M46.7235294,93.7245203 L46.7235294,75.5428571 C66.0764706,75.5428571 81.0058824,56.5347548 73.5411765,36.4247335 C70.7764706,28.9867804 64.9705882,22.926226 57.2294118,20.1714286 C37.3235294,13.0089552 18.2470588,27.8848614 18.2470588,46.8929638 L0,46.8929638 C0,16.5901919 29.5823529,-7.37654584 61.9294118,2.54072495 C76.0294118,6.94840085 87.0882353,17.9675906 91.5117647,32.0170576 C101.464706,64.2481876 77.4117647,93.7245203 46.7235294,93.7245203 L46.7235294,93.7245203 Z" id="Shape"></path>
|
||||
<path d="M47,75.5428571 L28.7529412,75.5428571 L28.7529412,57.6366738 L47,57.6366738 L47,75.5428571 Z M28.7529412,89.5923241 L14.9294118,89.5923241 L14.9294118,75.5428571 L28.7529412,75.5428571 L28.7529412,89.5923241 Z M14.9294118,75.5428571 L3.31764706,75.5428571 L3.31764706,63.9727079 L14.9294118,63.9727079 L14.9294118,75.5428571 Z" id="Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
15
icons/digitalocean/digitalocean-plain-wordmark.svg
Normal file
After Width: | Height: | Size: 13 KiB |
12
icons/digitalocean/digitalocean-plain.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="128px" height="128px" viewBox="0 0 128 128" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="digitalocean-original" fill-rule="nonzero" fill="#000000">
|
||||
<g id="digitalocean" transform="translate(17.000000, 17.000000)">
|
||||
<path d="M46.7235294,93.7245203 L46.7235294,75.5428571 C66.0764706,75.5428571 81.0058824,56.5347548 73.5411765,36.4247335 C70.7764706,28.9867804 64.9705882,22.926226 57.2294118,20.1714286 C37.3235294,13.0089552 18.2470588,27.8848614 18.2470588,46.8929638 L0,46.8929638 C0,16.5901919 29.5823529,-7.37654584 61.9294118,2.54072495 C76.0294118,6.94840085 87.0882353,17.9675906 91.5117647,32.0170576 C101.464706,64.2481876 77.4117647,93.7245203 46.7235294,93.7245203 L46.7235294,93.7245203 Z" id="Shape"></path>
|
||||
<path d="M47,75.5428571 L28.7529412,75.5428571 L28.7529412,57.6366738 L47,57.6366738 L47,75.5428571 Z M28.7529412,89.5923241 L14.9294118,89.5923241 L14.9294118,75.5428571 L28.7529412,75.5428571 L28.7529412,89.5923241 Z M14.9294118,75.5428571 L3.31764706,75.5428571 L3.31764706,63.9727079 L14.9294118,63.9727079 L14.9294118,75.5428571 Z" id="Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
8
icons/dotnetcore/dotnetcore-original.svg
Normal file
After Width: | Height: | Size: 5.7 KiB |
8
icons/dotnetcore/dotnetcore-plain.svg
Normal file
After Width: | Height: | Size: 5.7 KiB |
10
icons/figma/figma-original.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
|
||||
<g>
|
||||
<path fill="#0acf83" d="M 45.5 129 C 57.4 129 67 119.4 67 107.5 L 67 86 L 45.5 86 C 33.6 86 24 95.6 24 107.5 C 24 119.4 33.6 129 45.5 129 Z M 45.5 129"/>
|
||||
<path fill="#a259ff" d="M 24 64.5 C 24 52.6 33.6 43 45.5 43 L 67 43 L 67 86 L 45.5 86 C 33.6 86 24 76.4 24 64.5 Z M 24 64.5"/>
|
||||
<path fill="#f24e1e" d="M 24 21.5 C 24 9.6 33.6 0 45.5 0 L 67 0 L 67 43 L 45.5 43 C 33.6 43 24 33.4 24 21.5 Z M 24 21.5"/>
|
||||
<path fill="#ff7262" d="M 67 0 L 88.5 0 C 100.4 0 110 9.6 110 21.5 C 110 33.4 100.4 43 88.5 43 L 67 43 Z M 67 0"/>
|
||||
<path fill="#1abcfe" d="M 110 64.5 C 110 76.4 100.4 86 88.5 86 C 76.6 86 67 76.4 67 64.5 C 67 52.6 76.6 43 88.5 43 C 100.4 43 110 52.6 110 64.5 Z M 110 64.5"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 883 B |
10
icons/figma/figma-plain.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
|
||||
<g>
|
||||
<path d="M 45.5 129 C 57.4 129 67 119.4 67 107.5 L 67 86 L 45.5 86 C 33.6 86 24 95.6 24 107.5 C 24 119.4 33.6 129 45.5 129 Z M 45.5 129"/>
|
||||
<path d="M 24 64.5 C 24 52.6 33.6 43 45.5 43 L 67 43 L 67 86 L 45.5 86 C 33.6 86 24 76.4 24 64.5 Z M 24 64.5"/>
|
||||
<path d="M 24 21.5 C 24 9.6 33.6 0 45.5 0 L 67 0 L 67 43 L 45.5 43 C 33.6 43 24 33.4 24 21.5 Z M 24 21.5"/>
|
||||
<path d="M 67 0 L 88.5 0 C 100.4 0 110 9.6 110 21.5 C 110 33.4 100.4 43 88.5 43 L 67 43 Z M 67 0"/>
|
||||
<path d="M 110 64.5 C 110 76.4 100.4 86 88.5 86 C 76.6 86 67 76.4 67 64.5 C 67 52.6 76.6 43 88.5 43 C 100.4 43 110 52.6 110 64.5 Z M 110 64.5"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 808 B |
27
icons/graphql/graphql-plain-wordmark.svg
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
|
||||
<g id="surface1">
|
||||
<path fill="#E434AA" d="M 35.386719 71.789062 L 32.5 70.128906 L 64.652344 14.699219 L 67.535156 16.355469 Z M 35.386719 71.789062 "/>
|
||||
<path fill="#E434AA" d="M 31.839844 65.699219 L 96.140625 65.699219 L 96.140625 69.019531 L 31.839844 69.019531 Z M 31.839844 65.699219 "/>
|
||||
<path fill="#E434AA" d="M 65.273438 86.050781 L 33.113281 67.566406 L 34.777344 64.691406 L 66.941406 83.175781 Z M 65.273438 86.050781 "/>
|
||||
<path fill="#E434AA" d="M 93.214844 37.871094 L 61.050781 19.386719 L 62.71875 16.515625 L 94.878906 35 Z M 93.214844 37.871094 "/>
|
||||
<path fill="#E434AA" d="M 34.785156 37.859375 L 33.121094 34.988281 L 65.285156 16.503906 L 66.949219 19.375 Z M 34.785156 37.859375 "/>
|
||||
<path fill="#E434AA" d="M 92.621094 71.789062 L 60.46875 16.355469 L 63.355469 14.699219 L 95.507812 70.128906 Z M 92.621094 71.789062 "/>
|
||||
<path fill="#E434AA" d="M 34.390625 32.789062 L 37.722656 32.789062 L 37.722656 69.757812 L 34.390625 69.757812 Z M 34.390625 32.789062 "/>
|
||||
<path fill="#E434AA" d="M 90.277344 32.789062 L 93.609375 32.789062 L 93.609375 69.757812 L 90.277344 69.757812 Z M 90.277344 32.789062 "/>
|
||||
<path fill="#E434AA" d="M 64.707031 84.644531 L 63.25 82.136719 L 91.222656 66.058594 L 92.679688 68.566406 Z M 64.707031 84.644531 "/>
|
||||
<path fill="#E434AA" d="M 98.027344 70.835938 C 96.101562 74.175781 91.804688 75.3125 88.453125 73.394531 C 85.097656 71.476562 83.953125 67.199219 85.882812 63.863281 C 87.808594 60.523438 92.105469 59.386719 95.457031 61.304688 C 98.832031 63.242188 99.976562 67.5 98.027344 70.835938 "/>
|
||||
<path fill="#E434AA" d="M 42.097656 38.683594 C 40.171875 42.019531 35.875 43.160156 32.523438 41.242188 C 29.167969 39.320312 28.023438 35.046875 29.953125 31.707031 C 31.878906 28.371094 36.175781 27.230469 39.527344 29.148438 C 42.878906 31.089844 44.023438 35.34375 42.097656 38.683594 "/>
|
||||
<path fill="#E434AA" d="M 29.972656 70.835938 C 28.042969 67.5 29.1875 63.242188 32.542969 61.304688 C 35.894531 59.386719 40.171875 60.523438 42.117188 63.863281 C 44.046875 67.199219 42.902344 71.457031 39.546875 73.394531 C 36.175781 75.3125 31.898438 74.175781 29.972656 70.835938 "/>
|
||||
<path fill="#E434AA" d="M 85.902344 38.683594 C 83.976562 35.34375 85.121094 31.089844 88.472656 29.148438 C 91.824219 27.230469 96.101562 28.371094 98.046875 31.707031 C 99.976562 35.046875 98.832031 39.300781 95.476562 41.242188 C 92.125 43.160156 87.828125 42.019531 85.902344 38.683594 "/>
|
||||
<path fill="#E434AA" d="M 64 90.402344 C 60.125 90.402344 56.992188 87.285156 56.992188 83.425781 C 56.992188 79.570312 60.125 76.453125 64 76.453125 C 67.875 76.453125 71.007812 79.570312 71.007812 83.425781 C 71.007812 87.261719 67.875 90.402344 64 90.402344 "/>
|
||||
<path fill="#E434AA" d="M 64 26.09375 C 60.125 26.09375 56.992188 22.976562 56.992188 19.117188 C 56.992188 15.261719 60.125 12.144531 64 12.144531 C 67.875 12.144531 71.007812 15.261719 71.007812 19.117188 C 71.007812 22.976562 67.875 26.09375 64 26.09375 "/>
|
||||
<path fill="#E434AA" d="M 106.625 121.507812 C 106.4375 121.507812 106.289062 121.453125 106.175781 121.339844 C 106.0625 121.226562 106.003906 121.078125 106.003906 120.890625 L 106.003906 102.425781 C 106.003906 102.238281 106.0625 102.085938 106.175781 101.972656 C 106.289062 101.859375 106.4375 101.804688 106.625 101.804688 L 107.164062 101.804688 C 107.351562 101.804688 107.503906 101.859375 107.617188 101.972656 C 107.730469 102.085938 107.785156 102.238281 107.785156 102.425781 L 107.785156 119.820312 L 117.542969 119.820312 C 117.75 119.820312 117.910156 119.875 118.023438 119.988281 C 118.136719 120.101562 118.191406 120.261719 118.191406 120.464844 L 118.191406 120.890625 C 118.191406 121.078125 118.136719 121.226562 118.023438 121.339844 C 117.910156 121.453125 117.75 121.507812 117.542969 121.507812 Z M 106.625 121.507812 "/>
|
||||
<path fill="#E434AA" d="M 100.09375 123.335938 C 99.886719 123.335938 99.707031 123.257812 99.558594 123.097656 C 99.40625 122.9375 99.285156 122.804688 99.191406 122.691406 L 97.945312 120.972656 C 96.816406 121.515625 95.496094 121.789062 93.988281 121.789062 C 92.421875 121.789062 91.09375 121.511719 90 120.960938 C 88.90625 120.40625 88.066406 119.550781 87.484375 118.398438 C 86.898438 117.242188 86.578125 115.785156 86.523438 114.019531 C 86.503906 113.175781 86.492188 112.386719 86.492188 111.65625 C 86.492188 110.925781 86.503906 110.136719 86.523438 109.292969 C 86.578125 107.546875 86.917969 106.097656 87.539062 104.941406 C 88.160156 103.789062 89.023438 102.929688 90.128906 102.367188 C 91.230469 101.804688 92.515625 101.523438 93.988281 101.523438 C 95.457031 101.523438 96.742188 101.804688 97.847656 102.367188 C 98.949219 102.929688 99.816406 103.789062 100.449219 104.941406 C 101.078125 106.097656 101.414062 107.546875 101.453125 109.292969 C 101.488281 110.136719 101.507812 110.925781 101.507812 111.65625 C 101.507812 112.386719 101.488281 113.175781 101.453125 114.019531 C 101.359375 116.703125 100.667969 118.675781 99.386719 119.933594 L 101.199219 122.464844 C 101.214844 122.484375 101.234375 122.515625 101.253906 122.5625 C 101.273438 122.609375 101.28125 122.679688 101.28125 122.773438 C 101.28125 122.925781 101.226562 123.054688 101.113281 123.167969 C 101 123.28125 100.867188 123.335938 100.71875 123.335938 Z M 93.988281 120.101562 C 95.609375 120.101562 96.941406 119.613281 97.988281 118.636719 C 99.035156 117.660156 99.59375 116.074219 99.671875 113.878906 C 99.707031 113.035156 99.726562 112.292969 99.726562 111.65625 C 99.726562 111.019531 99.707031 110.277344 99.671875 109.433594 C 99.632812 107.96875 99.363281 106.777344 98.863281 105.859375 C 98.363281 104.9375 97.695312 104.269531 96.855469 103.84375 C 96.019531 103.421875 95.0625 103.210938 93.988281 103.210938 C 92.929688 103.210938 91.984375 103.421875 91.144531 103.84375 C 90.304688 104.269531 89.636719 104.9375 89.136719 105.859375 C 88.636719 106.777344 88.359375 107.96875 88.304688 109.433594 C 88.285156 110.277344 88.273438 111.019531 88.273438 111.65625 C 88.273438 112.292969 88.285156 113.035156 88.304688 113.878906 C 88.378906 116.074219 88.945312 117.660156 90 118.636719 C 91.054688 119.613281 92.382812 120.101562 93.988281 120.101562 Z M 93.988281 120.101562 "/>
|
||||
<path fill="#E434AA" d="M 70.855469 121.507812 C 70.667969 121.507812 70.519531 121.453125 70.40625 121.339844 C 70.292969 121.226562 70.234375 121.078125 70.234375 120.890625 L 70.234375 102.140625 C 70.234375 101.953125 70.292969 101.804688 70.40625 101.691406 C 70.519531 101.578125 70.667969 101.523438 70.855469 101.523438 L 71.335938 101.523438 C 71.527344 101.523438 71.675781 101.578125 71.789062 101.691406 C 71.902344 101.804688 71.960938 101.953125 71.960938 102.140625 L 71.960938 108.8125 C 72.46875 108.15625 73.085938 107.621094 73.8125 107.210938 C 74.539062 106.796875 75.503906 106.589844 76.710938 106.589844 C 77.992188 106.589844 79.0625 106.867188 79.917969 107.421875 C 80.777344 107.972656 81.417969 108.722656 81.84375 109.671875 C 82.265625 110.621094 82.480469 111.695312 82.480469 112.894531 L 82.480469 120.890625 C 82.480469 121.078125 82.421875 121.226562 82.308594 121.339844 C 82.195312 121.453125 82.046875 121.507812 81.855469 121.507812 L 81.375 121.507812 C 81.1875 121.507812 81.035156 121.453125 80.921875 121.339844 C 80.808594 121.226562 80.753906 121.078125 80.753906 120.890625 L 80.753906 113.035156 C 80.753906 111.535156 80.386719 110.355469 79.652344 109.503906 C 78.914062 108.648438 77.839844 108.222656 76.425781 108.222656 C 75.089844 108.222656 74.011719 108.648438 73.191406 109.503906 C 72.371094 110.355469 71.960938 111.535156 71.960938 113.035156 L 71.960938 120.890625 C 71.960938 121.078125 71.902344 121.226562 71.789062 121.339844 C 71.675781 121.453125 71.527344 121.507812 71.335938 121.507812 Z M 70.855469 121.507812 "/>
|
||||
<path fill="#E434AA" d="M 54.429688 126.855469 C 54.238281 126.855469 54.089844 126.800781 53.976562 126.6875 C 53.863281 126.574219 53.804688 126.425781 53.804688 126.238281 L 53.804688 107.492188 C 53.804688 107.304688 53.863281 107.152344 53.976562 107.039062 C 54.089844 106.925781 54.238281 106.871094 54.429688 106.871094 L 54.910156 106.871094 C 55.097656 106.871094 55.25 106.925781 55.363281 107.039062 C 55.476562 107.152344 55.53125 107.304688 55.53125 107.492188 L 55.53125 108.8125 C 56.003906 108.175781 56.621094 107.644531 57.382812 107.222656 C 58.148438 106.800781 59.113281 106.589844 60.28125 106.589844 C 61.394531 106.589844 62.328125 106.78125 63.082031 107.167969 C 63.835938 107.550781 64.449219 108.0625 64.917969 108.699219 C 65.390625 109.339844 65.738281 110.050781 65.964844 110.839844 C 66.191406 111.628906 66.3125 112.433594 66.332031 113.261719 C 66.351562 113.542969 66.359375 113.851562 66.359375 114.191406 C 66.359375 114.527344 66.351562 114.835938 66.332031 115.117188 C 66.3125 115.945312 66.191406 116.75 65.964844 117.539062 C 65.738281 118.328125 65.390625 119.039062 64.917969 119.679688 C 64.449219 120.316406 63.835938 120.828125 63.082031 121.210938 C 62.328125 121.597656 61.394531 121.789062 60.28125 121.789062 C 59.113281 121.789062 58.148438 121.574219 57.382812 121.140625 C 56.621094 120.710938 56.003906 120.183594 55.53125 119.566406 L 55.53125 126.238281 C 55.53125 126.425781 55.476562 126.574219 55.363281 126.6875 C 55.25 126.800781 55.097656 126.855469 54.910156 126.855469 Z M 60.113281 120.15625 C 61.222656 120.15625 62.101562 119.914062 62.742188 119.425781 C 63.382812 118.9375 63.84375 118.300781 64.128906 117.511719 C 64.410156 116.722656 64.570312 115.878906 64.609375 114.976562 C 64.625 114.453125 64.625 113.925781 64.609375 113.402344 C 64.570312 112.5 64.410156 111.65625 64.128906 110.867188 C 63.84375 110.082031 63.382812 109.441406 62.742188 108.953125 C 62.101562 108.464844 61.222656 108.222656 60.113281 108.222656 C 59.039062 108.222656 58.171875 108.476562 57.511719 108.980469 C 56.851562 109.488281 56.367188 110.121094 56.054688 110.882812 C 55.742188 111.640625 55.570312 112.40625 55.53125 113.175781 C 55.511719 113.457031 55.503906 113.824219 55.503906 114.273438 C 55.503906 114.722656 55.511719 115.089844 55.53125 115.371094 C 55.550781 116.121094 55.722656 116.863281 56.054688 117.59375 C 56.382812 118.328125 56.882812 118.9375 57.554688 119.425781 C 58.222656 119.914062 59.074219 120.15625 60.113281 120.15625 Z M 60.113281 120.15625 "/>
|
||||
<path fill="#E434AA" d="M 42.582031 121.789062 C 41.675781 121.789062 40.839844 121.601562 40.078125 121.226562 C 39.316406 120.851562 38.699219 120.347656 38.226562 119.71875 C 37.753906 119.09375 37.519531 118.382812 37.519531 117.59375 C 37.519531 116.320312 38.039062 115.296875 39.074219 114.527344 C 40.109375 113.757812 41.457031 113.261719 43.117188 113.035156 L 47.585938 112.417969 L 47.585938 111.429688 C 47.585938 110.4375 47.277344 109.652344 46.667969 109.082031 C 46.054688 108.507812 45.078125 108.222656 43.738281 108.222656 C 42.757812 108.222656 41.96875 108.414062 41.363281 108.800781 C 40.761719 109.183594 40.347656 109.6875 40.121094 110.304688 C 40.027344 110.585938 39.847656 110.726562 39.582031 110.726562 L 39.132812 110.726562 C 38.90625 110.726562 38.746094 110.667969 38.648438 110.542969 C 38.554688 110.421875 38.507812 110.277344 38.507812 110.109375 C 38.507812 109.84375 38.609375 109.515625 38.804688 109.125 C 39.003906 108.730469 39.308594 108.339844 39.726562 107.953125 C 40.140625 107.570312 40.675781 107.246094 41.335938 106.984375 C 41.996094 106.722656 42.796875 106.589844 43.738281 106.589844 C 44.851562 106.589844 45.769531 106.738281 46.496094 107.039062 C 47.222656 107.339844 47.789062 107.730469 48.195312 108.207031 C 48.597656 108.6875 48.886719 109.21875 49.054688 109.796875 C 49.226562 110.378906 49.308594 110.953125 49.308594 111.515625 L 49.308594 120.890625 C 49.308594 121.078125 49.253906 121.226562 49.140625 121.339844 C 49.027344 121.453125 48.875 121.507812 48.6875 121.507812 L 48.207031 121.507812 C 48.019531 121.507812 47.867188 121.453125 47.753906 121.339844 C 47.640625 121.226562 47.585938 121.078125 47.585938 120.890625 L 47.585938 119.566406 C 47.359375 119.902344 47.039062 120.242188 46.625 120.578125 C 46.210938 120.917969 45.675781 121.203125 45.027344 121.4375 C 44.375 121.671875 43.5625 121.789062 42.582031 121.789062 Z M 42.863281 120.15625 C 43.730469 120.15625 44.523438 119.96875 45.238281 119.59375 C 45.953125 119.21875 46.523438 118.640625 46.949219 117.863281 C 47.375 117.085938 47.585938 116.105469 47.585938 114.921875 L 47.585938 113.964844 L 43.9375 114.472656 C 42.390625 114.675781 41.222656 115.035156 40.429688 115.539062 C 39.640625 116.046875 39.242188 116.683594 39.242188 117.453125 C 39.242188 118.074219 39.421875 118.582031 39.78125 118.976562 C 40.140625 119.367188 40.597656 119.664062 41.152344 119.859375 C 41.707031 120.058594 42.277344 120.15625 42.863281 120.15625 Z M 42.863281 120.15625 "/>
|
||||
<path fill="#E434AA" d="M 29.628906 121.507812 C 29.441406 121.507812 29.289062 121.453125 29.175781 121.339844 C 29.066406 121.226562 29.007812 121.078125 29.007812 120.890625 L 29.007812 107.519531 C 29.007812 107.332031 29.066406 107.175781 29.175781 107.054688 C 29.289062 106.933594 29.441406 106.871094 29.628906 106.871094 L 30.082031 106.871094 C 30.269531 106.871094 30.425781 106.933594 30.550781 107.054688 C 30.671875 107.175781 30.734375 107.332031 30.734375 107.519531 L 30.734375 108.8125 C 31.070312 108.15625 31.5625 107.667969 32.203125 107.351562 C 32.84375 107.03125 33.636719 106.871094 34.578125 106.871094 L 35.625 106.871094 C 35.8125 106.871094 35.964844 106.925781 36.078125 107.039062 C 36.191406 107.152344 36.246094 107.304688 36.246094 107.492188 L 36.246094 107.882812 C 36.246094 108.074219 36.191406 108.222656 36.078125 108.335938 C 35.964844 108.449219 35.8125 108.503906 35.625 108.503906 L 34.410156 108.503906 C 33.277344 108.503906 32.382812 108.832031 31.722656 109.488281 C 31.0625 110.144531 30.734375 111.039062 30.734375 112.164062 L 30.734375 120.890625 C 30.734375 121.078125 30.671875 121.226562 30.550781 121.339844 C 30.425781 121.453125 30.269531 121.507812 30.082031 121.507812 Z M 29.628906 121.507812 "/>
|
||||
<path fill="#E434AA" d="M 17.386719 121.789062 C 15.765625 121.789062 14.402344 121.476562 13.300781 120.847656 C 12.199219 120.21875 11.359375 119.339844 10.785156 118.214844 C 10.207031 117.089844 9.894531 115.792969 9.835938 114.332031 C 9.816406 113.484375 9.808594 112.59375 9.808594 111.65625 C 9.808594 110.71875 9.816406 109.828125 9.835938 108.980469 C 9.894531 107.5 10.207031 106.199219 10.785156 105.082031 C 11.359375 103.96875 12.203125 103.09375 13.316406 102.464844 C 14.425781 101.835938 15.785156 101.523438 17.386719 101.523438 C 18.6875 101.523438 19.800781 101.714844 20.722656 102.101562 C 21.648438 102.484375 22.402344 102.964844 22.984375 103.535156 C 23.570312 104.109375 24.003906 104.683594 24.285156 105.265625 C 24.570312 105.847656 24.71875 106.335938 24.738281 106.730469 C 24.757812 106.898438 24.710938 107.035156 24.597656 107.136719 C 24.484375 107.242188 24.332031 107.292969 24.144531 107.292969 L 23.523438 107.292969 C 23.351562 107.292969 23.230469 107.25 23.15625 107.167969 C 23.078125 107.082031 23.003906 106.9375 22.929688 106.730469 C 22.738281 106.148438 22.425781 105.589844 21.980469 105.054688 C 21.539062 104.519531 20.945312 104.078125 20.199219 103.734375 C 19.457031 103.386719 18.515625 103.210938 17.386719 103.210938 C 15.707031 103.210938 14.347656 103.667969 13.300781 104.578125 C 12.253906 105.488281 11.695312 107.003906 11.617188 109.125 C 11.5625 110.8125 11.5625 112.5 11.617188 114.191406 C 11.695312 116.292969 12.253906 117.800781 13.300781 118.722656 C 14.347656 119.640625 15.707031 120.101562 17.386719 120.101562 C 18.5 120.101562 19.496094 119.890625 20.382812 119.46875 C 21.269531 119.046875 21.96875 118.398438 22.476562 117.523438 C 22.984375 116.652344 23.238281 115.539062 23.238281 114.191406 L 23.238281 112.753906 L 18.320312 112.753906 C 18.132812 112.753906 17.980469 112.691406 17.867188 112.570312 C 17.753906 112.449219 17.699219 112.292969 17.699219 112.105469 L 17.699219 111.710938 C 17.699219 111.507812 17.753906 111.347656 17.867188 111.234375 C 17.980469 111.121094 18.132812 111.066406 18.320312 111.066406 L 24.371094 111.066406 C 24.578125 111.066406 24.738281 111.121094 24.851562 111.234375 C 24.964844 111.347656 25.019531 111.507812 25.019531 111.710938 L 25.019531 114.191406 C 25.019531 115.691406 24.722656 117.015625 24.128906 118.160156 C 23.535156 119.304688 22.667969 120.195312 21.527344 120.832031 C 20.386719 121.46875 19.007812 121.789062 17.386719 121.789062 Z M 17.386719 121.789062 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
20
icons/graphql/graphql-plain.svg
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
|
||||
<g id="surface1">
|
||||
<path fill="#E434AA" d="M 18.390625 96.851562 L 13.789062 94.195312 L 65.039062 5.433594 L 69.636719 8.089844 Z M 18.390625 96.851562 "/>
|
||||
<path fill="#E434AA" d="M 12.734375 87.105469 L 115.230469 87.105469 L 115.230469 92.414062 L 12.734375 92.414062 Z M 12.734375 87.105469 "/>
|
||||
<path fill="#E434AA" d="M 66.03125 119.6875 L 14.765625 90.089844 L 17.421875 85.488281 L 68.6875 115.089844 Z M 66.03125 119.6875 "/>
|
||||
<path fill="#E434AA" d="M 110.566406 42.542969 L 59.300781 12.941406 L 61.957031 8.34375 L 113.222656 37.941406 Z M 110.566406 42.542969 "/>
|
||||
<path fill="#E434AA" d="M 17.433594 42.523438 L 14.777344 37.921875 L 66.046875 8.324219 L 68.703125 12.921875 Z M 17.433594 42.523438 "/>
|
||||
<path fill="#E434AA" d="M 109.621094 96.851562 L 58.375 8.089844 L 62.972656 5.433594 L 114.222656 94.195312 Z M 109.621094 96.851562 "/>
|
||||
<path fill="#E434AA" d="M 16.800781 34.398438 L 22.113281 34.398438 L 22.113281 93.601562 L 16.800781 93.601562 Z M 16.800781 34.398438 "/>
|
||||
<path fill="#E434AA" d="M 105.886719 34.398438 L 111.199219 34.398438 L 111.199219 93.601562 L 105.886719 93.601562 Z M 105.886719 34.398438 "/>
|
||||
<path fill="#E434AA" d="M 65.128906 117.441406 L 62.808594 113.421875 L 107.394531 87.675781 L 109.714844 91.695312 Z M 65.128906 117.441406 "/>
|
||||
<path fill="#E434AA" d="M 118.238281 95.328125 C 115.167969 100.671875 108.320312 102.496094 102.976562 99.425781 C 97.632812 96.351562 95.808594 89.503906 98.878906 84.160156 C 101.953125 78.816406 108.800781 76.992188 114.144531 80.0625 C 119.519531 83.167969 121.34375 89.984375 118.238281 95.328125 "/>
|
||||
<path fill="#E434AA" d="M 29.089844 43.839844 C 26.015625 49.183594 19.167969 51.007812 13.824219 47.9375 C 8.480469 44.863281 6.65625 38.015625 9.726562 32.671875 C 12.800781 27.328125 19.648438 25.503906 24.992188 28.574219 C 30.335938 31.679688 32.160156 38.496094 29.089844 43.839844 "/>
|
||||
<path fill="#E434AA" d="M 9.761719 95.328125 C 6.6875 89.984375 8.511719 83.167969 13.855469 80.0625 C 19.199219 76.992188 26.015625 78.816406 29.121094 84.160156 C 32.191406 89.503906 30.367188 96.320312 25.023438 99.425781 C 19.648438 102.496094 12.832031 100.671875 9.761719 95.328125 "/>
|
||||
<path fill="#E434AA" d="M 98.910156 43.839844 C 95.839844 38.496094 97.664062 31.679688 103.007812 28.574219 C 108.351562 25.503906 115.167969 27.328125 118.273438 32.671875 C 121.34375 38.015625 119.519531 44.832031 114.175781 47.9375 C 108.832031 51.007812 101.984375 49.183594 98.910156 43.839844 "/>
|
||||
<path fill="#E434AA" d="M 64 126.65625 C 57.824219 126.65625 52.832031 121.664062 52.832031 115.488281 C 52.832031 109.3125 57.824219 104.320312 64 104.320312 C 70.175781 104.320312 75.167969 109.3125 75.167969 115.488281 C 75.167969 121.632812 70.175781 126.65625 64 126.65625 "/>
|
||||
<path fill="#E434AA" d="M 64 23.679688 C 57.824219 23.679688 52.832031 18.6875 52.832031 12.511719 C 52.832031 6.335938 57.824219 1.34375 64 1.34375 C 70.175781 1.34375 75.167969 6.335938 75.167969 12.511719 C 75.167969 18.6875 70.175781 23.679688 64 23.679688 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
41
icons/lua/lua-original-wordmark.svg
Normal file
@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
</style>
|
||||
<path fill="#000080" d="M127.3,15.1c0-7.9-6.4-14.3-14.3-14.3S98.6,7.1,98.6,15.1S105,29.4,113,29.4S127.3,23,127.3,15.1"/>
|
||||
<g>
|
||||
<path fill="#000080" d="M64,15.1c-27,0-49,21.9-49,49s21.9,49,49,49s49-21.9,49-49S91,15.1,64,15.1z M50.7,88.5h-20V56.4h4.1v28.5
|
||||
h15.9L50.7,88.5L50.7,88.5z M73,88.5h-3.3v-3.2c-2.2,3-4.3,4.2-7.7,4.2c-4.5,0-7.4-2.5-7.4-6.3V65.4h3.7v16.3
|
||||
c0,2.8,1.9,4.5,4.8,4.5c3.8,0,6.3-3.1,6.3-7.8V65.4H73V88.5z M70,43.7c0-7.9,6.4-14.3,14.3-14.3s14.3,6.4,14.3,14.3
|
||||
s-6.4,14.3-14.3,14.3S70,51.6,70,43.7z M99.8,89.1c-1.2,0.3-1.8,0.4-2.5,0.4c-2.4,0-3.5-1.1-3.8-3.4c-2.6,2.4-4.9,3.4-7.8,3.4
|
||||
c-4.7,0-7.6-2.6-7.6-6.8c0-3,1.4-5.1,4.1-6.2c1.4-0.6,2.2-0.7,7.4-1.4c2.9-0.4,3.8-1,3.8-2.6v-1c0-2.2-1.9-3.4-5.2-3.4
|
||||
c-3.4,0-5.1,1.3-5.4,4.1h-3.7c0.1-2.3,0.5-3.6,1.6-4.8c1.5-1.7,4.3-2.7,7.7-2.7c5.7,0,8.7,2.2,8.7,6.3v13.6c0,1.1,0.7,1.8,2,1.8
|
||||
c0.2,0,0.4,0,0.8-0.1L99.8,89.1L99.8,89.1z"/>
|
||||
<path fill="#000080" d="M81.9,82.6c0,2.3,1.7,3.7,4.5,3.7c2.2,0,4-0.7,5.5-2.1c1.1-1,1.5-1.8,1.5-3v-4.1c-1.2,0.6-2,0.7-5.9,1.3
|
||||
C83.6,78.9,81.9,80.2,81.9,82.6z"/>
|
||||
</g>
|
||||
<path fill="#808080" d="M66.3,128l-0.1-1.5c1.8-0.1,3.6-0.2,5.4-0.4l0.2,1.5C70,127.8,68.1,127.9,66.3,128z M60.7,128
|
||||
c-1.9-0.1-3.7-0.3-5.6-0.5l0.2-1.5c1.8,0.2,3.6,0.4,5.4,0.5L60.7,128z M77.3,126.6l-0.3-1.4c1.8-0.4,3.5-0.8,5.3-1.4l0.4,1.4
|
||||
C81,125.8,79.2,126.3,77.3,126.6z M49.6,126.4c-1.8-0.4-3.6-0.9-5.4-1.5l0.5-1.4c1.7,0.6,3.5,1,5.3,1.5L49.6,126.4z M88,123.4
|
||||
l-0.6-1.4c1.7-0.7,3.3-1.4,5-2.3l0.7,1.3C91.4,121.9,89.7,122.7,88,123.4z M39,123c-1.7-0.7-3.4-1.5-5-2.4l0.7-1.3
|
||||
c1.6,0.9,3.3,1.6,4.9,2.4L39,123z M98,118.3l-0.8-1.2c1.5-1,3-2,4.5-3.1l0.9,1.2C101.1,116.3,99.5,117.3,98,118.3z M29.2,117.7
|
||||
c-1.6-1-3.1-2.1-4.5-3.2l0.9-1.2c1.4,1.1,2.9,2.2,4.4,3.2L29.2,117.7z M106.9,111.6l-1-1.1c1.3-1.2,2.7-2.5,3.9-3.8l1.1,1
|
||||
C109.6,109,108.2,110.3,106.9,111.6z M20.4,110.9c-1.4-1.3-2.7-2.6-3.9-4l1.1-1c1.2,1.3,2.5,2.7,3.8,3.9L20.4,110.9z M114.5,103.4
|
||||
l-1.2-0.9c1.1-1.4,2.2-2.9,3.2-4.4l1.2,0.8C116.7,100.4,115.6,102,114.5,103.4z M12.9,102.6c-1.1-1.5-2.2-3-3.2-4.6l1.2-0.8
|
||||
c1,1.5,2,3,3.1,4.5L12.9,102.6z M120.6,94.1l-1.3-0.7c0.9-1.6,1.6-3.3,2.4-4.9L123,89C122.2,90.7,121.4,92.4,120.6,94.1z M7,93.1
|
||||
c-0.8-1.7-1.6-3.4-2.3-5.1L6,87.5c0.7,1.7,1.4,3.3,2.3,5L7,93.1z M124.9,83.8l-1.4-0.5c0.6-1.7,1-3.5,1.5-5.3l1.4,0.3
|
||||
C126,80.2,125.5,82,124.9,83.8z M2.8,82.8c-0.5-1.8-1-3.6-1.4-5.4l1.4-0.3c0.4,1.8,0.8,3.5,1.4,5.3L2.8,82.8z M127.4,72.9l-1.5-0.2
|
||||
c0.2-1.8,0.4-3.6,0.5-5.4l1.5,0.1C127.9,69.2,127.7,71.1,127.4,72.9z M0.5,71.9C0.2,70,0.1,68.2,0,66.3l1.5-0.1
|
||||
c0.1,1.8,0.2,3.6,0.4,5.4L0.5,71.9z M126.5,61.8c-0.1-1.8-0.2-3.6-0.4-5.4l1.5-0.2c0.2,1.8,0.4,3.7,0.4,5.6L126.5,61.8z M1.5,60.8
|
||||
l-1.5-0.1c0.1-1.9,0.3-3.7,0.5-5.6L2,55.4C1.8,57.2,1.6,59,1.5,60.8z M125.2,51c-0.4-1.8-0.8-3.6-1.4-5.3l1.4-0.4
|
||||
c0.5,1.8,1,3.6,1.4,5.4L125.2,51z M3,50l-1.4-0.3c0.4-1.8,0.9-3.6,1.5-5.4l1.4,0.5C3.9,46.5,3.4,48.2,3,50z M122,40.6
|
||||
c-0.7-1.7-1.4-3.4-2.3-5l1.3-0.7c0.8,1.7,1.6,3.4,2.3,5.1L122,40.6z M6.4,39.6L5,39.1c0.7-1.7,1.5-3.4,2.4-5l1.3,0.7
|
||||
C7.9,36.3,7.1,38,6.4,39.6z M11.5,30l-1.2-0.8c1-1.6,2.1-3.1,3.2-4.5l1.2,0.9C13.5,27,12.5,28.5,11.5,30z M18.2,21.4l-1.1-1
|
||||
c1.3-1.4,2.6-2.7,4-3.9l1,1.1C20.7,18.8,19.4,20.1,18.2,21.4z M26.3,14.1l-0.9-1.2c1.5-1.1,3-2.2,4.6-3.2l0.8,1.2
|
||||
C29.2,12,27.7,13,26.3,14.1z M93.3,8.7c-1.6-0.8-3.3-1.6-4.9-2.3L88.9,5c1.7,0.7,3.4,1.5,5,2.4L93.3,8.7z M35.5,8.3L34.8,7
|
||||
c1.7-0.8,3.4-1.6,5.1-2.3L40.5,6C38.8,6.7,37.1,7.5,35.5,8.3z M83.2,4.5c-1.7-0.6-3.5-1-5.3-1.4l0.3-1.4c1.8,0.4,3.6,0.9,5.4,1.5
|
||||
L83.2,4.5z M45.6,4.2l-0.4-1.4c1.8-0.5,3.6-1,5.4-1.4l0.3,1.4C49.1,3.2,47.3,3.7,45.6,4.2z M72.6,2c-1.8-0.2-3.6-0.4-5.4-0.5
|
||||
l0.1-1.5c1.9,0.1,3.7,0.3,5.6,0.5L72.6,2z M56.3,1.9l-0.2-1.5c1.8-0.2,3.7-0.4,5.6-0.4l0.1,1.5C59.9,1.5,58.1,1.7,56.3,1.9z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.0 KiB |
36
icons/lua/lua-original.svg
Normal file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
</style>
|
||||
<g>
|
||||
<path fill="#000080" d="M127.3,15.1c0-7.9-6.4-14.3-14.3-14.3S98.6,7.1,98.6,15.1S105,29.4,113,29.4S127.3,23,127.3,15.1"/>
|
||||
<g>
|
||||
<path fill="#000080" d="M64,15.1c-27,0-49,21.9-49,49s21.9,49,49,49s49-21.9,49-49S91,15.1,64,15.1z M70,43.7
|
||||
c0-7.9,6.4-14.3,14.3-14.3s14.3,6.4,14.3,14.3s-6.4,14.3-14.3,14.3S70,51.6,70,43.7z"/>
|
||||
</g>
|
||||
<path fill="#808080" d="M66.3,128l-0.1-1.5c1.8-0.1,3.6-0.2,5.4-0.4l0.2,1.5C70,127.8,68.1,127.9,66.3,128z M60.7,128
|
||||
c-1.9-0.1-3.7-0.3-5.6-0.5l0.2-1.5c1.8,0.2,3.6,0.4,5.4,0.5L60.7,128z M77.3,126.6l-0.3-1.4c1.8-0.4,3.5-0.8,5.3-1.4l0.4,1.4
|
||||
C81,125.8,79.2,126.3,77.3,126.6z M49.6,126.4c-1.8-0.4-3.6-0.9-5.4-1.5l0.5-1.4c1.7,0.6,3.5,1,5.3,1.5L49.6,126.4z M88,123.4
|
||||
l-0.6-1.4c1.7-0.7,3.3-1.4,5-2.3l0.7,1.3C91.4,121.9,89.7,122.7,88,123.4z M39,123c-1.7-0.7-3.4-1.5-5-2.4l0.7-1.3
|
||||
c1.6,0.9,3.3,1.6,4.9,2.4L39,123z M98,118.3l-0.8-1.2c1.5-1,3-2,4.5-3.1l0.9,1.2C101.1,116.3,99.5,117.3,98,118.3z M29.2,117.7
|
||||
c-1.6-1-3.1-2.1-4.5-3.2l0.9-1.2c1.4,1.1,2.9,2.2,4.4,3.2L29.2,117.7z M106.9,111.6l-1-1.1c1.3-1.2,2.7-2.5,3.9-3.8l1.1,1
|
||||
C109.6,109,108.2,110.3,106.9,111.6z M20.4,110.9c-1.4-1.3-2.7-2.6-3.9-4l1.1-1c1.2,1.3,2.5,2.7,3.8,3.9L20.4,110.9z M114.5,103.4
|
||||
l-1.2-0.9c1.1-1.4,2.2-2.9,3.2-4.4l1.2,0.8C116.7,100.4,115.6,102,114.5,103.4z M12.9,102.6c-1.1-1.5-2.2-3-3.2-4.6l1.2-0.8
|
||||
c1,1.5,2,3,3.1,4.5L12.9,102.6z M120.6,94.1l-1.3-0.7c0.9-1.6,1.6-3.3,2.4-4.9L123,89C122.2,90.7,121.4,92.4,120.6,94.1z M7,93.1
|
||||
c-0.8-1.7-1.6-3.4-2.3-5.1L6,87.5c0.7,1.7,1.4,3.3,2.3,5L7,93.1z M124.9,83.8l-1.4-0.5c0.6-1.7,1-3.5,1.5-5.3l1.4,0.3
|
||||
C126,80.2,125.5,82,124.9,83.8z M2.8,82.8c-0.5-1.8-1-3.6-1.4-5.4l1.4-0.3c0.4,1.8,0.8,3.5,1.4,5.3L2.8,82.8z M127.4,72.9l-1.5-0.2
|
||||
c0.2-1.8,0.4-3.6,0.5-5.4l1.5,0.1C127.9,69.2,127.7,71.1,127.4,72.9z M0.5,71.9C0.2,70,0.1,68.2,0,66.3l1.5-0.1
|
||||
c0.1,1.8,0.2,3.6,0.4,5.4L0.5,71.9z M126.5,61.8c-0.1-1.8-0.2-3.6-0.4-5.4l1.5-0.2c0.2,1.8,0.4,3.7,0.4,5.6L126.5,61.8z M1.5,60.8
|
||||
l-1.5-0.1c0.1-1.9,0.3-3.7,0.5-5.6L2,55.4C1.8,57.2,1.6,59,1.5,60.8z M125.2,51c-0.4-1.8-0.8-3.6-1.4-5.3l1.4-0.4
|
||||
c0.5,1.8,1,3.6,1.4,5.4L125.2,51z M3,50l-1.4-0.3c0.4-1.8,0.9-3.6,1.5-5.4l1.4,0.5C3.9,46.5,3.4,48.2,3,50z M122,40.6
|
||||
c-0.7-1.7-1.4-3.4-2.3-5l1.3-0.7c0.8,1.7,1.6,3.4,2.3,5.1L122,40.6z M6.4,39.6L5,39.1c0.7-1.7,1.5-3.4,2.4-5l1.3,0.7
|
||||
C7.9,36.3,7.1,38,6.4,39.6z M11.5,30l-1.2-0.8c1-1.6,2.1-3.1,3.2-4.5l1.2,0.9C13.5,27,12.5,28.5,11.5,30z M18.2,21.4l-1.1-1
|
||||
c1.3-1.4,2.6-2.7,4-3.9l1,1.1C20.7,18.8,19.4,20.1,18.2,21.4z M26.3,14.1l-0.9-1.2c1.5-1.1,3-2.2,4.6-3.2l0.8,1.2
|
||||
C29.2,12,27.7,13,26.3,14.1z M93.3,8.7c-1.6-0.8-3.3-1.6-4.9-2.3L88.9,5c1.7,0.7,3.4,1.5,5,2.4L93.3,8.7z M35.5,8.3L34.8,7
|
||||
c1.7-0.8,3.4-1.6,5.1-2.3L40.5,6C38.8,6.7,37.1,7.5,35.5,8.3z M83.2,4.5c-1.7-0.6-3.5-1-5.3-1.4l0.3-1.4c1.8,0.4,3.6,0.9,5.4,1.5
|
||||
L83.2,4.5z M45.6,4.2l-0.4-1.4c1.8-0.5,3.6-1,5.4-1.4l0.3,1.4C49.1,3.2,47.3,3.7,45.6,4.2z M72.6,2c-1.8-0.2-3.6-0.4-5.4-0.5
|
||||
l0.1-1.5c1.9,0.1,3.7,0.3,5.6,0.5L72.6,2z M56.3,1.9l-0.2-1.5c1.8-0.2,3.7-0.4,5.6-0.4l0.1,1.5C59.9,1.5,58.1,1.7,56.3,1.9z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
41
icons/lua/lua-plain-wordmark.svg
Normal file
@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
</style>
|
||||
<path fill="#000080" d="M127.3,15.1c0-7.9-6.4-14.3-14.3-14.3S98.6,7.1,98.6,15.1S105,29.4,113,29.4S127.3,23,127.3,15.1"/>
|
||||
<g>
|
||||
<path fill="#000080" d="M64,15.1c-27,0-49,21.9-49,49s21.9,49,49,49s49-21.9,49-49S91,15.1,64,15.1z M50.7,88.5h-20V56.4h4.1v28.5
|
||||
h15.9L50.7,88.5L50.7,88.5z M73,88.5h-3.3v-3.2c-2.2,3-4.3,4.2-7.7,4.2c-4.5,0-7.4-2.5-7.4-6.3V65.4h3.7v16.3
|
||||
c0,2.8,1.9,4.5,4.8,4.5c3.8,0,6.3-3.1,6.3-7.8V65.4H73V88.5z M70,43.7c0-7.9,6.4-14.3,14.3-14.3s14.3,6.4,14.3,14.3
|
||||
s-6.4,14.3-14.3,14.3S70,51.6,70,43.7z M99.8,89.1c-1.2,0.3-1.8,0.4-2.5,0.4c-2.4,0-3.5-1.1-3.8-3.4c-2.6,2.4-4.9,3.4-7.8,3.4
|
||||
c-4.7,0-7.6-2.6-7.6-6.8c0-3,1.4-5.1,4.1-6.2c1.4-0.6,2.2-0.7,7.4-1.4c2.9-0.4,3.8-1,3.8-2.6v-1c0-2.2-1.9-3.4-5.2-3.4
|
||||
c-3.4,0-5.1,1.3-5.4,4.1h-3.7c0.1-2.3,0.5-3.6,1.6-4.8c1.5-1.7,4.3-2.7,7.7-2.7c5.7,0,8.7,2.2,8.7,6.3v13.6c0,1.1,0.7,1.8,2,1.8
|
||||
c0.2,0,0.4,0,0.8-0.1L99.8,89.1L99.8,89.1z"/>
|
||||
<path fill="#000080" d="M81.9,82.6c0,2.3,1.7,3.7,4.5,3.7c2.2,0,4-0.7,5.5-2.1c1.1-1,1.5-1.8,1.5-3v-4.1c-1.2,0.6-2,0.7-5.9,1.3
|
||||
C83.6,78.9,81.9,80.2,81.9,82.6z"/>
|
||||
</g>
|
||||
<path fill="#000080" d="M66.3,128l-0.1-1.5c1.8-0.1,3.6-0.2,5.4-0.4l0.2,1.5C70,127.8,68.1,127.9,66.3,128z M60.7,128
|
||||
c-1.9-0.1-3.7-0.3-5.6-0.5l0.2-1.5c1.8,0.2,3.6,0.4,5.4,0.5L60.7,128z M77.3,126.6l-0.3-1.4c1.8-0.4,3.5-0.8,5.3-1.4l0.4,1.4
|
||||
C81,125.8,79.2,126.3,77.3,126.6z M49.6,126.4c-1.8-0.4-3.6-0.9-5.4-1.5l0.5-1.4c1.7,0.6,3.5,1,5.3,1.5L49.6,126.4z M88,123.4
|
||||
l-0.6-1.4c1.7-0.7,3.3-1.4,5-2.3l0.7,1.3C91.4,121.9,89.7,122.7,88,123.4z M39,123c-1.7-0.7-3.4-1.5-5-2.4l0.7-1.3
|
||||
c1.6,0.9,3.3,1.6,4.9,2.4L39,123z M98,118.3l-0.8-1.2c1.5-1,3-2,4.5-3.1l0.9,1.2C101.1,116.3,99.5,117.3,98,118.3z M29.2,117.7
|
||||
c-1.6-1-3.1-2.1-4.5-3.2l0.9-1.2c1.4,1.1,2.9,2.2,4.4,3.2L29.2,117.7z M106.9,111.6l-1-1.1c1.3-1.2,2.7-2.5,3.9-3.8l1.1,1
|
||||
C109.6,109,108.2,110.3,106.9,111.6z M20.4,110.9c-1.4-1.3-2.7-2.6-3.9-4l1.1-1c1.2,1.3,2.5,2.7,3.8,3.9L20.4,110.9z M114.5,103.4
|
||||
l-1.2-0.9c1.1-1.4,2.2-2.9,3.2-4.4l1.2,0.8C116.7,100.4,115.6,102,114.5,103.4z M12.9,102.6c-1.1-1.5-2.2-3-3.2-4.6l1.2-0.8
|
||||
c1,1.5,2,3,3.1,4.5L12.9,102.6z M120.6,94.1l-1.3-0.7c0.9-1.6,1.6-3.3,2.4-4.9L123,89C122.2,90.7,121.4,92.4,120.6,94.1z M7,93.1
|
||||
c-0.8-1.7-1.6-3.4-2.3-5.1L6,87.5c0.7,1.7,1.4,3.3,2.3,5L7,93.1z M124.9,83.8l-1.4-0.5c0.6-1.7,1-3.5,1.5-5.3l1.4,0.3
|
||||
C126,80.2,125.5,82,124.9,83.8z M2.8,82.8c-0.5-1.8-1-3.6-1.4-5.4l1.4-0.3c0.4,1.8,0.8,3.5,1.4,5.3L2.8,82.8z M127.4,72.9l-1.5-0.2
|
||||
c0.2-1.8,0.4-3.6,0.5-5.4l1.5,0.1C127.9,69.2,127.7,71.1,127.4,72.9z M0.5,71.9C0.2,70,0.1,68.2,0,66.3l1.5-0.1
|
||||
c0.1,1.8,0.2,3.6,0.4,5.4L0.5,71.9z M126.5,61.8c-0.1-1.8-0.2-3.6-0.4-5.4l1.5-0.2c0.2,1.8,0.4,3.7,0.4,5.6L126.5,61.8z M1.5,60.8
|
||||
l-1.5-0.1c0.1-1.9,0.3-3.7,0.5-5.6L2,55.4C1.8,57.2,1.6,59,1.5,60.8z M125.2,51c-0.4-1.8-0.8-3.6-1.4-5.3l1.4-0.4
|
||||
c0.5,1.8,1,3.6,1.4,5.4L125.2,51z M3,50l-1.4-0.3c0.4-1.8,0.9-3.6,1.5-5.4l1.4,0.5C3.9,46.5,3.4,48.2,3,50z M122,40.6
|
||||
c-0.7-1.7-1.4-3.4-2.3-5l1.3-0.7c0.8,1.7,1.6,3.4,2.3,5.1L122,40.6z M6.4,39.6L5,39.1c0.7-1.7,1.5-3.4,2.4-5l1.3,0.7
|
||||
C7.9,36.3,7.1,38,6.4,39.6z M11.5,30l-1.2-0.8c1-1.6,2.1-3.1,3.2-4.5l1.2,0.9C13.5,27,12.5,28.5,11.5,30z M18.2,21.4l-1.1-1
|
||||
c1.3-1.4,2.6-2.7,4-3.9l1,1.1C20.7,18.8,19.4,20.1,18.2,21.4z M26.3,14.1l-0.9-1.2c1.5-1.1,3-2.2,4.6-3.2l0.8,1.2
|
||||
C29.2,12,27.7,13,26.3,14.1z M93.3,8.7c-1.6-0.8-3.3-1.6-4.9-2.3L88.9,5c1.7,0.7,3.4,1.5,5,2.4L93.3,8.7z M35.5,8.3L34.8,7
|
||||
c1.7-0.8,3.4-1.6,5.1-2.3L40.5,6C38.8,6.7,37.1,7.5,35.5,8.3z M83.2,4.5c-1.7-0.6-3.5-1-5.3-1.4l0.3-1.4c1.8,0.4,3.6,0.9,5.4,1.5
|
||||
L83.2,4.5z M45.6,4.2l-0.4-1.4c1.8-0.5,3.6-1,5.4-1.4l0.3,1.4C49.1,3.2,47.3,3.7,45.6,4.2z M72.6,2c-1.8-0.2-3.6-0.4-5.4-0.5
|
||||
l0.1-1.5c1.9,0.1,3.7,0.3,5.6,0.5L72.6,2z M56.3,1.9l-0.2-1.5c1.8-0.2,3.7-0.4,5.6-0.4l0.1,1.5C59.9,1.5,58.1,1.7,56.3,1.9z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.0 KiB |
36
icons/lua/lua-plain.svg
Normal file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
</style>
|
||||
<g>
|
||||
<path fill="#000080" d="M127.3,15.1c0-7.9-6.4-14.3-14.3-14.3S98.6,7.1,98.6,15.1S105,29.4,113,29.4S127.3,23,127.3,15.1"/>
|
||||
<g>
|
||||
<path fill="#000080" d="M64,15.1c-27,0-49,21.9-49,49s21.9,49,49,49s49-21.9,49-49S91,15.1,64,15.1z M70,43.7
|
||||
c0-7.9,6.4-14.3,14.3-14.3s14.3,6.4,14.3,14.3s-6.4,14.3-14.3,14.3S70,51.6,70,43.7z"/>
|
||||
</g>
|
||||
<path fill="#000080" d="M66.3,128l-0.1-1.5c1.8-0.1,3.6-0.2,5.4-0.4l0.2,1.5C70,127.8,68.1,127.9,66.3,128z M60.7,128
|
||||
c-1.9-0.1-3.7-0.3-5.6-0.5l0.2-1.5c1.8,0.2,3.6,0.4,5.4,0.5L60.7,128z M77.3,126.6l-0.3-1.4c1.8-0.4,3.5-0.8,5.3-1.4l0.4,1.4
|
||||
C81,125.8,79.2,126.3,77.3,126.6z M49.6,126.4c-1.8-0.4-3.6-0.9-5.4-1.5l0.5-1.4c1.7,0.6,3.5,1,5.3,1.5L49.6,126.4z M88,123.4
|
||||
l-0.6-1.4c1.7-0.7,3.3-1.4,5-2.3l0.7,1.3C91.4,121.9,89.7,122.7,88,123.4z M39,123c-1.7-0.7-3.4-1.5-5-2.4l0.7-1.3
|
||||
c1.6,0.9,3.3,1.6,4.9,2.4L39,123z M98,118.3l-0.8-1.2c1.5-1,3-2,4.5-3.1l0.9,1.2C101.1,116.3,99.5,117.3,98,118.3z M29.2,117.7
|
||||
c-1.6-1-3.1-2.1-4.5-3.2l0.9-1.2c1.4,1.1,2.9,2.2,4.4,3.2L29.2,117.7z M106.9,111.6l-1-1.1c1.3-1.2,2.7-2.5,3.9-3.8l1.1,1
|
||||
C109.6,109,108.2,110.3,106.9,111.6z M20.4,110.9c-1.4-1.3-2.7-2.6-3.9-4l1.1-1c1.2,1.3,2.5,2.7,3.8,3.9L20.4,110.9z M114.5,103.4
|
||||
l-1.2-0.9c1.1-1.4,2.2-2.9,3.2-4.4l1.2,0.8C116.7,100.4,115.6,102,114.5,103.4z M12.9,102.6c-1.1-1.5-2.2-3-3.2-4.6l1.2-0.8
|
||||
c1,1.5,2,3,3.1,4.5L12.9,102.6z M120.6,94.1l-1.3-0.7c0.9-1.6,1.6-3.3,2.4-4.9L123,89C122.2,90.7,121.4,92.4,120.6,94.1z M7,93.1
|
||||
c-0.8-1.7-1.6-3.4-2.3-5.1L6,87.5c0.7,1.7,1.4,3.3,2.3,5L7,93.1z M124.9,83.8l-1.4-0.5c0.6-1.7,1-3.5,1.5-5.3l1.4,0.3
|
||||
C126,80.2,125.5,82,124.9,83.8z M2.8,82.8c-0.5-1.8-1-3.6-1.4-5.4l1.4-0.3c0.4,1.8,0.8,3.5,1.4,5.3L2.8,82.8z M127.4,72.9l-1.5-0.2
|
||||
c0.2-1.8,0.4-3.6,0.5-5.4l1.5,0.1C127.9,69.2,127.7,71.1,127.4,72.9z M0.5,71.9C0.2,70,0.1,68.2,0,66.3l1.5-0.1
|
||||
c0.1,1.8,0.2,3.6,0.4,5.4L0.5,71.9z M126.5,61.8c-0.1-1.8-0.2-3.6-0.4-5.4l1.5-0.2c0.2,1.8,0.4,3.7,0.4,5.6L126.5,61.8z M1.5,60.8
|
||||
l-1.5-0.1c0.1-1.9,0.3-3.7,0.5-5.6L2,55.4C1.8,57.2,1.6,59,1.5,60.8z M125.2,51c-0.4-1.8-0.8-3.6-1.4-5.3l1.4-0.4
|
||||
c0.5,1.8,1,3.6,1.4,5.4L125.2,51z M3,50l-1.4-0.3c0.4-1.8,0.9-3.6,1.5-5.4l1.4,0.5C3.9,46.5,3.4,48.2,3,50z M122,40.6
|
||||
c-0.7-1.7-1.4-3.4-2.3-5l1.3-0.7c0.8,1.7,1.6,3.4,2.3,5.1L122,40.6z M6.4,39.6L5,39.1c0.7-1.7,1.5-3.4,2.4-5l1.3,0.7
|
||||
C7.9,36.3,7.1,38,6.4,39.6z M11.5,30l-1.2-0.8c1-1.6,2.1-3.1,3.2-4.5l1.2,0.9C13.5,27,12.5,28.5,11.5,30z M18.2,21.4l-1.1-1
|
||||
c1.3-1.4,2.6-2.7,4-3.9l1,1.1C20.7,18.8,19.4,20.1,18.2,21.4z M26.3,14.1l-0.9-1.2c1.5-1.1,3-2.2,4.6-3.2l0.8,1.2
|
||||
C29.2,12,27.7,13,26.3,14.1z M93.3,8.7c-1.6-0.8-3.3-1.6-4.9-2.3L88.9,5c1.7,0.7,3.4,1.5,5,2.4L93.3,8.7z M35.5,8.3L34.8,7
|
||||
c1.7-0.8,3.4-1.6,5.1-2.3L40.5,6C38.8,6.7,37.1,7.5,35.5,8.3z M83.2,4.5c-1.7-0.6-3.5-1-5.3-1.4l0.3-1.4c1.8,0.4,3.6,0.9,5.4,1.5
|
||||
L83.2,4.5z M45.6,4.2l-0.4-1.4c1.8-0.5,3.6-1,5.4-1.4l0.3,1.4C49.1,3.2,47.3,3.7,45.6,4.2z M72.6,2c-1.8-0.2-3.6-0.4-5.4-0.5
|
||||
l0.1-1.5c1.9,0.1,3.7,0.3,5.6,0.5L72.6,2z M56.3,1.9l-0.2-1.5c1.8-0.2,3.7-0.4,5.6-0.4l0.1,1.5C59.9,1.5,58.1,1.7,56.3,1.9z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
icons/nextjs/nextjs-line.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0C28.7 0 0 28.7 0 64s28.7 64 64 64 64-28.7 64-64S99.3 0 64 0zm32.7 114.4L48.4 41.8h-6.8v50.1h6.8V55.3l44.2 61.5c-8.5 4.6-18.2 7.2-28.6 7.2-33.2.1-60.1-26.8-60.1-60S30.8 3.9 64 3.9s60.1 26.9 60.1 60.1c0 21.1-10.9 39.7-27.4 50.4z"/><path d="M78.6 73.3l7.5 11.3V41.8h-7.5z"/></svg>
|
After Width: | Height: | Size: 354 B |
1
icons/nextjs/nextjs-original-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M30.2 45.9h24.1v1.9H32.4v14.4H53v1.9H32.4v15.8h22.2v1.9H30.2V45.9zm26.3 0h2.6l11.4 15.8L82 45.9l15.8-20-26 37.5 13.4 18.4h-2.7L70.4 65 58.2 81.8h-2.6l13.5-18.4-12.6-17.5zm29.7 1.9v-1.9h27.5v1.9H101v34h-2.2v-34H86.2zM0 45.9h2.7l38.2 56.8-15.8-20.9L2.3 48.6l-.1 33.2H0zM113.5 79.3c.5 0 .8-.3.8-.8s-.3-.8-.8-.8-.8.3-.8.8.4.8.8.8zm2.2-2.1c0 1.3 1 2.2 2.4 2.2 1.5 0 2.4-.9 2.4-2.5v-5.5h-1.2v5.5c0 .9-.4 1.3-1.2 1.3-.7 0-1.2-.4-1.2-1.1h-1.2zm6.3-.1c.1 1.4 1.2 2.3 3 2.3s3-.9 3-2.4c0-1.2-.7-1.8-2.2-2.2l-.9-.2c-1-.2-1.4-.6-1.4-1.1 0-.7.6-1.2 1.6-1.2.9 0 1.5.4 1.6 1.2h1.2c-.1-1.3-1.2-2.2-2.8-2.2-1.7 0-2.8.9-2.8 2.3 0 1.1.6 1.8 2 2.1l1 .2c1 .2 1.5.6 1.5 1.2 0 .7-.7 1.2-1.7 1.2s-1.8-.5-1.9-1.2H122z"/></svg>
|
After Width: | Height: | Size: 772 B |
1
icons/nextjs/nextjs-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0C28.7 0 0 28.7 0 64s28.7 64 64 64c11.2 0 21.7-2.9 30.8-7.9L48.4 55.3v36.6h-6.8V41.8h6.8l50.5 75.8C116.4 106.2 128 86.5 128 64c0-35.3-28.7-64-64-64zm22.1 84.6l-7.5-11.3V41.8h7.5v42.8z"/></svg>
|
After Width: | Height: | Size: 268 B |
1
icons/phoenix/phoenix-original-wordmark.svg
Normal file
After Width: | Height: | Size: 14 KiB |
1
icons/phoenix/phoenix-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><path fill-rule="evenodd" clip-rule="evenodd" fill="#F05323" d="M27.216 20.304c.864.38 1.807.322 2.71.432 6.884.834 12.467 4.156 17.314 8.928 3.96 3.899 7.384 8.27 11.011 12.462 2.97 3.434 6.152 6.628 10.012 9.075 4.074 2.579 8.502 4.015 13.335 4.138.173.004.342.012.513.023.015.001.026.042.081.143-1.798 1.248-3.752 2.167-5.886 2.67-4.824 1.136-9.183.176-13-3.032-1.066-.896-2.092-1.845-3.184-2.708-1.711-1.356-3.663-2.064-5.869-1.801-3.097.371-4.782 2.714-4.062 5.76 1.125 4.757 3.853 8.483 7.666 11.459 4.113 3.21 8.834 4.958 13.958 5.681 5.083.715 10.144.707 15.118-.789.325-.099.644-.135.805.229.151.348-.226.411-.396.55-1.172.946-2.334 1.904-3.544 2.803-4.375 3.243-9.29 5.114-14.714 5.512-3.93.286-7.36-1.083-10.4-3.522-2.396-1.919-4.262-4.332-6.23-6.65-1.639-1.929-3.263-3.869-4.914-5.786-1.022-1.187-2.116-2.305-3.411-3.207-2.041-1.417-4.276-1.899-6.722-1.409-3.333.668-5.152 3.429-4.255 6.728 1.946 7.153 6.49 11.612 13.845 13.067.208.041.466-.035.631.28-3.797.776-7.514.581-11.16-.615-7.354-2.415-13.289-6.619-16.902-13.66-2.258-4.398-3.212-9.132-3.445-14.036-.15-3.151-.032-6.32-.52-9.449-.578-3.696-1.465-7.296-3.616-10.452-2.424-3.558-5.762-5.375-10.097-5.287-.51.01-1.021.002-1.546.002-.005-.355.288-.423.468-.558 3.608-2.704 7.779-4.175 12.039-5.428 2.403-.707 4.868-1.121 7.359-1.379.181-.019.411.069.521-.174h6.487zm-12.175 5.279c.925.978 1.899 1.657 3.154 1.844 1.537.229 3.127-.612 3.65-1.905.365-.9.321-.962-.619-.888-.508.039-1.018.064-1.525.121-1.537.17-3.071.362-4.66.828z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#F15524" d="M127.923 80.218c-1.112.447-2.148 1.072-3.376 1.25-2.965.43-5.646-.118-7.922-2.167-.422-.379-.852-.756-1.231-1.174-1.862-2.049-4.166-3.189-6.921-3.433-.216-.019-.431-.08-.677-.126 2.675-2.362 7.299-2.821 10.673-1.1 1.39.71 2.554 1.699 3.595 2.831 1.628 1.772 3.55 3.056 5.859 3.745v.174zm-44.38 27.479c-.315-.331-.77-.286-1.157-.414-2.234-.74-4.114-1.999-5.72-3.708-3.089-3.29-4.574-4.292-8.591-5.874.113-.255.346-.226.562-.231 1.967-.056 3.916.083 5.83.561 3.561.892 6.303 2.921 8.14 6.096.728 1.258 1.572 2.354 2.813 3.12.173.108.327.227.344.451l-2.221-.001zm-5.652-11.363c-1.229-.315-2.377-.592-3.514-.907-3.729-1.03-7.487-.791-11.252-.28-1.941.262-3.878.563-5.827.764-5.938.613-11.449-.808-16.608-3.685-5.142-2.868-9.702-6.435-13.169-11.27-.264-.369-.512-.749-.763-1.128-.078-.117-.143-.243-.231-.394.418-.18.661.142.925.287 2.756 1.521 5.457 3.141 8.469 4.146 5.317 1.773 10.577 1.829 15.816-.313 2.525-1.033 5.072-1.187 7.568.142.233.124.543.178.657.514-1.101.293-2.192.555-3.265.878-.94.283-1.734.764-1.814 1.888-.068.938.452 1.619 1.64 2.135 2.418 1.048 4.98 1.312 7.579 1.352 2.979.046 5.881.456 8.632 1.684 1.572.702 2.958 1.681 4.29 2.746.426.34.741.759.867 1.441zm32.327-38.96c-.247-.521-.389-.826-.535-1.127-2.335-4.841-6.256-6.668-11.447-5.266-2.38.643-4.698 1.556-7.163 1.832-11.789 1.324-21.997-1.699-29.903-10.972-.219-.258-.716-.631-.495-.862.377-.395.67.207.949.403 6.046 4.277 12.729 6.282 20.146 5.701 3.334-.263 6.524-1.176 9.713-2.122 2.819-.836 5.675-1.422 8.646-.817 6.453 1.313 10.411 6.384 10.089 13.23zM80.66 82.615c.113-.049.185-.089.262-.112 2.92-.894 5.186-2.756 7.268-4.893 2.041-2.093 3.946-4.322 6.16-6.251 4.704-4.1 10.1-5.302 16.118-3.94 1.502.34 2.749 1.059 3.847 2.077-1.195-.092-2.253-.119-3.299-.262-2.123-.292-3.851.427-5.285 1.947a229.136 229.136 0 0 0-3.414 3.693c-4.105 4.544-9.348 6.776-15.308 7.557-1.806.235-3.612.416-5.438.365-.262-.005-.551.089-.911-.181zm26.951-18.425c-1.039.222-1.82-.132-2.6-.258-4.854-.785-9.321-.01-13.534 2.671-6.398 4.07-13.373 4.74-20.649 2.957-.877-.216-1.757-.525-2.659-1.239 1.022-.059 1.806.172 2.595.287 3.68.538 6.973-.469 10.012-2.483 2.469-1.636 5.023-3.117 7.831-4.086 5.458-1.877 10.891-2.157 16.239.425.918.441 1.8.946 2.765 1.726z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#F15524" d="M84.314 41.491c-2.881 1.649-5.792 2.001-8.819 1.796-8.64-.583-15.498-4.728-21.449-10.698-.181-.181-.426-.385-.327-.648.114-.313.448-.148.676-.147 5.767.009 11.056 1.456 15.582 5.202.941.778 1.922 1.509 2.899 2.242 2.981 2.237 6.305 3.022 9.971 2.316.42-.079.837-.116 1.467-.063z"/></svg>
|
After Width: | Height: | Size: 4.1 KiB |
1
icons/phoenix/phoenix-plain-wordmark.svg
Normal file
After Width: | Height: | Size: 11 KiB |
1
icons/phoenix/phoenix-plain.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M27.216 20.304c.864.38 1.807.322 2.71.432 6.884.834 12.467 4.156 17.314 8.928 3.96 3.899 7.384 8.27 11.011 12.462 2.97 3.434 6.152 6.628 10.012 9.075 4.074 2.579 8.502 4.015 13.335 4.138.173.004.342.012.513.023.015.001.026.042.081.143-1.798 1.248-3.752 2.167-5.886 2.67-4.824 1.136-9.183.176-13-3.032-1.066-.896-2.092-1.845-3.184-2.708-1.711-1.356-3.663-2.064-5.869-1.801-3.097.371-4.782 2.714-4.062 5.76 1.125 4.757 3.853 8.483 7.666 11.459 4.113 3.21 8.834 4.958 13.958 5.681 5.083.715 10.144.707 15.118-.789.325-.099.644-.135.805.229.151.348-.226.411-.396.55-1.172.946-2.334 1.904-3.544 2.803-4.375 3.243-9.29 5.114-14.714 5.512-3.93.286-7.36-1.083-10.4-3.522-2.396-1.919-4.262-4.332-6.23-6.65-1.639-1.929-3.263-3.869-4.914-5.786-1.022-1.187-2.116-2.305-3.411-3.207-2.041-1.417-4.276-1.899-6.722-1.409-3.333.668-5.152 3.429-4.255 6.728 1.946 7.153 6.49 11.612 13.845 13.067.208.041.466-.035.631.28-3.797.776-7.514.581-11.16-.615-7.354-2.415-13.289-6.619-16.902-13.66-2.258-4.398-3.212-9.132-3.445-14.036-.15-3.151-.032-6.32-.52-9.449-.578-3.696-1.465-7.296-3.616-10.452-2.424-3.558-5.762-5.375-10.097-5.287-.51.01-1.021.002-1.546.002-.005-.355.288-.423.468-.558 3.608-2.704 7.779-4.175 12.039-5.428 2.403-.707 4.868-1.121 7.359-1.379.181-.019.411.069.521-.174h6.487zm-12.175 5.279c.925.978 1.899 1.657 3.154 1.844 1.537.229 3.127-.612 3.65-1.905.365-.9.321-.962-.619-.888-.508.039-1.018.064-1.525.121-1.537.17-3.071.362-4.66.828z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M127.923 80.218c-1.112.447-2.148 1.072-3.376 1.25-2.965.43-5.646-.118-7.922-2.167-.422-.379-.852-.756-1.231-1.174-1.862-2.049-4.166-3.189-6.921-3.433-.216-.019-.431-.08-.677-.126 2.675-2.362 7.299-2.821 10.673-1.1 1.39.71 2.554 1.699 3.595 2.831 1.628 1.772 3.55 3.056 5.859 3.745v.174zm-44.38 27.479c-.315-.331-.77-.286-1.157-.414-2.234-.74-4.114-1.999-5.72-3.708-3.089-3.29-4.574-4.292-8.591-5.874.113-.255.346-.226.562-.231 1.967-.056 3.916.083 5.83.561 3.561.892 6.303 2.921 8.14 6.096.728 1.258 1.572 2.354 2.813 3.12.173.108.327.227.344.451l-2.221-.001zm-5.652-11.363c-1.229-.315-2.377-.592-3.514-.907-3.729-1.03-7.487-.791-11.252-.28-1.941.262-3.878.563-5.827.764-5.938.613-11.449-.808-16.608-3.685-5.142-2.868-9.702-6.435-13.169-11.27-.264-.369-.512-.749-.763-1.128-.078-.117-.143-.243-.231-.394.418-.18.661.142.925.287 2.756 1.521 5.457 3.141 8.469 4.146 5.317 1.773 10.577 1.829 15.816-.313 2.525-1.033 5.072-1.187 7.568.142.233.124.543.178.657.514-1.101.293-2.192.555-3.265.878-.94.283-1.734.764-1.814 1.888-.068.938.452 1.619 1.64 2.135 2.418 1.048 4.98 1.312 7.579 1.352 2.979.046 5.881.456 8.632 1.684 1.572.702 2.958 1.681 4.29 2.746.426.34.741.759.867 1.441zm32.327-38.96c-.247-.521-.389-.826-.535-1.127-2.335-4.841-6.256-6.668-11.447-5.266-2.38.643-4.698 1.556-7.163 1.832-11.789 1.324-21.997-1.699-29.903-10.972-.219-.258-.716-.631-.495-.862.377-.395.67.207.949.403 6.046 4.277 12.729 6.282 20.146 5.701 3.334-.263 6.524-1.176 9.713-2.122 2.819-.836 5.675-1.422 8.646-.817 6.453 1.313 10.411 6.384 10.089 13.23zM80.66 82.615c.113-.049.185-.089.262-.112 2.92-.894 5.186-2.756 7.268-4.893 2.041-2.093 3.946-4.322 6.16-6.251 4.704-4.1 10.1-5.302 16.118-3.94 1.502.34 2.749 1.059 3.847 2.077-1.195-.092-2.253-.119-3.299-.262-2.123-.292-3.851.427-5.285 1.947a229.136 229.136 0 0 0-3.414 3.693c-4.105 4.544-9.348 6.776-15.308 7.557-1.806.235-3.612.416-5.438.365-.262-.005-.551.089-.911-.181zm26.951-18.425c-1.039.222-1.82-.132-2.6-.258-4.854-.785-9.321-.01-13.534 2.671-6.398 4.07-13.373 4.74-20.649 2.957-.877-.216-1.757-.525-2.659-1.239 1.022-.059 1.806.172 2.595.287 3.68.538 6.973-.469 10.012-2.483 2.469-1.636 5.023-3.117 7.831-4.086 5.458-1.877 10.891-2.157 16.239.425.918.441 1.8.946 2.765 1.726z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#000000" d="M84.314 41.491c-2.881 1.649-5.792 2.001-8.819 1.796-8.64-.583-15.498-4.728-21.449-10.698-.181-.181-.426-.385-.327-.648.114-.313.448-.148.676-.147 5.767.009 11.056 1.456 15.582 5.202.941.778 1.922 1.509 2.899 2.242 2.981 2.237 6.305 3.022 9.971 2.316.42-.079.837-.116 1.467-.063z"/></svg>
|
After Width: | Height: | Size: 4.1 KiB |
40
icons/spring/spring-original-wordmark.svg
Normal file
@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, 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" width="128px" height="128px"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
</style>
|
||||
<g id="surface1">
|
||||
<path fill="#5FB832" d="M1.7,98.6c-0.6-0.3-1-1-1-1.8c0-1.2,0.9-2.1,2.1-2.1c0.4,0,0.8,0.1,1.1,0.3c2.2,1.5,4.6,2.2,6.7,2.2
|
||||
c2.3,0,3.6-1,3.6-2.5v-0.1c0-1.8-2.5-2.4-5.2-3.2c-3.4-1-7.2-2.4-7.2-6.8v-0.1c0-4.4,3.6-7,8.2-7c2.5,0,5,0.7,7.3,1.9
|
||||
c0.7,0.4,1.3,1.1,1.3,2c0,1.2-1,2.1-2.2,2.1c-0.4,0-0.7-0.1-1.1-0.3c-1.9-1-3.8-1.6-5.4-1.6c-2.1,0-3.2,1-3.2,2.3V84
|
||||
c0,1.7,2.5,2.4,5.2,3.3c3.4,1,7.2,2.6,7.2,6.7v0.1c0,4.9-3.8,7.3-8.6,7.3C7.6,101.4,4.4,100.5,1.7,98.6"/>
|
||||
<path fill="#5FB832" d="M39.8,89.5L39.8,89.5c0-4.5-3-7.4-6.6-7.4s-6.7,3-6.7,7.4v0.1c0,4.4,3.1,7.4,6.7,7.4
|
||||
C36.8,96.8,39.8,94,39.8,89.5 M21.4,80.2c0-1.5,1.1-2.7,2.6-2.7c1.5,0,2.7,1.2,2.7,2.7v1.6c1.7-2.4,4.1-4.3,7.8-4.3
|
||||
c5.4,0,10.7,4.3,10.7,11.9v0.1c0,7.6-5.2,11.9-10.7,11.9c-3.8,0-6.2-1.9-7.8-4v8.1c0,1.5-1.2,2.6-2.7,2.6c-1.4,0-2.6-1.1-2.6-2.6
|
||||
V80.2"/>
|
||||
<path fill="#5FB832" d="M47.4,80.1c0-1.5,1.1-2.7,2.6-2.7s2.7,1.2,2.7,2.7v1.3c0.3-2,3.5-3.9,5.8-3.9c1.7,0,2.6,1.1,2.6,2.6
|
||||
c0,1.4-0.9,2.3-2.1,2.5c-3.8,0.7-6.4,3.9-6.4,8.5v7.6c0,1.4-1.2,2.6-2.7,2.6c-1.4,0-2.6-1.1-2.6-2.6V80.1"/>
|
||||
<path fill="#5FB832" d="M63.5,80.1c0-1.5,1.2-2.7,2.7-2.7c1.5,0,2.7,1.2,2.7,2.7v18.6c0,1.5-1.2,2.6-2.7,2.6c-1.5,0-2.7-1.1-2.7-2.6
|
||||
V80.1"/>
|
||||
<path fill="#5FB832" d="M71.2,80.2c0-1.5,1.2-2.7,2.7-2.7s2.8,1.2,2.8,2.7v1.1c1.5-2.1,3.8-3.8,7.5-3.8c5.4,0,8.5,3.5,8.5,8.8v12.4
|
||||
c0,1.5-1.2,2.6-2.7,2.6s-2.8-1.1-2.8-2.6V87.9c0-3.6-1.9-5.6-5.1-5.6c-3.2,0-5.4,2.1-5.4,5.7v10.7c0,1.5-1.2,2.6-2.8,2.6
|
||||
c-1.5,0-2.7-1.1-2.7-2.6V80.2"/>
|
||||
<path fill="#5FB832" d="M106.5,96.9c-3.7,0-6.8-2.8-6.8-7.4v-0.1c0-4.5,3.1-7.4,6.8-7.4c3.7,0,6.9,3,6.9,7.4v0.1
|
||||
C113.4,93.9,110.2,96.9,106.5,96.9 M116,77.6c-1.5,0-2.7,1.2-2.7,2.7v1.6c-1.8-2.4-4.2-4.3-8.1-4.3c-5.6,0-11,4.3-11,12v0.1
|
||||
c0,7.6,5.4,12,11,12c3.9,0,6.4-1.9,8.1-4c-0.3,4.2-2.9,6.3-7.5,6.3c-2.7,0-5.1-0.7-7.3-1.8c-0.3-0.1-0.6-0.2-1-0.2
|
||||
c-1.3,0-2.3,1-2.3,2.2c0,1,0.6,1.7,1.5,2.1c2.9,1.4,5.8,2.1,9.2,2.1c4.3,0,7.6-1,9.8-3.1c2-1.9,3.1-4.8,3.1-8.7V80.2
|
||||
C118.7,78.7,117.5,77.6,116,77.6"/>
|
||||
<path fill="#5FB832" d="M68.9,71.1c0,1.4-1.2,2.6-2.7,2.6c-1.5,0-2.7-1.2-2.7-2.6c0-1.4,1.2-2.6,2.7-2.6
|
||||
C67.7,68.5,68.9,69.7,68.9,71.1"/>
|
||||
<path fill="#5FB832" d="M82.9,53.8C77,61.6,64.3,59,56.1,59.3c0,0-1.4,0.1-2.9,0.3c0,0,0.6-0.2,1.2-0.5c5.7-1.9,8.4-2.3,11.9-4.1
|
||||
c6.5-3.3,13-10.4,14.3-17.8c-2.5,7.1-10,13.2-16.9,15.7c-4.7,1.7-13.2,3.3-13.2,3.3c0,0-0.3-0.2-0.3-0.2c-5.8-2.7-6-15,4.6-18.9
|
||||
c4.6-1.7,9-0.8,14-1.9c5.3-1.2,11.5-5.1,14-10.2C85.6,33.3,89,46,82.9,53.8z M83,22.6c-0.7,1.6-1.6,3.1-2.6,4.4
|
||||
c-4.4-4.4-10.5-7.1-17.3-7.1c-13.3,0-24.1,10.6-24.1,23.5c0,6.8,3,12.9,7.7,17.2l0.5,0.5c-0.9-0.7-1-2-0.3-2.8c0.7-0.9,2-1,2.9-0.3
|
||||
s1,2,0.3,2.8c-0.7,0.9-2,1-2.9,0.3l0.4,0.3c4.2,3.4,9.6,5.5,15.5,5.5c12.7,0,23.1-9.7,24-21.8C87.9,39.2,86.1,31.6,83,22.6"/>
|
||||
<path fill="#5FB832" d="M125.1,79.2h-0.9v1.2h0.9c0.3,0,0.6-0.2,0.6-0.6C125.7,79.4,125.4,79.2,125.1,79.2z M125.6,82.2l-0.9-1.4h-0.6
|
||||
v1.4h-0.5v-3.4h1.4c0.6,0,1.1,0.4,1.1,1c0,0.8-0.7,1-0.9,1l0.9,1.4H125.6z M124.8,77.9c-1.4,0-2.6,1.1-2.6,2.5
|
||||
c0,1.4,1.2,2.5,2.6,2.5c1.4,0,2.6-1.1,2.6-2.5C127.4,79.1,126.2,77.9,124.8,77.9z M124.8,83.5c-1.7,0-3.1-1.3-3.1-3
|
||||
c0-1.7,1.4-3,3.1-3c1.7,0,3.1,1.3,3.1,3C127.9,82.1,126.5,83.5,124.8,83.5"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
3
icons/spring/spring-original.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128px" height="128px">
|
||||
<path d="M116.4524 6.6428621C114.65133 10.944022 112.36664 15.028452 109.61501 18.779462 97.574537 6.7428821 81.231511-0.02560786 64.204746-0.02560786 28.983857-0.02560786 0 28.982222 0 64.241732 0 81.829812 7.2042728 98.667692 19.945163 110.8043l2.368071 2.10056c11.57353 9.75263 26.232224 15.12075 41.357862 15.12075 33.486527 0 61.636554-26.24041 64.021304-59.682768 1.75104-16.37109-3.05181-37.07667-11.24-61.6999799zM29.067239 111.17106c-1.033946 1.28368-2.618219 2.03388-4.269198 2.03388-3.018457 0-5.486588-2.484-5.486588-5.50148 0-3.01748 2.484807-5.50149 5.486588-5.50149 1.250742 0 2.484807 0.43346 3.452047 1.23367 2.351395 1.90051 2.718279 5.38479 0.817151 7.73542zM116.18557 91.932542C100.34285 113.0549 66.506111 105.93632 44.809909 106.95326c0 0-3.852284 0.23339-7.721246 0.8669 0 0 1.450861-0.61684 3.335312-1.3337 15.225697-5.30143 22.429969-6.33504 31.685459-11.086318 17.427002-8.86906 34.653886-28.2743 38.239346-48.46308-6.63727 19.42191-26.749198 36.10975-45.076735 42.89491-12.557447 4.63458-35.237565 9.1358-35.237565 9.1358l-0.917211-0.48346c-15.442492-7.5187-15.909436-40.97773 12.15721-51.78064 12.290623-4.73462 24.047596-2.13391 37.322136-5.30144 14.175073-3.36757 30.568125-14.00377 37.238755-27.87418 7.47109 22.18932 16.45976 56.93203 0.3502 78.40449z" fill="#77bc1f"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
40
icons/spring/spring-plain-wordmark.svg
Normal file
@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, 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" width="128px" height="128px"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
</style>
|
||||
<g id="surface1">
|
||||
<path fill="#000000" d="M1.7,98.6c-0.6-0.3-1-1-1-1.8c0-1.2,0.9-2.1,2.1-2.1c0.4,0,0.8,0.1,1.1,0.3c2.2,1.5,4.6,2.2,6.7,2.2
|
||||
c2.3,0,3.6-1,3.6-2.5v-0.1c0-1.8-2.5-2.4-5.2-3.2c-3.4-1-7.2-2.4-7.2-6.8v-0.1c0-4.4,3.6-7,8.2-7c2.5,0,5,0.7,7.3,1.9
|
||||
c0.7,0.4,1.3,1.1,1.3,2c0,1.2-1,2.1-2.2,2.1c-0.4,0-0.7-0.1-1.1-0.3c-1.9-1-3.8-1.6-5.4-1.6c-2.1,0-3.2,1-3.2,2.3V84
|
||||
c0,1.7,2.5,2.4,5.2,3.3c3.4,1,7.2,2.6,7.2,6.7v0.1c0,4.9-3.8,7.3-8.6,7.3C7.6,101.4,4.4,100.5,1.7,98.6"/>
|
||||
<path fill="#000000" d="M39.8,89.5L39.8,89.5c0-4.5-3-7.4-6.6-7.4s-6.7,3-6.7,7.4v0.1c0,4.4,3.1,7.4,6.7,7.4
|
||||
C36.8,96.8,39.8,94,39.8,89.5 M21.4,80.2c0-1.5,1.1-2.7,2.6-2.7c1.5,0,2.7,1.2,2.7,2.7v1.6c1.7-2.4,4.1-4.3,7.8-4.3
|
||||
c5.4,0,10.7,4.3,10.7,11.9v0.1c0,7.6-5.2,11.9-10.7,11.9c-3.8,0-6.2-1.9-7.8-4v8.1c0,1.5-1.2,2.6-2.7,2.6c-1.4,0-2.6-1.1-2.6-2.6
|
||||
V80.2"/>
|
||||
<path fill="#000000" d="M47.4,80.1c0-1.5,1.1-2.7,2.6-2.7s2.7,1.2,2.7,2.7v1.3c0.3-2,3.5-3.9,5.8-3.9c1.7,0,2.6,1.1,2.6,2.6
|
||||
c0,1.4-0.9,2.3-2.1,2.5c-3.8,0.7-6.4,3.9-6.4,8.5v7.6c0,1.4-1.2,2.6-2.7,2.6c-1.4,0-2.6-1.1-2.6-2.6V80.1"/>
|
||||
<path fill="#000000" d="M63.5,80.1c0-1.5,1.2-2.7,2.7-2.7c1.5,0,2.7,1.2,2.7,2.7v18.6c0,1.5-1.2,2.6-2.7,2.6c-1.5,0-2.7-1.1-2.7-2.6
|
||||
V80.1"/>
|
||||
<path fill="#000000" d="M71.2,80.2c0-1.5,1.2-2.7,2.7-2.7s2.8,1.2,2.8,2.7v1.1c1.5-2.1,3.8-3.8,7.5-3.8c5.4,0,8.5,3.5,8.5,8.8v12.4
|
||||
c0,1.5-1.2,2.6-2.7,2.6s-2.8-1.1-2.8-2.6V87.9c0-3.6-1.9-5.6-5.1-5.6c-3.2,0-5.4,2.1-5.4,5.7v10.7c0,1.5-1.2,2.6-2.8,2.6
|
||||
c-1.5,0-2.7-1.1-2.7-2.6V80.2"/>
|
||||
<path fill="#000000" d="M106.5,96.9c-3.7,0-6.8-2.8-6.8-7.4v-0.1c0-4.5,3.1-7.4,6.8-7.4c3.7,0,6.9,3,6.9,7.4v0.1
|
||||
C113.4,93.9,110.2,96.9,106.5,96.9 M116,77.6c-1.5,0-2.7,1.2-2.7,2.7v1.6c-1.8-2.4-4.2-4.3-8.1-4.3c-5.6,0-11,4.3-11,12v0.1
|
||||
c0,7.6,5.4,12,11,12c3.9,0,6.4-1.9,8.1-4c-0.3,4.2-2.9,6.3-7.5,6.3c-2.7,0-5.1-0.7-7.3-1.8c-0.3-0.1-0.6-0.2-1-0.2
|
||||
c-1.3,0-2.3,1-2.3,2.2c0,1,0.6,1.7,1.5,2.1c2.9,1.4,5.8,2.1,9.2,2.1c4.3,0,7.6-1,9.8-3.1c2-1.9,3.1-4.8,3.1-8.7V80.2
|
||||
C118.7,78.7,117.5,77.6,116,77.6"/>
|
||||
<path fill="#000000" d="M68.9,71.1c0,1.4-1.2,2.6-2.7,2.6c-1.5,0-2.7-1.2-2.7-2.6c0-1.4,1.2-2.6,2.7-2.6
|
||||
C67.7,68.5,68.9,69.7,68.9,71.1"/>
|
||||
<path fill="#000000" d="M82.9,53.8C77,61.6,64.3,59,56.1,59.3c0,0-1.4,0.1-2.9,0.3c0,0,0.6-0.2,1.2-0.5c5.7-1.9,8.4-2.3,11.9-4.1
|
||||
c6.5-3.3,13-10.4,14.3-17.8c-2.5,7.1-10,13.2-16.9,15.7c-4.7,1.7-13.2,3.3-13.2,3.3c0,0-0.3-0.2-0.3-0.2c-5.8-2.7-6-15,4.6-18.9
|
||||
c4.6-1.7,9-0.8,14-1.9c5.3-1.2,11.5-5.1,14-10.2C85.6,33.3,89,46,82.9,53.8z M83,22.6c-0.7,1.6-1.6,3.1-2.6,4.4
|
||||
c-4.4-4.4-10.5-7.1-17.3-7.1c-13.3,0-24.1,10.6-24.1,23.5c0,6.8,3,12.9,7.7,17.2l0.5,0.5c-0.9-0.7-1-2-0.3-2.8c0.7-0.9,2-1,2.9-0.3
|
||||
s1,2,0.3,2.8c-0.7,0.9-2,1-2.9,0.3l0.4,0.3c4.2,3.4,9.6,5.5,15.5,5.5c12.7,0,23.1-9.7,24-21.8C87.9,39.2,86.1,31.6,83,22.6"/>
|
||||
<path fill="#000000" d="M125.1,79.2h-0.9v1.2h0.9c0.3,0,0.6-0.2,0.6-0.6C125.7,79.4,125.4,79.2,125.1,79.2z M125.6,82.2l-0.9-1.4h-0.6
|
||||
v1.4h-0.5v-3.4h1.4c0.6,0,1.1,0.4,1.1,1c0,0.8-0.7,1-0.9,1l0.9,1.4H125.6z M124.8,77.9c-1.4,0-2.6,1.1-2.6,2.5
|
||||
c0,1.4,1.2,2.5,2.6,2.5c1.4,0,2.6-1.1,2.6-2.5C127.4,79.1,126.2,77.9,124.8,77.9z M124.8,83.5c-1.7,0-3.1-1.3-3.1-3
|
||||
c0-1.7,1.4-3,3.1-3c1.7,0,3.1,1.3,3.1,3C127.9,82.1,126.5,83.5,124.8,83.5"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
3
icons/spring/spring-plain.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128px" height="128px">
|
||||
<path d="M116.4524 6.6428621C114.65133 10.944022 112.36664 15.028452 109.61501 18.779462 97.574537 6.7428821 81.231511-0.02560786 64.204746-0.02560786 28.983857-0.02560786 0 28.982222 0 64.241732 0 81.829812 7.2042728 98.667692 19.945163 110.8043l2.368071 2.10056c11.57353 9.75263 26.232224 15.12075 41.357862 15.12075 33.486527 0 61.636554-26.24041 64.021304-59.682768 1.75104-16.37109-3.05181-37.07667-11.24-61.6999799zM29.067239 111.17106c-1.033946 1.28368-2.618219 2.03388-4.269198 2.03388-3.018457 0-5.486588-2.484-5.486588-5.50148 0-3.01748 2.484807-5.50149 5.486588-5.50149 1.250742 0 2.484807 0.43346 3.452047 1.23367 2.351395 1.90051 2.718279 5.38479 0.817151 7.73542zM116.18557 91.932542C100.34285 113.0549 66.506111 105.93632 44.809909 106.95326c0 0-3.852284 0.23339-7.721246 0.8669 0 0 1.450861-0.61684 3.335312-1.3337 15.225697-5.30143 22.429969-6.33504 31.685459-11.086318 17.427002-8.86906 34.653886-28.2743 38.239346-48.46308-6.63727 19.42191-26.749198 36.10975-45.076735 42.89491-12.557447 4.63458-35.237565 9.1358-35.237565 9.1358l-0.917211-0.48346c-15.442492-7.5187-15.909436-40.97773 12.15721-51.78064 12.290623-4.73462 24.047596-2.13391 37.322136-5.30144 14.175073-3.36757 30.568125-14.00377 37.238755-27.87418 7.47109 22.18932 16.45976 56.93203 0.3502 78.40449z" fill="#000000"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
51
icons/thealgorithms/thealgorithms-original-wordmark.svg
Normal file
@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, 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"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
</style>
|
||||
<path fill="#00BCB4" d="M49.5,79.1H23l6.9-16.3h18.5L69,15.1H46.9L30.7,52.9h10c0.7,1.2,2,2,3.4,2c2.2,0,4-1.8,4-4s-1.8-3.9-4-3.9
|
||||
c-1.6,0-3,0.9-3.6,2.3h-4.7l13.5-30.6h14.5L46.2,59.2l-18.3,0.1L17.8,82.7h34l4.5-9.7h14.8l4.9,9.7h34.2L79.3,15.1L49.5,79.1z
|
||||
M58.2,69.2l5.3-11.6l5.8,11.6H58.2z M78.3,79.5l-3.4-6.8h10.5c0.7,1.3,2,2.1,3.5,2.1c2.2,0,4-1.8,4-4c0-2.2-1.8-4-4-4
|
||||
c-1.6,0-3,1-3.6,2.4h-12l-8-15.6l5.9-13l6.7,13.5H81c0.6,1.3,2,2.3,3.6,2.3c2.2,0,4-1.8,4-4s-1.8-4-4-4c-1.7,0-3.1,1-3.7,2.5h-1.2
|
||||
l-6.9-14l6.5-14.4L105,79.5C105,79.5,78.3,79.5,78.3,79.5z"/>
|
||||
<g>
|
||||
<path fill="#595959" d="M19.2,99.7H17v7.8h-2.6v-7.8h-2.1v-2.2h6.9V99.7z"/>
|
||||
<path fill="#595959" d="M27.3,107.6h-2.4v-3.4c0-0.6-0.1-1-0.2-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.1-0.9,0.4
|
||||
c-0.2,0.2-0.3,0.6-0.3,1.1v3.6h-2.4v-11h2.4v5.1c0.3-0.3,0.5-0.5,0.8-0.7c0.4-0.2,0.9-0.3,1.4-0.3c0.7,0,1.3,0.2,1.8,0.6
|
||||
c0.5,0.4,0.8,1.1,0.8,2V107.6z"/>
|
||||
<path fill="#595959" d="M36.1,104.6h-5c0,1,0.5,1.5,1.5,1.5c0.5,0,0.9-0.2,1.2-0.6H36c-0.2,0.6-0.5,1.1-0.8,1.4
|
||||
c-0.7,0.6-1.5,0.9-2.6,0.9c-1.4,0-2.4-0.4-3.1-1.3c-0.5-0.6-0.8-1.4-0.8-2.3c0-1.1,0.3-2,1-2.6s1.6-1,2.8-1c1.5,0,2.5,0.5,3.2,1.6
|
||||
c0.4,0.6,0.5,1.3,0.5,2.1V104.6z M33.9,103.2c-0.2-0.8-0.6-1.1-1.4-1.1c-0.4,0-0.7,0.1-1,0.4c-0.2,0.2-0.3,0.5-0.4,0.8H33.9z"/>
|
||||
<path fill="#595959" d="M51.4,107.6h-2.8l-0.6-1.7h-3.6l-0.7,1.7h-2.7l3.8-10h2.8L51.4,107.6z M47.2,103.8l-1.1-3.2l-1.1,3.2H47.2z"/>
|
||||
<path fill="#595959" d="M54.7,107.6h-2.4v-11h2.4V107.6z"/>
|
||||
<path fill="#595959" d="M63.9,107.1c0,0.6,0,1.1-0.1,1.4c-0.1,0.6-0.5,1.1-1,1.6c-0.7,0.6-1.6,0.9-2.8,0.9c-1.2,0-2.2-0.3-2.9-1
|
||||
c-0.5-0.4-0.8-0.9-0.9-1.3c0,0,0-0.2-0.1-0.3h2.7c0.1,0.2,0.2,0.4,0.3,0.5c0.2,0.2,0.5,0.2,0.8,0.2c0.6,0,1-0.2,1.3-0.6
|
||||
c0.2-0.2,0.3-0.6,0.3-1.1v-0.6c-0.3,0.3-0.5,0.4-0.7,0.6c-0.4,0.2-0.9,0.3-1.4,0.3c-0.7,0-1.3-0.2-1.9-0.5c-0.6-0.4-1-0.9-1.2-1.5
|
||||
c-0.2-0.4-0.2-0.9-0.2-1.4c0-1.1,0.4-2,1.1-2.7c0.7-0.6,1.5-1,2.4-1c0.5,0,0.9,0.1,1.3,0.3c0.2,0.1,0.5,0.3,0.7,0.6v-0.7h2.4V107.1
|
||||
z M61.6,104.1c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.5-1.1-0.5c-0.5,0-0.9,0.2-1.2,0.6c-0.2,0.3-0.4,0.6-0.4,1c0,0.4,0.1,0.8,0.4,1.1
|
||||
c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5C61.5,104.9,61.6,104.6,61.6,104.1z"/>
|
||||
<path fill="#595959" d="M73.5,104.2c0,0.9-0.3,1.8-0.9,2.4c-0.8,0.8-1.8,1.2-3.2,1.2c-1.4,0-2.4-0.4-3.2-1.2c-0.6-0.7-0.9-1.5-0.9-2.5
|
||||
c0-0.9,0.3-1.7,0.9-2.4c0.8-0.8,1.8-1.2,3.2-1.2c1.3,0,2.3,0.4,3.1,1.2C73.2,102.4,73.5,103.2,73.5,104.2z M71,104.2
|
||||
c0-0.4-0.2-0.8-0.5-1.1s-0.7-0.5-1.1-0.5c-0.5,0-0.9,0.2-1.2,0.6c-0.3,0.3-0.4,0.6-0.4,1c0,0.4,0.1,0.7,0.4,1
|
||||
c0.3,0.4,0.7,0.6,1.2,0.6c0.4,0,0.8-0.2,1.1-0.5C70.8,105,71,104.6,71,104.2z"/>
|
||||
<path fill="#595959" d="M79.9,103c-0.3-0.2-0.7-0.2-1-0.2c-0.8,0-1.3,0.3-1.5,1c-0.1,0.2-0.1,0.5-0.1,0.9v2.9h-2.4v-6.8h2.4v1.1
|
||||
c0.3-0.4,0.5-0.7,0.8-0.9c0.4-0.2,0.9-0.4,1.4-0.4c0.1,0,0.3,0,0.5,0V103z"/>
|
||||
<path fill="#595959" d="M83.6,98.2c0,0.4-0.1,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4c-0.4,0-0.7-0.1-1-0.4s-0.4-0.6-0.4-1s0.1-0.7,0.4-1
|
||||
s0.6-0.4,1-0.4s0.7,0.1,1,0.4S83.6,97.8,83.6,98.2z M83.4,107.6H81v-6.8h2.4V107.6z"/>
|
||||
<path fill="#595959" d="M89.1,102.7h-1.4v4.8h-2.4v-4.8h-0.8v-2h0.8v-2h2.4v2h1.4V102.7z"/>
|
||||
<path fill="#595959" d="M97.2,107.6h-2.4v-3.4c0-0.6-0.1-1-0.2-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.1-0.9,0.4
|
||||
c-0.2,0.2-0.3,0.6-0.3,1.1v3.6H90v-11h2.4v5.1c0.3-0.3,0.5-0.5,0.8-0.7c0.4-0.2,0.9-0.3,1.4-0.3c0.7,0,1.3,0.2,1.8,0.6
|
||||
c0.5,0.4,0.8,1.1,0.8,2V107.6z"/>
|
||||
<path fill="#595959" d="M110.3,107.6h-2.4v-3.4c0-0.6-0.1-1-0.2-1.2c-0.2-0.3-0.5-0.5-0.8-0.5c-0.4,0-0.7,0.2-0.9,0.5
|
||||
c-0.2,0.2-0.2,0.6-0.2,1.2v3.4h-2.4v-3.4c0-0.6,0-1-0.1-1.1c-0.2-0.4-0.5-0.5-0.9-0.5c-0.4,0-0.7,0.2-0.9,0.5
|
||||
c-0.1,0.1-0.1,0.3-0.2,0.4c0,0.2-0.1,0.4-0.1,0.8v3.4h-2.4v-6.8h2.4v0.8c0.3-0.3,0.5-0.5,0.8-0.6c0.4-0.2,0.9-0.3,1.4-0.3
|
||||
c0.7,0,1.2,0.2,1.7,0.5c0.2,0.2,0.4,0.4,0.6,0.7c0.2-0.3,0.4-0.5,0.6-0.7c0.5-0.4,1-0.6,1.7-0.6c0.5,0,1,0.1,1.4,0.4
|
||||
c0.4,0.3,0.7,0.6,0.8,1.1c0.1,0.3,0.1,0.6,0.1,1V107.6z"/>
|
||||
<path fill="#595959" d="M117.5,105.3c0,0.7-0.3,1.3-0.8,1.8c-0.6,0.5-1.4,0.8-2.5,0.8c-0.9,0-1.8-0.3-2.7-0.8l0.9-1.7
|
||||
c0.7,0.4,1.3,0.7,1.9,0.7c0.5,0,0.8-0.2,0.8-0.5c0-0.2-0.1-0.3-0.3-0.4c-0.1-0.1-0.4-0.1-0.8-0.2c-0.4-0.1-0.7-0.2-0.9-0.2
|
||||
c-0.5-0.2-0.8-0.5-1-0.9c-0.1-0.2-0.1-0.5-0.1-0.8c0-0.6,0.2-1.1,0.6-1.6c0.5-0.6,1.3-0.9,2.4-0.9c0.8,0,1.5,0.1,2.2,0.4l-0.8,1.6
|
||||
c-0.4-0.2-0.9-0.4-1.3-0.4c-0.5,0-0.7,0.2-0.7,0.5c0,0.2,0.1,0.3,0.3,0.4c0.1,0,0.3,0.1,0.8,0.2c0.6,0.1,1.1,0.3,1.4,0.6
|
||||
C117.3,104.2,117.5,104.7,117.5,105.3z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
12
icons/thealgorithms/thealgorithms-original.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, 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"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
</style>
|
||||
<path fill="#00BCB4" d="M43.9,105.9H7.2l9.5-22.5h25.7L71,17.1H40.3L17.8,69.5h13.8c1,1.6,2.7,2.7,4.7,2.7c3,0,5.5-2.5,5.5-5.5
|
||||
c0-3-2.5-5.5-5.5-5.5c-2.2,0-4.1,1.3-5,3.2h-6.6l18.7-42.3h20.1L39.4,78.3L14,78.5L0,110.9h47.2l6.2-13.5h20.5l6.8,13.5H128
|
||||
L85.3,17.1L43.9,105.9z M56,92.1L63.4,76l8,16.1H56z M83.8,106.5l-4.7-9.4h14.6c1,1.8,2.8,3,4.9,3c3,0,5.5-2.5,5.5-5.5
|
||||
c0-3-2.5-5.5-5.5-5.5c-2.2,0-4.2,1.4-5.1,3.3H76.9L65.8,70.6l8.2-18l9.2,18.8h4.3c0.9,1.8,2.8,3.2,5,3.2c3,0,5.5-2.5,5.5-5.5
|
||||
c0-3-2.5-5.5-5.5-5.5c-2.3,0-4.3,1.4-5.1,3.5h-1.6l-9.5-19.4l9.1-19.9l35.6,78.7C120.9,106.5,83.8,106.5,83.8,106.5z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 930 B |
51
icons/thealgorithms/thealgorithms-plain-wordmark.svg
Normal file
@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, 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"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
</style>
|
||||
<path fill="#000000" d="M49.5,79.1H23l6.9-16.3h18.5L69,15.1H46.9L30.7,52.9h10c0.7,1.2,2,2,3.4,2c2.2,0,4-1.8,4-4s-1.8-3.9-4-3.9
|
||||
c-1.6,0-3,0.9-3.6,2.3h-4.7l13.5-30.6h14.5L46.2,59.2l-18.3,0.1L17.8,82.7h34l4.5-9.7h14.8l4.9,9.7h34.2L79.3,15.1L49.5,79.1z
|
||||
M58.2,69.2l5.3-11.6l5.8,11.6H58.2z M78.3,79.5l-3.4-6.8h10.5c0.7,1.3,2,2.1,3.5,2.1c2.2,0,4-1.8,4-4c0-2.2-1.8-4-4-4
|
||||
c-1.6,0-3,1-3.6,2.4h-12l-8-15.6l5.9-13l6.7,13.5H81c0.6,1.3,2,2.3,3.6,2.3c2.2,0,4-1.8,4-4s-1.8-4-4-4c-1.7,0-3.1,1-3.7,2.5h-1.2
|
||||
l-6.9-14l6.5-14.4L105,79.5C105,79.5,78.3,79.5,78.3,79.5z"/>
|
||||
<g>
|
||||
<path fill="#000000" d="M19.2,99.7H17v7.8h-2.6v-7.8h-2.1v-2.2h6.9V99.7z"/>
|
||||
<path fill="#000000" d="M27.3,107.6h-2.4v-3.4c0-0.6-0.1-1-0.2-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.1-0.9,0.4
|
||||
c-0.2,0.2-0.3,0.6-0.3,1.1v3.6h-2.4v-11h2.4v5.1c0.3-0.3,0.5-0.5,0.8-0.7c0.4-0.2,0.9-0.3,1.4-0.3c0.7,0,1.3,0.2,1.8,0.6
|
||||
c0.5,0.4,0.8,1.1,0.8,2V107.6z"/>
|
||||
<path fill="#000000" d="M36.1,104.6h-5c0,1,0.5,1.5,1.5,1.5c0.5,0,0.9-0.2,1.2-0.6H36c-0.2,0.6-0.5,1.1-0.8,1.4
|
||||
c-0.7,0.6-1.5,0.9-2.6,0.9c-1.4,0-2.4-0.4-3.1-1.3c-0.5-0.6-0.8-1.4-0.8-2.3c0-1.1,0.3-2,1-2.6s1.6-1,2.8-1c1.5,0,2.5,0.5,3.2,1.6
|
||||
c0.4,0.6,0.5,1.3,0.5,2.1V104.6z M33.9,103.2c-0.2-0.8-0.6-1.1-1.4-1.1c-0.4,0-0.7,0.1-1,0.4c-0.2,0.2-0.3,0.5-0.4,0.8H33.9z"/>
|
||||
<path fill="#000000" d="M51.4,107.6h-2.8l-0.6-1.7h-3.6l-0.7,1.7h-2.7l3.8-10h2.8L51.4,107.6z M47.2,103.8l-1.1-3.2l-1.1,3.2H47.2z"/>
|
||||
<path fill="#000000" d="M54.7,107.6h-2.4v-11h2.4V107.6z"/>
|
||||
<path fill="#000000" d="M63.9,107.1c0,0.6,0,1.1-0.1,1.4c-0.1,0.6-0.5,1.1-1,1.6c-0.7,0.6-1.6,0.9-2.8,0.9c-1.2,0-2.2-0.3-2.9-1
|
||||
c-0.5-0.4-0.8-0.9-0.9-1.3c0,0,0-0.2-0.1-0.3h2.7c0.1,0.2,0.2,0.4,0.3,0.5c0.2,0.2,0.5,0.2,0.8,0.2c0.6,0,1-0.2,1.3-0.6
|
||||
c0.2-0.2,0.3-0.6,0.3-1.1v-0.6c-0.3,0.3-0.5,0.4-0.7,0.6c-0.4,0.2-0.9,0.3-1.4,0.3c-0.7,0-1.3-0.2-1.9-0.5c-0.6-0.4-1-0.9-1.2-1.5
|
||||
c-0.2-0.4-0.2-0.9-0.2-1.4c0-1.1,0.4-2,1.1-2.7c0.7-0.6,1.5-1,2.4-1c0.5,0,0.9,0.1,1.3,0.3c0.2,0.1,0.5,0.3,0.7,0.6v-0.7h2.4V107.1
|
||||
z M61.6,104.1c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.5-1.1-0.5c-0.5,0-0.9,0.2-1.2,0.6c-0.2,0.3-0.4,0.6-0.4,1c0,0.4,0.1,0.8,0.4,1.1
|
||||
c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.8-0.2,1.1-0.5C61.5,104.9,61.6,104.6,61.6,104.1z"/>
|
||||
<path fill="#000000" d="M73.5,104.2c0,0.9-0.3,1.8-0.9,2.4c-0.8,0.8-1.8,1.2-3.2,1.2c-1.4,0-2.4-0.4-3.2-1.2c-0.6-0.7-0.9-1.5-0.9-2.5
|
||||
c0-0.9,0.3-1.7,0.9-2.4c0.8-0.8,1.8-1.2,3.2-1.2c1.3,0,2.3,0.4,3.1,1.2C73.2,102.4,73.5,103.2,73.5,104.2z M71,104.2
|
||||
c0-0.4-0.2-0.8-0.5-1.1s-0.7-0.5-1.1-0.5c-0.5,0-0.9,0.2-1.2,0.6c-0.3,0.3-0.4,0.6-0.4,1c0,0.4,0.1,0.7,0.4,1
|
||||
c0.3,0.4,0.7,0.6,1.2,0.6c0.4,0,0.8-0.2,1.1-0.5C70.8,105,71,104.6,71,104.2z"/>
|
||||
<path fill="#000000" d="M79.9,103c-0.3-0.2-0.7-0.2-1-0.2c-0.8,0-1.3,0.3-1.5,1c-0.1,0.2-0.1,0.5-0.1,0.9v2.9h-2.4v-6.8h2.4v1.1
|
||||
c0.3-0.4,0.5-0.7,0.8-0.9c0.4-0.2,0.9-0.4,1.4-0.4c0.1,0,0.3,0,0.5,0V103z"/>
|
||||
<path fill="#000000" d="M83.6,98.2c0,0.4-0.1,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4c-0.4,0-0.7-0.1-1-0.4s-0.4-0.6-0.4-1s0.1-0.7,0.4-1
|
||||
s0.6-0.4,1-0.4s0.7,0.1,1,0.4S83.6,97.8,83.6,98.2z M83.4,107.6H81v-6.8h2.4V107.6z"/>
|
||||
<path fill="#000000" d="M89.1,102.7h-1.4v4.8h-2.4v-4.8h-0.8v-2h0.8v-2h2.4v2h1.4V102.7z"/>
|
||||
<path fill="#000000" d="M97.2,107.6h-2.4v-3.4c0-0.6-0.1-1-0.2-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.1-0.9,0.4
|
||||
c-0.2,0.2-0.3,0.6-0.3,1.1v3.6H90v-11h2.4v5.1c0.3-0.3,0.5-0.5,0.8-0.7c0.4-0.2,0.9-0.3,1.4-0.3c0.7,0,1.3,0.2,1.8,0.6
|
||||
c0.5,0.4,0.8,1.1,0.8,2V107.6z"/>
|
||||
<path fill="#000000" d="M110.3,107.6h-2.4v-3.4c0-0.6-0.1-1-0.2-1.2c-0.2-0.3-0.5-0.5-0.8-0.5c-0.4,0-0.7,0.2-0.9,0.5
|
||||
c-0.2,0.2-0.2,0.6-0.2,1.2v3.4h-2.4v-3.4c0-0.6,0-1-0.1-1.1c-0.2-0.4-0.5-0.5-0.9-0.5c-0.4,0-0.7,0.2-0.9,0.5
|
||||
c-0.1,0.1-0.1,0.3-0.2,0.4c0,0.2-0.1,0.4-0.1,0.8v3.4h-2.4v-6.8h2.4v0.8c0.3-0.3,0.5-0.5,0.8-0.6c0.4-0.2,0.9-0.3,1.4-0.3
|
||||
c0.7,0,1.2,0.2,1.7,0.5c0.2,0.2,0.4,0.4,0.6,0.7c0.2-0.3,0.4-0.5,0.6-0.7c0.5-0.4,1-0.6,1.7-0.6c0.5,0,1,0.1,1.4,0.4
|
||||
c0.4,0.3,0.7,0.6,0.8,1.1c0.1,0.3,0.1,0.6,0.1,1V107.6z"/>
|
||||
<path fill="#000000" d="M117.5,105.3c0,0.7-0.3,1.3-0.8,1.8c-0.6,0.5-1.4,0.8-2.5,0.8c-0.9,0-1.8-0.3-2.7-0.8l0.9-1.7
|
||||
c0.7,0.4,1.3,0.7,1.9,0.7c0.5,0,0.8-0.2,0.8-0.5c0-0.2-0.1-0.3-0.3-0.4c-0.1-0.1-0.4-0.1-0.8-0.2c-0.4-0.1-0.7-0.2-0.9-0.2
|
||||
c-0.5-0.2-0.8-0.5-1-0.9c-0.1-0.2-0.1-0.5-0.1-0.8c0-0.6,0.2-1.1,0.6-1.6c0.5-0.6,1.3-0.9,2.4-0.9c0.8,0,1.5,0.1,2.2,0.4l-0.8,1.6
|
||||
c-0.4-0.2-0.9-0.4-1.3-0.4c-0.5,0-0.7,0.2-0.7,0.5c0,0.2,0.1,0.3,0.3,0.4c0.1,0,0.3,0.1,0.8,0.2c0.6,0.1,1.1,0.3,1.4,0.6
|
||||
C117.3,104.2,117.5,104.7,117.5,105.3z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
12
icons/thealgorithms/thealgorithms-plain.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, 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"
|
||||
viewBox="0 0 128 128" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
</style>
|
||||
<path class="#000000" d="M43.9,105.9H7.2l9.5-22.5h25.7L71,17.1H40.3L17.8,69.5h13.8c1,1.6,2.7,2.7,4.7,2.7c3,0,5.5-2.5,5.5-5.5
|
||||
c0-3-2.5-5.5-5.5-5.5c-2.2,0-4.1,1.3-5,3.2h-6.6l18.7-42.3h20.1L39.4,78.3L14,78.5L0,110.9h47.2l6.2-13.5h20.5l6.8,13.5H128
|
||||
L85.3,17.1L43.9,105.9z M56,92.1L63.4,76l8,16.1H56z M83.8,106.5l-4.7-9.4h14.6c1,1.8,2.8,3,4.9,3c3,0,5.5-2.5,5.5-5.5
|
||||
c0-3-2.5-5.5-5.5-5.5c-2.2,0-4.2,1.4-5.1,3.3H76.9L65.8,70.6l8.2-18l9.2,18.8h4.3c0.9,1.8,2.8,3.2,5,3.2c3,0,5.5-2.5,5.5-5.5
|
||||
c0-3-2.5-5.5-5.5-5.5c-2.3,0-4.3,1.4-5.1,3.5h-1.6l-9.5-19.4l9.1-19.9l35.6,78.7C120.9,106.5,83.8,106.5,83.8,106.5z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 931 B |
1
icons/weblate/weblate-original-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g transform="translate(50 76)"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="-150.086" y1="-11.98" x2="-128.011" y2="-11.98" gradientTransform="matrix(.9831 0 0 1.0172 98.309 0)"><stop offset="0" stop-color="#00d2e6"/><stop offset="1" stop-color="#2eccaa"/></linearGradient><path d="M-20.8-3.7c-.7 0-1.3-.1-1.9-.4-1.4-.6-2.6-1.7-3.6-3.3.3-.5.5-1 .8-1.5 1-2.3 1.5-4.8 1.5-7.3v-.3c0-1-.1-2-.5-2.9-.4-1.1-1-2.1-2-2.5-.1-.1-.4-.1-.5-.1-1.2-2.3-1.3-4.5 0-6.6h.1c1.5 0 3 .5 4.3 1.3 3.5 2.2 5.2 6.5 5.2 10.7v.1c-.1 4.5-1.1 9-3.4 12.8zm-7.7 7c-3.2 1.3-7 1.2-10.2-.2-3.7-1.7-6.5-5.1-8.3-8.8-3-6.5-3.1-14.3-.2-20.9 2.1.8 4-.5 4-.5s0 2.1 2 3.1c-2 4.8-2 10.6.1 15.3 1 2.3 2.5 4.4 4.6 5.6.8.4 1.6.7 2.4.8 1.6 2.3 3.5 4.2 5.6 5.6z" fill="url(#a)"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="-130.696" y1="-.952" x2="-119.307" y2="-6.318" gradientTransform="matrix(1.1631 0 0 .8598 116.308 0)"><stop offset="0" stop-opacity="0"/><stop offset=".514"/><stop offset="1" stop-opacity="0"/></linearGradient><path d="M-20.8-3.7c-.7 0-1.3-.1-1.9-.4-1.4-.6-2.6-1.7-3.6-3.3.3-.5.5-1 .8-1.5.3-.7.6-1.4.8-2.1.5-1.7 6.8.5 5.9 3.2-.6 1.4-1.2 2.8-2 4.1zm-7.7 7c-3.2 1.3-7 1.2-10.2-.2-3.7-1.7.1-7.5 2.2-6.3.8.4 1.6.7 2.4.8 1.6 2.4 3.5 4.3 5.6 5.7z" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="-104.893" y1="-11.998" x2="-126.931" y2="-11.998" gradientTransform="matrix(.9831 0 0 1.0172 98.309 0)"><stop offset="0" stop-color="#1fa385"/><stop offset="1" stop-color="#2eccaa"/></linearGradient><path d="M-36.6-16.5v-.1c0-4.2 1.8-8.5 5.2-10.7 1.3-.8 2.8-1.3 4.3-1.3h.1v6.6c-.2 0-.4 0-.6.1-1 .4-1.6 1.5-2 2.5-.3.9-.5 1.9-.5 2.9v.3c0 2.5.5 5 1.5 7.3 1.1 2.6 2.8 5 5.3 6 1.9.8 4 .6 5.7-.3 2.1-1.2 3.6-3.3 4.6-5.6 2.1-4.7 2.1-10.4.1-15.3 2-1 2-3.1 2-3.1s1.9 1.4 4 .5c2.8 6.6 2.7 14.4-.2 20.9C-8.8-2-11.6 1.3-15.3 3c-3.3 1.5-7.1 1.6-10.4.1-3-1.2-5.4-3.5-7.1-6.2-2.6-3.9-3.8-8.7-3.8-13.4z" fill="url(#c)"/></g><path d="M51.2 59.8h2.1l1 5.7.3 1.8.3 1.8h.1c.1-.6.3-1.2.4-1.8.1-.6.2-1.2.4-1.8l1.4-5.7H59l1.4 5.7c.1.6.3 1.2.4 1.8s.3 1.2.4 1.8H61l.3-1.8.3-1.8 1-5.7h1.9l-2.2 11.3h-2.5l-1.4-6c-.1-.4-.2-.9-.3-1.3-.1-.4-.2-.9-.2-1.3h-.1c-.1.4-.2.9-.3 1.3-.1.4-.2.9-.3 1.3l-1.4 6h-2.4l-2.2-11.3zM67.5 59.8h6.8v1.7h-4.8v2.9h4.1v1.7h-4.1v3.3h5v1.7h-7V59.8zM78.1 59.8h3.6c.6 0 1.1 0 1.6.1s.9.3 1.3.5.6.5.8.9c.2.4.3.8.3 1.3s-.1 1-.4 1.5c-.3.5-.7.8-1.2 1v.1c.6.1 1.1.4 1.6.9.4.4.6 1 .6 1.8 0 .6-.1 1.1-.3 1.5-.2.4-.5.8-.9 1-.4.3-.8.5-1.4.6s-1.1.2-1.7.2h-3.9V59.8zm3.5 4.7c.8 0 1.4-.1 1.7-.4.4-.3.5-.7.5-1.2 0-.6-.2-.9-.6-1.2-.4-.2-.9-.3-1.7-.3H80v3.1h1.6zm.2 5.1c.8 0 1.5-.2 1.9-.5.5-.3.7-.8.7-1.4 0-.6-.2-1-.7-1.3-.4-.3-1.1-.4-1.9-.4h-1.7v3.6h1.7zM89.8 59.8h2v9.6h4.7v1.7h-6.7V59.8zM105 68h-3.8l-.9 3.1h-2l3.7-11.3h2.4l3.7 11.3H106l-1-3.1zm-.4-1.5l-.4-1.4c-.2-.6-.4-1.2-.5-1.9-.2-.6-.3-1.3-.5-1.9h-.1c-.2.6-.3 1.3-.5 1.9-.2.6-.3 1.2-.5 1.8l-.4 1.4h2.9zM111.9 61.5h-3.3v-1.7h8.6v1.7h-3.3v9.6h-2v-9.6zM120.4 59.8h6.8v1.7h-4.8v2.9h4.1v1.7h-4.1v3.3h5v1.7h-7V59.8z"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/weblate/weblate-original.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g transform="translate(50 76)"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="-100.86" y1="63.797" x2="-37.246" y2="63.797" gradientTransform="matrix(.9831 0 0 -1.0172 49.154 52.895)"><stop offset="0" stop-color="#00d2e6"/><stop offset="1" stop-color="#2eccaa"/></linearGradient><path d="M32 12.5c-1.9 0-3.7-.4-5.5-1.2-4-1.7-7.4-5-10.3-9.4.8-1.4 1.5-2.9 2.2-4.4 2.8-6.6 4.2-13.9 4.3-21.1v-.8c0-2.8-.4-5.7-1.4-8.3-1.1-3.1-2.9-6.1-5.7-7.3-.5-.2-1.1-.3-1.6-.3-3.6-6.7-3.7-13 0-19.1h.2c4.3 0 8.6 1.4 12.3 3.7 10 6.4 15 18.7 15.1 30.9v.4h.1c-.1 12.9-3.2 26-9.7 36.9zM9.8 32.7c-9.3 3.8-20.2 3.6-29.4-.7-10.6-4.9-18.8-14.6-23.8-25.5-8.6-18.8-8.8-41.2-.6-60.2 6.1 2.4 11.5-1.4 11.5-1.4s0 6 5.8 9c-5.9 13.9-5.8 30.5.2 44.1 2.9 6.5 7.3 12.6 13.3 16.1 2.2 1.2 4.6 2 7 2.3 4.3 6.6 9.8 12.3 16 16.3z" fill="url(#a)"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="-59.46" y1="27.873" x2="-26.638" y2="43.338" gradientTransform="matrix(1.1631 0 0 -.8598 58.153 44.71)"><stop offset="0" stop-opacity="0"/><stop offset=".514"/><stop offset="1" stop-opacity="0"/></linearGradient><path d="M32 12.5c-1.9 0-3.7-.4-5.5-1.2-4-1.7-7.4-5-10.3-9.4.8-1.4 1.5-2.9 2.2-4.4.9-2 1.6-4 2.2-6.1C22-13.4 40.2-7.3 37.5.7 36 4.8 34.2 8.8 32 12.5zM9.8 32.7c-9.3 3.8-20.2 3.6-29.4-.7-10.6-4.9.3-21.5 6.4-18.1 2.2 1.2 4.5 2 7 2.3 4.3 6.8 9.8 12.5 16 16.5z" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="29.342" y1="63.797" x2="-34.164" y2="63.797" gradientTransform="matrix(.9831 0 0 -1.0172 49.154 52.895)"><stop offset="0" stop-color="#1fa385"/><stop offset="1" stop-color="#2eccaa"/></linearGradient><path d="M-13.6-24.3v-.4c.1-12.2 5.1-24.6 15.1-30.9 3.7-2.3 8-3.7 12.3-3.7h.2v19.1c-.5 0-1.1.1-1.6.3-2.8 1.2-4.6 4.3-5.7 7.3-1 2.7-1.4 5.5-1.4 8.3v.8c.1 7.2 1.4 14.4 4.3 21C12.7 5 17.8 11.8 25 14.9c5.4 2.4 11.4 1.8 16.3-1 6.1-3.4 10.5-9.5 13.3-16.1 6-13.6 6.1-30.1.2-44.1 5.8-3 5.8-9 5.8-9s5.4 3.9 11.5 1.4c8.1 19 7.9 41.5-.6 60.2-5 11-13.1 20.6-23.8 25.5-9.5 4.4-20.6 4.5-30.1.4C9 28.7 2 22-3 14.2c-7.2-11.3-10.6-25-10.6-38.5z" fill="url(#c)"/></g></svg>
|
After Width: | Height: | Size: 2.1 KiB |
1
icons/weblate/weblate-plain-wordmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" xml:space="preserve"><path fill="#2eccaa" d="M-20.8-3.7c-.7 0-1.3-.1-1.9-.4-1.4-.6-2.6-1.7-3.6-3.3.3-.5.5-1 .8-1.5 1-2.3 1.5-4.8 1.5-7.3v-.3c0-1-.1-2-.5-2.9-.4-1.1-1-2.1-2-2.5-.1-.1-.4-.1-.5-.1-1.2-2.3-1.3-4.5 0-6.6h.1c1.5 0 3 .5 4.3 1.3 3.5 2.2 5.2 6.5 5.2 10.7v.1c-.1 4.5-1.1 9-3.4 12.8zm-7.7 7c-3.2 1.3-7 1.2-10.2-.2-3.7-1.7-6.5-5.1-8.3-8.8-3-6.5-3.1-14.3-.2-20.9 2.1.8 4-.5 4-.5s0 2.1 2 3.1c-2 4.8-2 10.6.1 15.3 1 2.3 2.5 4.4 4.6 5.6.8.4 1.6.7 2.4.8 1.6 2.3 3.5 4.2 5.6 5.6z" transform="translate(50 76)" /><path fill="#2eccaa" d="M-20.8-3.7c-.7 0-1.3-.1-1.9-.4-1.4-.6-2.6-1.7-3.6-3.3.3-.5.5-1 .8-1.5.3-.7.6-1.4.8-2.1.5-1.7 6.8.5 5.9 3.2-.6 1.4-1.2 2.8-2 4.1zm-7.7 7c-3.2 1.3-7 1.2-10.2-.2-3.7-1.7.1-7.5 2.2-6.3.8.4 1.6.7 2.4.8 1.6 2.4 3.5 4.3 5.6 5.7z" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" transform="translate(50 76)" /><path fill="#2eccaa" d="M-36.6-16.5v-.1c0-4.2 1.8-8.5 5.2-10.7 1.3-.8 2.8-1.3 4.3-1.3h.1v6.6c-.2 0-.4 0-.6.1-1 .4-1.6 1.5-2 2.5-.3.9-.5 1.9-.5 2.9v.3c0 2.5.5 5 1.5 7.3 1.1 2.6 2.8 5 5.3 6 1.9.8 4 .6 5.7-.3 2.1-1.2 3.6-3.3 4.6-5.6 2.1-4.7 2.1-10.4.1-15.3 2-1 2-3.1 2-3.1s1.9 1.4 4 .5c2.8 6.6 2.7 14.4-.2 20.9C-8.8-2-11.6 1.3-15.3 3c-3.3 1.5-7.1 1.6-10.4.1-3-1.2-5.4-3.5-7.1-6.2-2.6-3.9-3.8-8.7-3.8-13.4z" transform="translate(50 76)" /><path fill="#2eccaa" d="M51.2 59.8h2.1l1 5.7.3 1.8.3 1.8h.1c.1-.6.3-1.2.4-1.8.1-.6.2-1.2.4-1.8l1.4-5.7H59l1.4 5.7c.1.6.3 1.2.4 1.8s.3 1.2.4 1.8H61l.3-1.8.3-1.8 1-5.7h1.9l-2.2 11.3h-2.5l-1.4-6c-.1-.4-.2-.9-.3-1.3-.1-.4-.2-.9-.2-1.3h-.1c-.1.4-.2.9-.3 1.3-.1.4-.2.9-.3 1.3l-1.4 6h-2.4l-2.2-11.3zM67.5 59.8h6.8v1.7h-4.8v2.9h4.1v1.7h-4.1v3.3h5v1.7h-7V59.8zM78.1 59.8h3.6c.6 0 1.1 0 1.6.1s.9.3 1.3.5.6.5.8.9c.2.4.3.8.3 1.3s-.1 1-.4 1.5c-.3.5-.7.8-1.2 1v.1c.6.1 1.1.4 1.6.9.4.4.6 1 .6 1.8 0 .6-.1 1.1-.3 1.5-.2.4-.5.8-.9 1-.4.3-.8.5-1.4.6s-1.1.2-1.7.2h-3.9V59.8zm3.5 4.7c.8 0 1.4-.1 1.7-.4.4-.3.5-.7.5-1.2 0-.6-.2-.9-.6-1.2-.4-.2-.9-.3-1.7-.3H80v3.1h1.6zm.2 5.1c.8 0 1.5-.2 1.9-.5.5-.3.7-.8.7-1.4 0-.6-.2-1-.7-1.3-.4-.3-1.1-.4-1.9-.4h-1.7v3.6h1.7zM89.8 59.8h2v9.6h4.7v1.7h-6.7V59.8zM105 68h-3.8l-.9 3.1h-2l3.7-11.3h2.4l3.7 11.3H106l-1-3.1zm-.4-1.5l-.4-1.4c-.2-.6-.4-1.2-.5-1.9-.2-.6-.3-1.3-.5-1.9h-.1c-.2.6-.3 1.3-.5 1.9-.2.6-.3 1.2-.5 1.8l-.4 1.4h2.9zM111.9 61.5h-3.3v-1.7h8.6v1.7h-3.3v9.6h-2v-9.6zM120.4 59.8h6.8v1.7h-4.8v2.9h4.1v1.7h-4.1v3.3h5v1.7h-7V59.8z" /></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
icons/weblate/weblate-plain.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg version="1.1" id="svg31" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" xml:space="preserve"><path fill="#2eccaa" class="st0" d="M43.8 92.3c-.4-.1-.7-.2-1.1-.2-.3 0-.5-.1-.8-.1-.4-.1-.8-.2-1.3-.3-.2-.1-.4-.1-.5-.1-.4-.1-.7-.3-1.1-.4-.2-.1-.4-.2-.6-.2l-.6-.3c-.4-.2-.7-.3-1.1-.5-6.1-3.4-10.5-9.5-13.3-16.1-6-13.6-6.1-30.1-.2-44.1-5.8-3-5.8-9-5.8-9S12 24.9 5.9 22.4c-8.1 19-7.9 41.5.6 60.2 5 11 13.1 20.6 23.8 25.5.9.4 1.9.8 2.8 1.2.2.1.5.2.7.3.2.1.4.1.6.2.4.1.8.3 1.2.4.2.1.4.1.6.2l1.2.3c1.1.3 2.2.5 3.4.6.1 0 .2 0 .4.1.5.1 1 .1 1.5.1h.4c.4 0 .8 0 1.2.1h2.6c.3 0 .6 0 .9-.1.3 0 .6 0 .9-.1.4 0 .8-.1 1.2-.1.2 0 .4 0 .6-.1.4-.1.8-.1 1.3-.2.2 0 .4-.1.6-.1.4-.1.7-.1 1.1-.2.3-.1.5-.1.8-.2l1.2-.3c.2-.1.4-.1.7-.2.4-.1.8-.3 1.2-.4.2-.1.4-.1.6-.2.4-.1.7-.3 1-.4.2-.1.5-.2.7-.3-6.1-4-11.6-9.7-15.9-16.4z" /><path fill="#2eccaa" class="st0" d="M122.1 22.3c-6.1 2.4-11.5-1.4-11.5-1.4s0 6-5.8 9c5.9 13.9 5.8 30.5-.2 44.1-2.9 6.5-7.3 12.6-13.3 16.1-4.9 2.8-10.9 3.3-16.3 1-7.2-3.1-12.2-9.9-15.4-17.4-2.8-6.6-4.2-13.9-4.3-21.1v-.8c0-2.8.4-5.7 1.4-8.3 1.1-3.1 2.9-6.1 5.7-7.3.5-.2 1-.3 1.6-.3.5 0 1.1.1 1.6.3 2.8 1.2 4.6 4.3 5.7 7.3 1 2.7 1.4 5.5 1.4 8.3v.8c-.1 5.2-.8 10.4-2.3 15.4-.2.7-.4 1.3-.6 2l-.3.9c-.3.9-.7 1.9-1.1 2.8-.3.8-.7 1.5-1 2.2v.1c-.4.7-.7 1.4-1.1 2.1 2.8 4.4 6.3 7.7 10.3 9.4 1.8.8 3.6 1.1 5.5 1.2.5-.8 1-1.7 1.4-2.5.1-.2.3-.5.4-.7.3-.7.7-1.3 1-2 .1-.2.2-.5.3-.7l1.2-2.7c.1-.1.1-.3.2-.4l.9-2.4c0-.1.1-.2.1-.4v-.1c2.8-7.9 4.1-16.5 4.1-24.9h-.1v-.4c-.1-12.2-5.1-24.6-15.1-30.9-3.7-2.3-8-3.7-12.3-3.7h-.4c-4.3 0-8.6 1.4-12.3 3.7-10 6.4-15 18.7-15.1 30.9v.4h-.1c0 13.5 3.4 27.3 10.7 38.5 5 7.8 11.9 14.5 20.5 18.2 9.5 4.1 20.6 4 30.1-.4 10.6-4.9 18.8-14.6 23.8-25.5 8.6-19 8.8-41.4.7-60.4z" /></svg>
|
After Width: | Height: | Size: 1.7 KiB |
32
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "devicon",
|
||||
"version": "2.9.0",
|
||||
"version": "2.10.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
@ -1739,7 +1739,7 @@
|
||||
"replace-homedir": "^1.0.0",
|
||||
"semver-greatest-satisfied-range": "^1.1.0",
|
||||
"v8flags": "^3.2.0",
|
||||
"yargs": "^7.1.0"
|
||||
"yargs": "^13.3.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -3508,9 +3508,9 @@
|
||||
}
|
||||
},
|
||||
"y18n": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
|
||||
"integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
|
||||
"version": "4.0.1",
|
||||
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz",
|
||||
"integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==",
|
||||
"dev": true
|
||||
},
|
||||
"yargs": {
|
||||
@ -3528,12 +3528,12 @@
|
||||
"string-width": "^3.0.0",
|
||||
"which-module": "^2.0.0",
|
||||
"y18n": "^4.0.0",
|
||||
"yargs-parser": "^13.1.2"
|
||||
"yargs-parser": "^18.1.2"
|
||||
}
|
||||
},
|
||||
"yargs-parser": {
|
||||
"version": "13.1.2",
|
||||
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz",
|
||||
"version": "18.1.2",
|
||||
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.2.tgz",
|
||||
"integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
@ -4502,9 +4502,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"y18n": {
|
||||
"version": "3.2.1",
|
||||
"resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz",
|
||||
"integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=",
|
||||
"version": "3.2.2",
|
||||
"resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz",
|
||||
"integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==",
|
||||
"dev": true
|
||||
},
|
||||
"yallist": {
|
||||
@ -4514,8 +4514,8 @@
|
||||
"dev": true
|
||||
},
|
||||
"yargs": {
|
||||
"version": "7.1.1",
|
||||
"resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.1.tgz",
|
||||
"version": "13.3.2",
|
||||
"resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz",
|
||||
"integrity": "sha512-huO4Fr1f9PmiJJdll5kwoS2e4GqzGSsMT3PPMpOwoVkOK8ckqAewMTZyA6LXVQWflleb/Z8oPBEvNsMft0XE+g==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
@ -4531,12 +4531,12 @@
|
||||
"string-width": "^1.0.2",
|
||||
"which-module": "^1.0.0",
|
||||
"y18n": "^3.2.1",
|
||||
"yargs-parser": "5.0.0-security.0"
|
||||
"yargs-parser": ">=18.1.2"
|
||||
}
|
||||
},
|
||||
"yargs-parser": {
|
||||
"version": "5.0.0-security.0",
|
||||
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0-security.0.tgz",
|
||||
"version": "18.1.2",
|
||||
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.2.tgz",
|
||||
"integrity": "sha512-T69y4Ps64LNesYxeYGYPvfoMTt/7y1XtfpIslUeK4um+9Hu7hlGoRtaDLvdXb7+/tfq4opVa2HRY5xGip022rQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
|