Merge branch 'develop' into fix-alphabetical-order
427
.vscode/devicon-schema.json
vendored
@@ -1,223 +1,224 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"definitions": {
|
||||
"IconVersions": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"original",
|
||||
"plain",
|
||||
"line",
|
||||
"original-wordmark",
|
||||
"plain-wordmark",
|
||||
"line-wordmark"
|
||||
]
|
||||
},
|
||||
"IconVersionsArray": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"title": "The official name of the technology.",
|
||||
"description": "Pattern: Only lower-case letters and digits.",
|
||||
"pattern": "^(dot-net|[0-9a-z]+)$"
|
||||
},
|
||||
"altnames": {
|
||||
"type": "array",
|
||||
"title": "List of alternative names for this technology.",
|
||||
"description": "Used for the searchbar on the Devicon website. https://devicon.dev",
|
||||
"uniqueItems": true,
|
||||
"items": {
|
||||
"type": "string"
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"definitions": {
|
||||
"IconVersions": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"original",
|
||||
"plain",
|
||||
"line",
|
||||
"original-wordmark",
|
||||
"plain-wordmark",
|
||||
"line-wordmark"
|
||||
]
|
||||
},
|
||||
"IconVersionsArray": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"title": "List of tags relating to the technology for categorization/search purpose.",
|
||||
"$ref": "./tags-enum.json/#/definitions/Tags"
|
||||
},
|
||||
"versions": {
|
||||
"title": "Keeps track of the different versions that you have.",
|
||||
},
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"svg": {
|
||||
"title": "List all the SVGs that you have.",
|
||||
"contains": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
"name": {
|
||||
"type": "string",
|
||||
"title": "The official name of the technology.",
|
||||
"description": "Pattern: Only lower-case letters and digits.",
|
||||
"pattern": "^(dot-net|[0-9a-z]+)$"
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true,
|
||||
"$ref": "#/definitions/IconVersionsArray"
|
||||
},
|
||||
"font": {
|
||||
"title": "List only the SVGs that can be converted to fonts. Usually refers to \"plain\" and \"line\" versions but \"original\" can be accepted.",
|
||||
"description": "DO NOT list aliases here! In this case use \"aliases\" property!",
|
||||
"contains": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
"altnames": {
|
||||
"type": "array",
|
||||
"title": "List of alternative names for this technology.",
|
||||
"description": "Used for the searchbar on the Devicon website. https://devicon.dev",
|
||||
"uniqueItems": true,
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true,
|
||||
"$ref": "#/definitions/IconVersionsArray"
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"title": "The official/main hexadecimal color of the logo. [Case insensitive]",
|
||||
"description": "Pattern example: #FFFFFF",
|
||||
"type": "string",
|
||||
"pattern": "^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$"
|
||||
},
|
||||
"aliases": {
|
||||
"title": "Keeps track of the aliases for the font versions ONLY.",
|
||||
"description": "Can be empty, or contain objects, each with an alias and a base version. More info here: https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60#aliases-and-aliasobj",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"title": "AliasObj, an object containing an alias and a base version",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"base": {
|
||||
"title": "The SVG file you are using as source for the alias.",
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"title": "List of tags relating to the technology for categorization/search purpose.",
|
||||
"$ref": "./tags-enum.json/#/definitions/Tags"
|
||||
},
|
||||
"alias": {
|
||||
"title": "The new name (alias) that you want to generate.",
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
"versions": {
|
||||
"title": "Keeps track of the different versions that you have.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"svg": {
|
||||
"title": "List all the SVGs that you have.",
|
||||
"contains": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true,
|
||||
"$ref": "#/definitions/IconVersionsArray"
|
||||
},
|
||||
"font": {
|
||||
"title": "List only the SVGs that can be converted to fonts. Usually refers to \"plain\" and \"line\" versions but \"original\" can be accepted.",
|
||||
"description": "DO NOT list aliases here! In this case use \"aliases\" property!",
|
||||
"contains": {
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true,
|
||||
"$ref": "#/definitions/IconVersionsArray"
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"title": "The official/main hexadecimal color of the logo. [Case insensitive]",
|
||||
"description": "Pattern example: #FFFFFF",
|
||||
"type": "string",
|
||||
"pattern": "^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$",
|
||||
"format": "color"
|
||||
},
|
||||
"aliases": {
|
||||
"title": "Keeps track of the aliases for the font versions ONLY.",
|
||||
"description": "Can be empty, or contain objects, each with an alias and a base version. More info here: https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60#aliases-and-aliasobj",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"title": "AliasObj, an object containing an alias and a base version",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"base": {
|
||||
"title": "The SVG file you are using as source for the alias.",
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
},
|
||||
"alias": {
|
||||
"title": "The new name (alias) that you want to generate.",
|
||||
"$ref": "#/definitions/IconVersions"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"base",
|
||||
"alias"
|
||||
],
|
||||
"allOf": [
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "original"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "original"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "plain"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "plain"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "line"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "line"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "original-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "original-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "plain-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "plain-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "line-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "line-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"base",
|
||||
"alias"
|
||||
],
|
||||
"allOf": [
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "original"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "original"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "plain"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "plain"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "line"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "line"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "original-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "original-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "plain-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "plain-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"const": "line-wordmark"
|
||||
}
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"not": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"const": "line-wordmark"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"altnames",
|
||||
"tags",
|
||||
"versions",
|
||||
"color",
|
||||
"aliases"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"altnames",
|
||||
"tags",
|
||||
"versions",
|
||||
"color",
|
||||
"aliases"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@@ -20,6 +20,12 @@
|
||||
<a href="https://devicon.dev/">
|
||||
<img alt="Registered logos" src="https://img.shields.io/github/directory-file-count/devicons/devicon/icons?color=%2360be86&label=registered%20logos&style=for-the-badge">
|
||||
</a>
|
||||
<a href="https://www.npmjs.com/package/devicon">
|
||||
<img alt="Devicons npm downloads" src="https://img.shields.io/npm/dt/devicon?color=%2360be86&style=for-the-badge">
|
||||
</a>
|
||||
<a href="https://www.npmjs.com/package/devicon">
|
||||
<img alt="Devicons npm downloads/month" src="https://img.shields.io/npm/dm/devicon?color=%2360be86&style=for-the-badge">
|
||||
</a>
|
||||
</p>
|
||||
<br />
|
||||
<div align="center">
|
||||
@@ -156,7 +162,7 @@ Add the following CSS rules in your stylesheet:
|
||||
<h4>You can also use the <code>img</code> tag and reference an SVG directly from the repository:</h4>
|
||||
|
||||
```html
|
||||
<img src='https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/devicon/devicon-original.svg'>
|
||||
<img src='https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/devicon/devicon-original.svg' />
|
||||
```
|
||||
|
||||
<h2 id="request-icon">Requesting an icon</h2>
|
||||
@@ -264,6 +270,7 @@ https://www.python.org/downloads/
|
||||
> Make sure your Python install includes [pip](https://pypi.org/project/pip/)
|
||||
|
||||
<h3>Install Selenium</h3>
|
||||
|
||||
```bash
|
||||
python3 -m pip install --upgrade pip && pip install selenium==4.1.0 requests==2.25.1
|
||||
```
|
||||
|
25
bower.json
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"name": "devicon",
|
||||
"version": "2.2.0",
|
||||
"main": "devicon.min.css",
|
||||
"ignore": [
|
||||
".jshintrc",
|
||||
"**/*.txt"
|
||||
],
|
||||
"homepage": "http://konpa.github.io/devicon/",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/konpa/devicon.git"
|
||||
},
|
||||
"authors": [
|
||||
"konpa <julien@konpa.fr> (http://konpa.fr)"
|
||||
],
|
||||
"description": "Programming related icons collection",
|
||||
"keywords": [
|
||||
"programming",
|
||||
"icons",
|
||||
"svg",
|
||||
"font"
|
||||
],
|
||||
"license": "MIT"
|
||||
}
|
1080
devicon.json
1
icons/aerospike/aerospike-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#c21417" d="M52.262 58.375c.82 0 1.566.148 2.242.441.672.297 1.25.7 1.734 1.207a5.367 5.367 0 0 1 1.117 1.758c.262.672.399 1.387.395 2.11.008.011.008.02 0 .03 0 .724-.137 1.442-.402 2.114a5.45 5.45 0 0 1-1.125 1.77 5.487 5.487 0 0 1-1.743 1.21c-.675.301-1.425.454-2.253.454-.82 0-1.57-.149-2.239-.446a5.31 5.31 0 0 1-1.734-1.203 5.349 5.349 0 0 1-1.117-1.761 5.647 5.647 0 0 1-.395-2.106v-.031c0-.734.13-1.442.399-2.113a5.48 5.48 0 0 1 1.125-1.774 5.523 5.523 0 0 1 1.746-1.21c.675-.302 1.425-.45 2.25-.45m14.949.031c.793 0 1.484.106 2.074.328a6.3 6.3 0 0 1 1.719.989l-.707.933c-.504-.406-1.012-.703-1.52-.886a4.725 4.725 0 0 0-1.597-.278c-.707 0-1.266.168-1.68.5-.41.332-.613.742-.613 1.235v.027c0 .258.043.484.12.68.083.203.231.386.45.554.215.172.512.32.895.461.378.137.867.27 1.46.39 1.204.255 2.09.622 2.66 1.095.571.476.856 1.12.856 1.937v.031a2.784 2.784 0 0 1-1.027 2.207c-.324.266-.711.47-1.164.614a4.8 4.8 0 0 1-1.477.215c-.863 0-1.652-.141-2.367-.422-.715-.282-1.395-.711-2.043-1.293l.758-.891c.562.512 1.133.89 1.707 1.14.578.255 1.238.376 1.992.376.73 0 1.313-.168 1.746-.512.438-.34.656-.777.656-1.309v-.03c0-.247-.039-.47-.125-.669a1.379 1.379 0 0 0-.43-.543c-.206-.164-.492-.312-.859-.445a10.873 10.873 0 0 0-1.398-.383 11.113 11.113 0 0 1-1.613-.46 4.109 4.109 0 0 1-1.137-.626 2.357 2.357 0 0 1-.664-.863c-.145-.324-.215-.707-.215-1.145v-.031c0-.418.086-.805.258-1.164.18-.36.433-.676.742-.93.32-.261.695-.465 1.129-.613.43-.145.902-.219 1.414-.219m-55.063.024v1.3l-2.851 1.258v5.84l2.851 1.27v1.242L1.281 64.45 0 63.901l1.281-.586Zm14 .129v1.117h-6.582v3.629h5.887v1.12h-5.887v3.743h6.66v1.117h-7.874V58.56Zm74.762 0v6.406l6.192-6.406h1.574l-4.625 4.687 4.828 6.04h-1.527l-4.149-5.196-2.293 2.312v2.883h-1.222V58.56Zm21.36 0v1.117h-6.582v3.629H128v1.12h-12.313v3.743h6.66v1.117h-7.874V58.56Zm-29.438 0v10.726h-1.223V58.56Zm-11.281 0c.605 0 1.156.078 1.656.238.496.156.922.379 1.277.672.352.285.63.652.813 1.066.191.418.293.895.293 1.426v.031c0 .578-.117 1.09-.34 1.524-.223.43-.535.8-.918 1.093-.387.297-.836.52-1.348.668a5.883 5.883 0 0 1-1.64.223h-2.617v3.785h-1.22V58.56Zm-44.535 0c.668 0 1.261.093 1.78.28.52.192.946.454 1.286.794.266.265.477.582.617.933.145.356.215.75.215 1.18v.027c0 .442-.07.836-.215 1.192-.14.344-.344.656-.605.918a3.225 3.225 0 0 1-.938.644 5.065 5.065 0 0 1-1.172.375l3.317 4.383h-1.492l-3.133-4.168h-3.078v4.168h-1.223V58.56Zm15.21.933c-.613 0-1.18.113-1.699.344a4.1 4.1 0 0 0-1.336.945 4.48 4.48 0 0 0-.87 1.395 4.677 4.677 0 0 0-.313 1.715v.03c0 .614.105 1.188.312 1.724.211.535.508 1.003.887 1.402a4.34 4.34 0 0 0 1.348.95c.52.237 1.09.35 1.707.35a4.085 4.085 0 0 0 3.035-1.284c.371-.399.66-.864.871-1.395.21-.531.312-1.102.312-1.715v-.031c0-.613-.101-1.188-.312-1.723-.2-.52-.5-.996-.883-1.402a4.312 4.312 0 0 0-1.351-.953 4.107 4.107 0 0 0-1.707-.352M8.203 61.461 2.7 63.898l5.504 2.454Zm73.258-1.785h-2.734v4.707h2.675c.45 0 .86-.059 1.22-.168a2.94 2.94 0 0 0 .937-.48 2.165 2.165 0 0 0 .813-1.707v-.032c0-.762-.27-1.34-.802-1.73-.527-.395-1.234-.59-2.11-.59m-44.53 0h-3.332v4.351h3.32c.398 0 .77-.05 1.113-.152a2.73 2.73 0 0 0 .88-.438 1.96 1.96 0 0 0 .785-1.617v-.03c0-.661-.243-1.18-.723-1.552-.485-.375-1.164-.562-2.043-.562"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
icons/aerospike/aerospike-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#c21417" d="M76.516 82 39.734 65.508l36.782-16.383ZM128 0v128H0V0Zm-25.094 28.727L30.25 61.59l-8.57 3.96 8.57 3.673 72.656 32.867v-8.348L83.836 85.2V45.93l19.07-8.456Zm0 0"/></svg>
|
After Width: | Height: | Size: 255 B |
1
icons/almalinux/almalinux-original-wordmark.svg
Normal file
After Width: | Height: | Size: 5.3 KiB |
1
icons/almalinux/almalinux-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M95.965 47.4c-8.687-.15-17.27 3.253-23.996 9.49-.63.426-.84 1.067-.418 1.708 4.195-1.282 8.597-2.563 13.21-2.774 4.825-.426 9.86-.851 14.684 1.278 6.082 2.559 7.133 8.316 2.516 12.796-2.098 2.133-4.824 3.625-7.758 4.477-1.68.426-1.89 1.281-1.262 2.984 1.891 4.692 3.149 9.598 2.52 14.926-.211.856-.422 1.496.418 2.133 1.886 1.281 9.02 0 10.488-1.492 2.727-2.559 1.676-5.543 1.047-8.317-.836-3.41-.418-6.609 1.469-9.382 1.887-2.77 4.613-4.051 7.55-5.329 1.258-.425 2.31-1.066 3.149-2.558 1.887-3.625-.422-9.809-3.988-12.797-6.055-4.758-12.873-7.025-19.63-7.143zm22.734 24.809c-.332-.005-.669.007-1.01.033-5.66.641-9.437 4.906-9.02 10.664.422 5.328 5.036 9.38 10.278 8.953 5.453-.426 9.442-5.117 9.02-10.875-.392-5.196-4.289-8.707-9.268-8.775z" fill="#85d82e"/><path d="M69.662 63.74c-.262-.027-.523.08-.838.4 2.516 3.836 4.824 7.891 6.711 12.153 1.68 4.692 3.567 9.383 2.938 14.715-.63 6.398-5.875 9.168-11.328 5.969-2.727-1.493-4.825-3.625-6.5-6.184-1.051-1.492-2.098-1.492-3.356-.426-3.988 3.414-8.18 5.973-13.426 6.824-.836 0-1.675 0-2.097.852-.63 2.133 2.52 8.742 4.406 9.809 3.144 1.921 5.664 0 8.18-1.493 2.937-1.703 5.87-2.343 9.226-1.277 3.149 1.067 5.246 3.41 7.133 5.969.84 1.066 1.68 1.918 3.355 2.347 3.985 1.067 9.438-3.199 11.118-7.464 6.293-16.418-.84-33.266-14.684-41.793-.314-.213-.576-.374-.838-.4zm-9.017 44.112c-5.036 0-9.23 4.265-9.23 9.808 0 6.183 3.983 10.024 10.07 10.024 4.82-.215 9.015-4.692 9.015-9.809 0-5.332-4.824-10.023-9.855-10.023z" fill="#22c1ff"/><path d="M99.096 4.623a8.923 8.923 0 00-.49.025c-5.454.426-9.227 5.329-8.81 10.66.419 5.333 5.243 9.383 10.696 8.958 5.035-.426 9.23-5.332 8.813-10.45-.41-5.165-5.144-9.325-10.21-9.193zM80.789 7.607c-2.765-.032-5.766.906-7.77 2.584-13.632 11.09-15.94 29.641-8.18 44.352.208.64.63 1.281 1.466.855v-.002c-.207-4.69-.418-9.38.422-13.86.84-5.118 1.675-10.235 4.824-14.497 3.773-5.332 9.648-5.121 12.793.637 1.68 2.773 2.308 5.758 2.515 8.957 0 1.918.84 2.344 2.52 2.133 5.032-.852 10.066-.852 14.89 1.066.63.211 1.258.64 2.098 0 1.676-1.492 2.098-8.957 1.047-10.875-1.887-3.414-4.824-2.984-7.758-2.984-3.355.21-6.293-.856-8.601-3.625-2.098-2.559-2.727-5.758-3.145-8.957-.21-1.492-.422-2.774-1.68-3.84-1.283-1.306-3.29-1.918-5.44-1.944z" fill="#ffc911"/><path d="M21.68 47.53c-.39.014-.833.163-1.305.404-.84.425-1.68.851-2.309 1.28-5.453 3.41-6.082 7.677-1.468 12.368 3.355 3.41 5.035 7.25 3.777 11.941-.629 2.344-1.89 4.051-3.355 5.97-1.051 1.28-1.47 2.558-1.262 4.265.422 4.05 4.406 8.101 9.23 8.527 13.422 1.281 24.328-3.41 31.88-14.926 2.519-3.624 4.405-7.675 5.245-11.941-.84-.211-1.05.215-1.68.43-4.823 5.117-9.859 10.02-16.359 13.433-2.515 1.278-5.242 2.344-8.18 2.344-4.613 0-7.34-2.984-6.921-7.676.21-3.84 1.68-7.25 4.195-10.023 1.258-1.492 1.258-2.344-.211-3.625-4.195-2.985-7.969-6.61-9.855-11.516-.264-.932-.771-1.281-1.422-1.256zM9.646 60.872c-.336.006-.676.028-1.017.068-4.824.426-9.02 5.543-8.602 10.66C.45 76.935 5.48 81.2 10.516 80.56c6.082-.426 9.23-6.399 9.02-11.301-.396-4.798-4.842-8.472-9.89-8.385z" fill="#0068d8"/><path d="M33.938.316a9.087 9.087 0 00-.981.067c-5.66.64-9.02 5.117-8.387 11.3.629 4.692 5.66 8.743 10.485 8.106 5.664-.856 9.437-5.547 8.808-11.09-.59-4.6-5.048-8.447-9.925-8.383zm17.26 6.938c-2.666-.061-4.711 1.697-5.866 5.07-2.516 7.465-7.34 10.235-15.102 8.742-1.046-.214-2.097-.425-2.515-.425-3.985.64-6.293 2.984-6.922 6.183-.84 9.81 4.195 16.844 11.117 22.602 7.34 6.398 16.36 7.89 25.797 7.465.84 0 1.68 0 1.887-.641.21-1.066-.836-1.066-1.469-1.277-4.402-1.922-9.016-3.414-13.004-6.188-3.984-2.769-8.598-5.117-10.277-10.445-1.258-4.051.422-7.676 4.406-8.957 3.566-1.281 7.133-1.281 10.488 0 2.098.851 2.934.426 3.356-1.918.629-4.051 1.886-7.89 4.402-11.3 2.938-4.267 2.938-4.692-1.887-7.466-.21 0-.21-.215-.418-.215-1.442-.8-2.782-1.202-3.994-1.23z" fill="#ff4546"/></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
icons/almalinux/almalinux-plain-wordmark.svg
Normal file
After Width: | Height: | Size: 5.2 KiB |
1
icons/almalinux/almalinux-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M33.938.316a9.087 9.087 0 0 0-.981.067c-5.66.64-9.02 5.117-8.387 11.3.629 4.692 5.66 8.743 10.485 8.106 5.664-.856 9.437-5.547 8.808-11.09-.59-4.6-5.048-8.447-9.925-8.383zm65.158 4.307a8.923 8.923 0 0 0-.49.025c-5.454.426-9.227 5.329-8.81 10.66.419 5.333 5.243 9.383 10.696 8.958 5.035-.426 9.23-5.332 8.813-10.45-.41-5.165-5.144-9.325-10.21-9.193zm-47.899 2.63c-2.665-.06-4.71 1.698-5.865 5.071-2.516 7.465-7.34 10.235-15.102 8.742-1.046-.214-2.097-.425-2.515-.425-3.985.64-6.293 2.984-6.922 6.183-.84 9.81 4.195 16.844 11.117 22.602 7.34 6.398 16.36 7.89 25.797 7.465.84 0 1.68 0 1.887-.641.21-1.066-.836-1.066-1.469-1.277-4.402-1.922-9.016-3.414-13.004-6.188-3.984-2.769-8.598-5.117-10.277-10.445-1.258-4.051.422-7.676 4.406-8.957 3.566-1.281 7.133-1.281 10.488 0 2.098.851 2.934.426 3.356-1.918.629-4.051 1.886-7.89 4.402-11.3 2.938-4.267 2.938-4.692-1.887-7.466-.21 0-.21-.215-.418-.215-1.442-.8-2.782-1.202-3.994-1.23zm29.592.354c-2.765-.032-5.766.906-7.77 2.584-13.632 11.09-15.94 29.641-8.18 44.352.208.64.63 1.281 1.466.855v-.002c-.207-4.69-.418-9.38.422-13.86.84-5.118 1.675-10.235 4.824-14.497 3.773-5.332 9.648-5.121 12.793.637 1.68 2.773 2.308 5.758 2.515 8.957 0 1.918.84 2.344 2.52 2.133 5.032-.852 10.066-.852 14.89 1.066.63.211 1.258.64 2.098 0 1.676-1.492 2.098-8.957 1.047-10.875-1.887-3.414-4.824-2.984-7.758-2.984-3.355.21-6.293-.856-8.601-3.625-2.098-2.559-2.727-5.758-3.145-8.957-.21-1.492-.422-2.774-1.68-3.84-1.283-1.306-3.29-1.918-5.44-1.944zM95.965 47.4c-8.687-.15-17.27 3.253-23.996 9.49-.63.426-.84 1.067-.418 1.708 4.195-1.282 8.597-2.563 13.21-2.774 4.825-.426 9.86-.851 14.684 1.278 6.082 2.559 7.133 8.316 2.516 12.796-2.098 2.133-4.824 3.625-7.758 4.477-1.68.426-1.89 1.281-1.262 2.984 1.891 4.692 3.149 9.598 2.52 14.926-.211.856-.422 1.496.418 2.133 1.886 1.281 9.02 0 10.488-1.492 2.727-2.559 1.676-5.543 1.047-8.317-.836-3.41-.418-6.609 1.469-9.382 1.887-2.77 4.613-4.051 7.55-5.329 1.258-.425 2.31-1.066 3.149-2.558 1.887-3.625-.422-9.809-3.988-12.797-6.055-4.758-12.873-7.025-19.63-7.143zm-74.285.13c-.39.014-.833.163-1.305.404-.84.425-1.68.851-2.309 1.28-5.453 3.41-6.082 7.677-1.468 12.368 3.355 3.41 5.035 7.25 3.777 11.941-.629 2.344-1.89 4.051-3.355 5.97-1.051 1.28-1.47 2.558-1.262 4.265.422 4.05 4.406 8.101 9.23 8.527 13.422 1.281 24.328-3.41 31.88-14.926 2.519-3.624 4.405-7.675 5.245-11.941-.84-.211-1.05.215-1.68.43-4.823 5.117-9.859 10.02-16.359 13.433-2.515 1.278-5.242 2.344-8.18 2.344-4.613 0-7.34-2.984-6.921-7.676.21-3.84 1.68-7.25 4.195-10.023 1.258-1.492 1.258-2.344-.211-3.625-4.195-2.985-7.969-6.61-9.855-11.516-.264-.932-.771-1.281-1.422-1.256zM9.646 60.872c-.336.006-.676.028-1.017.068-4.824.426-9.02 5.543-8.602 10.66.423 5.335 5.453 9.6 10.489 8.96 6.082-.426 9.23-6.399 9.02-11.301-.396-4.798-4.842-8.472-9.89-8.385zm60.016 2.867c-.262-.027-.523.08-.838.4 2.516 3.836 4.824 7.891 6.711 12.153 1.68 4.692 3.567 9.383 2.938 14.715-.63 6.398-5.875 9.168-11.328 5.969-2.727-1.493-4.825-3.625-6.5-6.184-1.051-1.492-2.098-1.492-3.356-.426-3.988 3.414-8.18 5.973-13.426 6.824-.836 0-1.675 0-2.097.852-.63 2.133 2.52 8.742 4.406 9.809 3.144 1.921 5.664 0 8.18-1.493 2.937-1.703 5.87-2.343 9.226-1.277 3.149 1.067 5.246 3.41 7.133 5.969.84 1.066 1.68 1.918 3.355 2.347 3.985 1.067 9.438-3.199 11.118-7.464 6.293-16.418-.84-33.266-14.684-41.793-.314-.213-.576-.374-.838-.4zM118.7 72.21c-.332-.005-.669.007-1.01.033-5.66.641-9.437 4.906-9.02 10.664.422 5.328 5.036 9.38 10.278 8.953 5.453-.426 9.442-5.117 9.02-10.875-.392-5.196-4.289-8.707-9.268-8.775zm-58.054 35.643c-5.036 0-9.23 4.265-9.23 9.808 0 6.183 3.983 10.024 10.07 10.024 4.82-.215 9.015-4.692 9.015-9.809 0-5.332-4.824-10.023-9.855-10.023z"/></svg>
|
After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 5.3 KiB |
@@ -1,8 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.666667%,0%,19.215686%);fill-opacity:1;" d="M 64 15.359375 L 16.332031 32.359375 L 23.601562 95.386719 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 64 15.359375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(76.470588%,0%,18.431373%);fill-opacity:1;" d="M 64 15.359375 L 64 26.726562 L 64 26.675781 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 64 15.359375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 64 26.675781 L 34.203125 93.492188 L 45.3125 93.492188 L 51.300781 78.539062 L 76.59375 78.539062 L 82.585938 93.492188 L 93.695312 93.492188 Z M 72.703125 69.324219 L 55.296875 69.324219 L 64 48.382812 Z M 72.703125 69.324219 "/>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><linearGradient id="a" x1="14.704" x2="110.985" y1="46.27" y2="92.024" gradientTransform="matrix(1 0 0 -1 0 130)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#e40035"/><stop offset=".24" stop-color="#f60a48"/><stop offset=".352" stop-color="#f20755"/><stop offset=".494" stop-color="#dc087d"/><stop offset=".745" stop-color="#9717e7"/><stop offset="1" stop-color="#6c00f5"/></linearGradient><path fill="url(#a)" d="m124.5 21.3-4.4 68.6L78.3 0l46.2 21.3zm-29 88.7L64 128l-31.5-18 6.4-15.5h50.3l6.3 15.5zM64 34.1l16.5 40.2h-33L64 34.1zM7.9 89.9 3.5 21.3 49.7 0 7.9 89.9z"/><linearGradient id="b" x1="28.733" x2="91.742" y1="117.071" y2="45.195" gradientTransform="matrix(1 0 0 -1 0 130)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ff31d9"/><stop offset="1" stop-color="#ff5be1" stop-opacity="0"/></linearGradient><path fill="url(#b)" d="m124.5 21.3-4.4 68.6L78.3 0l46.2 21.3zm-29 88.7L64 128l-31.5-18 6.4-15.5h50.3l6.3 15.5zM64 34.1l16.5 40.2h-33L64 34.1zM7.9 89.9 3.5 21.3 49.7 0 7.9 89.9z"/></svg>
|
||||
|
Before Width: | Height: | Size: 995 B After Width: | Height: | Size: 1.1 KiB |
@@ -1,12 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
|
||||
<path d="M41.4,71.2V57.7h1.7l8.3,10.9V57.7H53v13.5h-1.7l-8.3-11v11H41.4L41.4,71.2z M66.5,70.7c-1.1,0.4-2.3,0.6-3.5,0.6
|
||||
c-4.9,0-7.3-2.3-7.3-7c0-4.4,2.4-6.7,7.1-6.7c1.4,0,2.6,0.2,3.8,0.6v1.5C65.4,59.2,64.2,59,63,59c-3.7,0-5.5,1.8-5.5,5.2
|
||||
c0,3.8,1.8,5.6,5.5,5.6c0.6,0,1.2-0.1,1.9-0.2v-4.5h1.7L66.5,70.7L66.5,70.7z M69.3,66v-8.3H71V66c0,2.6,1.3,3.9,3.9,3.9
|
||||
s3.9-1.3,3.9-3.9v-8.3h1.7V66c0,3.5-1.9,5.3-5.6,5.3S69.3,69.5,69.3,66L69.3,66z M85.4,57.7v12.1h7.1v1.4h-8.8V57.7H85.4L85.4,57.7z
|
||||
M95,71.2h-1.8l6.7-15.3l6.7,15.3h-1.9L103,67h-4.5l0.5-1.4h3.4l-2.5-6.1L95,71.2L95,71.2z M108.5,71.2V57.7h5.8
|
||||
c2.6,0,3.9,1.1,3.9,3.2c0,1.8-1.3,3.1-3.8,3.9l4.6,6.4h-2.3l-4.3-6.1V64c2.6-0.4,3.9-1.4,3.9-3c0-1.2-0.7-1.9-2.1-1.9h-3.9v12.1
|
||||
H108.5L108.5,71.2z"/>
|
||||
<path d="M20.5,64.8h5.1L23,58.7L20.5,64.8z M23,49.1L9,54l2.1,18.3L23,78.9l12-6.5L37,54L23,49.1z M31.8,71.8h-3.3l-1.8-4.4h-7.5
|
||||
l-1.8,4.4h-3.3L23,52.4L31.8,71.8z"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M50.67 73.4h4.03l-7.34-20.82H42.7L35.37 73.4h4.03l1.72-5.13h7.83l1.73 5.13Zm-8.54-8.17 2.81-8.39h.16l2.82 8.39h-5.79Zm16.54-.99v9.15h-3.68V57.77h3.52v2.65h.18c.36-.87.93-1.57 1.72-2.08.79-.52 1.77-.77 2.93-.77 1.08 0 2.02.23 2.82.69.8.46 1.43 1.13 1.87 2 .44.87.66 1.94.66 3.18v9.94h-3.68V64c0-1.04-.27-1.86-.81-2.45-.54-.59-1.28-.88-2.23-.88-.64 0-1.22.14-1.71.42-.5.28-.89.69-1.17 1.22s-.42 1.17-.42 1.92Zm18.14 15.33c-1.32 0-2.46-.18-3.41-.53s-1.71-.83-2.29-1.43c-.58-.6-.98-1.26-1.2-1.98l3.31-.8c.15.31.37.61.65.91.28.3.67.55 1.15.75.48.2 1.1.3 1.84.3 1.04 0 1.91-.25 2.59-.76.68-.51 1.03-1.33 1.03-2.49v-2.96h-.18c-.19.38-.47.77-.83 1.17-.36.4-.84.74-1.43 1.01s-1.34.41-2.23.41c-1.2 0-2.29-.28-3.26-.85-.97-.57-1.75-1.41-2.32-2.54-.57-1.13-.86-2.54-.86-4.25s.29-3.16.86-4.35c.57-1.18 1.35-2.08 2.32-2.69.98-.61 2.06-.92 3.26-.92.92 0 1.67.15 2.26.46.59.31 1.07.68 1.42 1.11.35.43.62.84.8 1.22h.2v-2.58h3.63v15.87c0 1.34-.32 2.44-.96 3.31-.64.87-1.51 1.53-2.61 1.96-1.11.43-2.36.65-3.76.65Zm.03-9.29c.78 0 1.44-.19 1.99-.57.55-.38.97-.93 1.25-1.64.28-.71.43-1.57.43-2.56s-.14-1.84-.42-2.58c-.28-.74-.69-1.31-1.24-1.72-.55-.41-1.22-.62-2.01-.62s-1.5.21-2.05.64c-.55.43-.96 1.01-1.24 1.75s-.42 1.58-.42 2.53.14 1.79.42 2.51c.28.72.7 1.27 1.25 1.67.55.4 1.23.59 2.04.59Zm18.46-3.46v-9.05h3.68v15.62h-3.57v-2.78h-.16a4.76 4.76 0 0 1-1.73 2.15c-.8.56-1.79.83-2.96.83-1.02 0-1.93-.23-2.71-.69s-1.39-1.13-1.84-2c-.44-.88-.66-1.94-.66-3.19v-9.94h3.68v9.38c0 .99.27 1.78.81 2.36.54.58 1.25.87 2.14.87.54 0 1.07-.13 1.58-.4.51-.26.93-.66 1.26-1.18.33-.53.49-1.18.49-1.98Zm8.57-14.26v20.82h-3.68V52.56h3.68Zm5.84 21.14c-.99 0-1.88-.18-2.67-.53-.79-.36-1.41-.88-1.87-1.58-.46-.7-.69-1.56-.69-2.58 0-.88.16-1.61.49-2.19.33-.58.77-1.04 1.33-1.38.56-.35 1.2-.61 1.91-.79.71-.18 1.44-.31 2.2-.39.92-.09 1.66-.18 2.23-.26.57-.08.98-.2 1.25-.37.26-.17.39-.43.39-.78v-.06c0-.77-.23-1.36-.68-1.78-.45-.42-1.11-.63-1.96-.63-.9 0-1.62.2-2.14.59-.53.39-.88.86-1.06 1.39l-3.44-.49c.27-.95.72-1.74 1.34-2.38.62-.64 1.39-1.12 2.29-1.44.9-.32 1.9-.48 2.99-.48.75 0 1.5.09 2.25.26.75.18 1.43.47 2.04.87.62.4 1.11.95 1.49 1.64.38.69.56 1.56.56 2.59v10.45h-3.54v-2.15h-.12c-.22.43-.54.84-.94 1.22-.4.38-.91.68-1.52.9s-1.32.34-2.13.34Zm.96-2.7c.74 0 1.38-.15 1.92-.44.54-.29.96-.69 1.26-1.17.29-.49.44-1.02.44-1.6v-1.84c-.12.09-.31.18-.58.26-.27.08-.58.15-.92.21-.34.06-.67.12-1.01.16-.33.05-.62.09-.86.12-.55.07-1.04.2-1.47.37-.43.17-.78.41-1.03.71s-.38.69-.38 1.16c0 .68.25 1.19.74 1.54.49.35 1.13.52 1.89.52Zm8.42 2.39V57.77h3.57v2.6h.16c.28-.9.77-1.6 1.47-2.09.69-.49 1.49-.74 2.38-.74.2 0 .43 0 .69.03.25.02.47.04.64.08v3.39c-.16-.05-.4-.1-.74-.15-.34-.04-.66-.07-.97-.07-.67 0-1.27.14-1.81.43-.53.29-.95.69-1.26 1.19-.3.51-.46 1.09-.46 1.76v9.18h-3.68ZM28.95 53.53l-1.04 16.41-10-21.52 11.04 5.11Zm-6.92 21.23-7.55 4.31-7.55-4.31 1.54-3.72H20.5l1.54 3.72Zm-7.55-18.17 3.96 9.62h-7.91l3.96-9.62ZM1.04 69.94 0 53.53l11.04-5.11-10 21.52Z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 55.296875 69.324219 L 72.703125 69.324219 L 64 48.382812 Z M 55.296875 69.324219 M 64 15.359375 L 16.332031 32.359375 L 23.601562 95.386719 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 93.746094 93.492188 L 82.636719 93.492188 L 76.644531 78.539062 L 51.355469 78.539062 L 45.363281 93.492188 L 34.253906 93.492188 L 64 26.675781 Z M 93.746094 93.492188 "/>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="m78.36 0 41.77 89.9 4.34-68.57L78.36 0M38.87 94.47l-6.42 15.54L64 128l31.55-17.99-6.42-15.54H38.87M80.53 74.3 64 34.11 47.47 74.3h33.06m-77-52.97L7.87 89.9 49.64 0 3.53 21.33"/></svg>
|
||||
|
Before Width: | Height: | Size: 661 B After Width: | Height: | Size: 255 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#C4473A" d="M52.864 64h23.28L63.769 38.123zM63.81 1.026L4.553 21.88l9.363 77.637 49.957 27.457 50.214-27.828 9.36-77.635L63.81 1.026zM48.044 75l-7.265 18.176-13.581.056 36.608-81.079-.07-.153h-.064l.001-.133.063.133h.141l.123-.274V12h-.124l-.069.153 38.189 81.417-13.074-.287-8.042-18.58-17.173.082"/></svg>
|
||||
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m52.864 64h23.28l-12.375-25.877zm10.946-62.974-59.257 20.854 9.363 77.637 49.957 27.457 50.214-27.828 9.36-77.635zm-15.766 73.974-7.265 18.176-13.581 0.056 36.608-81.079s26.531 56.561 38.19 81.417l-13.074-0.287-8.042-18.58-17.173 0.082z" fill="#c4473a"/></svg>
|
||||
|
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 346 B |
1
icons/awk/awk-original.svg
Normal file
After Width: | Height: | Size: 5.1 KiB |
1
icons/biome/biome-line-wordmark.svg
Normal file
After Width: | Height: | Size: 11 KiB |
1
icons/biome/biome-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#60a5fa" d="M64 8.324a1.94 1.94 0 0 0-1.68.97L34.665 57.177a1.94 1.94 0 0 0 2.251 2.821 60.576 60.576 0 0 1 31.705-1.09l7.454 1.75-7.894 33.496-7.473-1.75h-.01c-11.696-2.762-22.911 2.91-28.394 12.315l-5.162-2.491c6.643-11.786 20.55-18.789 34.886-15.387a1.94 1.94 0 0 0 2.341-1.451l4.382-18.579a1.94 1.94 0 0 0-1.44-2.33A54.729 54.729 0 0 0 20.78 74.824 54.754 54.754 0 0 0 0 117.735a1.94 1.94 0 0 0 1.94 1.941h124.12a1.94 1.94 0 0 0 1.68-2.911L65.68 9.295A1.94 1.94 0 0 0 64 8.323Zm0 5.823 58.698 101.647H3.992c.58-14.817 7.513-28.683 19.189-37.927 11.675-9.235 26.772-12.796 41.32-9.945l-3.502 14.857C44.86 79.877 29.364 88.34 22.65 102.218a1.94 1.94 0 0 0 .91 2.591l8.654 4.182a1.94 1.94 0 0 0 2.591-.9c4.282-8.844 14.407-14.417 25.002-11.906a1.94 1.94 0 0 0 .01 0l9.364 2.191a1.94 1.94 0 0 0 2.332-1.44l8.784-37.268a1.94 1.94 0 0 0-1.441-2.341l-9.354-2.201c-9.635-2.261-19.62-2.131-29.224.1z"/></svg>
|
After Width: | Height: | Size: 978 B |
1
icons/biome/biome-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#60a5fa" d="M18.12 48.249 10.055 62.28a18.206 18.206 0 0 1 9.544-.33l2.739.64-2.569 10.934-2.728-.65a6.972 6.972 0 0 0-5.987 1.34c-.83.66-1.51 1.509-1.969 2.458l-2.529-1.22a9.889 9.889 0 0 1 2.759-3.457 9.83 9.83 0 0 1 8.365-1.86l1.28-5.446c-4.588-1.08-9.415 0-13.103 2.928A15.5 15.5 0 0 0 0 79.751h36.25Zm0 0"/><path fill="#151515" d="M39.378 79.402V58.013h9.006c1.469 0 2.738.25 3.787.74 1.05.51 1.84 1.22 2.4 2.159.559.93.829 2.039.829 3.358 0 .95-.26 1.839-.78 2.698-.51.85-1.36 1.55-2.538 2.13v-2.18c1.129.44 1.998.96 2.598 1.58.61.61 1.04 1.279 1.27 1.998.23.73.34 1.49.34 2.25 0 2.108-.7 3.747-2.1 4.907-1.379 1.159-3.318 1.749-5.806 1.749zm4.438-3.878h5.087c.9 0 1.61-.25 2.14-.78.539-.51.799-1.18.799-1.999 0-.84-.26-1.519-.8-2.049-.53-.51-1.24-.77-2.139-.76h-5.087zm0-9.475h4.887c.69 0 1.23-.19 1.63-.57.42-.4.63-.93.63-1.589 0-.64-.21-1.16-.63-1.54-.4-.399-.94-.599-1.63-.599h-4.887zm15.562 13.353V63.73h4.277v15.672zm0-17.081v-4.308h4.277v4.308zm15.411 17.43c-1.55 0-2.958-.36-4.238-1.059a8.367 8.367 0 0 1-3.028-2.908c-.75-1.24-1.12-2.649-1.12-4.218 0-1.59.37-2.998 1.12-4.218a8.366 8.366 0 0 1 3.028-2.908c1.28-.7 2.689-1.06 4.238-1.06 1.55 0 2.948.36 4.198 1.06a8.031 8.031 0 0 1 3.018 2.908c.76 1.22 1.14 2.629 1.14 4.218 0 1.569-.38 2.978-1.14 4.218a8.032 8.032 0 0 1-3.018 2.908c-1.25.7-2.659 1.06-4.198 1.06zm0-3.877c.79 0 1.47-.18 2.029-.55a3.76 3.76 0 0 0 1.38-1.52c.349-.649.509-1.399.509-2.238 0-.84-.16-1.58-.51-2.209a3.678 3.678 0 0 0-1.379-1.52c-.56-.389-1.24-.579-2.029-.579-.79 0-1.47.19-2.059.58-.6.37-1.08.89-1.399 1.52-.33.629-.49 1.368-.49 2.208 0 .84.16 1.589.49 2.239.32.63.8 1.149 1.4 1.519.589.37 1.279.55 2.058.55zm11.094 3.528V63.73h4.008v3.818l-.42-.63c.22-1.209.77-2.098 1.66-2.678.869-.58 1.908-.86 3.137-.86 1.3 0 2.44.33 3.399 1.01.999.65 1.619 1.529 1.869 2.638l-1.23.12c.51-1.289 1.25-2.238 2.209-2.848.95-.62 2.059-.92 3.338-.92 1.12 0 2.119.25 2.979.75.87.49 1.579 1.22 2.058 2.089.5.89.74 1.919.74 3.108v10.075h-4.288v-9.155c0-.62-.12-1.14-.35-1.58-.19-.43-.51-.79-.909-1.039-.41-.24-.89-.37-1.46-.37-.549 0-1.039.13-1.448.37a2.599 2.599 0 0 0-.96 1.04c-.21.44-.31.959-.31 1.579v9.155h-4.297v-9.155c0-.62-.11-1.14-.33-1.58-.2-.43-.52-.79-.92-1.039-.4-.24-.89-.37-1.459-.37-.56 0-1.04.13-1.459.37-.4.25-.73.61-.94 1.04-.21.44-.32.959-.32 1.579v9.155zm34.671.35c-1.649 0-3.088-.37-4.318-1.09a7.742 7.742 0 0 1-2.828-2.988c-.66-1.24-1-2.629-1-4.138 0-1.57.34-2.968 1.03-4.188a8 8 0 0 1 2.838-2.908c1.18-.7 2.509-1.06 3.998-1.06 1.24 0 2.339.2 3.298.6.95.39 1.75.93 2.4 1.65.669.709 1.188 1.548 1.518 2.458.34.93.51 1.919.51 3.018 0 .31-.02.61-.06.92-.01.25-.05.5-.14.74h-11.694v-3.16h9.265l-2.028 1.5c.18-.82.18-1.549-.04-2.179-.21-.65-.57-1.16-1.11-1.519-.51-.39-1.15-.58-1.919-.58-.74 0-1.379.18-1.919.55-.53.35-.93.9-1.19 1.6-.279.719-.379 1.578-.319 2.588-.08.89.02 1.649.32 2.319.26.65.72 1.199 1.31 1.589.579.36 1.308.54 2.148.54.75 0 1.4-.15 1.939-.46.54-.29.99-.72 1.29-1.26l3.437 1.64c-.31.77-.82 1.459-1.459 2.008-.68.59-1.469 1.05-2.329 1.35-.89.3-1.879.46-2.948.46zm0 0"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/biome/biome-original.svg
Executable file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#60a5fa" d="M64 8.584 35.487 57.967a64.358 64.358 0 0 1 33.735-1.17l9.635 2.27-9.054 38.429-9.665-2.261c-11.855-2.802-23.23 3.421-28.053 13.356l-8.924-4.312C29.964 90.222 46 81.719 62.429 85.6l4.522-19.159A54.419 54.419 0 0 0 20.67 76.736 54.469 54.469 0 0 0 0 119.416h128zm0 0"/></svg>
|
After Width: | Height: | Size: 361 B |
1
icons/biome/biome-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#60a5fa" d="M18.12 48.249 10.055 62.28a18.102 18.102 0 0 1 9.544-.32l2.739.64-2.569 10.924-2.728-.65c-2.1-.5-4.308 0-5.987 1.34a7.07 7.07 0 0 0-1.969 2.468l-2.529-1.23a9.855 9.855 0 0 1 2.759-3.447 9.835 9.835 0 0 1 8.365-1.87l1.28-5.436a15.362 15.362 0 0 0-13.103 2.918A15.5 15.5 0 0 0 0 79.751h36.25Zm21.258 31.153V58.013h9.006c1.469 0 2.738.25 3.787.74 1.05.51 1.84 1.22 2.4 2.159.559.93.829 2.039.829 3.358 0 .95-.26 1.839-.78 2.698-.51.85-1.36 1.55-2.538 2.13v-2.18c1.129.44 1.998.96 2.598 1.58.61.61 1.04 1.279 1.27 2.008.23.72.34 1.48.34 2.24 0 2.108-.7 3.747-2.1 4.907-1.379 1.169-3.318 1.749-5.806 1.749zm4.438-3.878h5.087c.9 0 1.61-.25 2.14-.78.539-.51.799-1.18.799-1.999 0-.84-.26-1.519-.8-2.039-.53-.52-1.24-.78-2.139-.77h-5.087zm0-9.465h4.887c.69 0 1.23-.2 1.63-.58.42-.4.63-.93.63-1.579 0-.64-.21-1.17-.63-1.54-.4-.409-.94-.609-1.63-.609h-4.887zm15.562 13.343V63.73h4.277v15.672zm0-17.071v-4.318h4.277v4.318zm15.411 17.42c-1.55 0-2.958-.36-4.238-1.059a8.285 8.285 0 0 1-3.028-2.908c-.75-1.23-1.12-2.649-1.12-4.208 0-1.6.37-2.999 1.12-4.228a8.366 8.366 0 0 1 3.028-2.908c1.28-.7 2.689-1.06 4.238-1.06 1.55 0 2.948.36 4.198 1.06a8.031 8.031 0 0 1 3.018 2.908c.76 1.23 1.14 2.629 1.14 4.228 0 1.559-.38 2.978-1.14 4.208a8.032 8.032 0 0 1-3.018 2.908c-1.25.7-2.659 1.06-4.198 1.06zm0-3.877c.79 0 1.47-.18 2.029-.55.59-.36 1.05-.87 1.38-1.52.349-.649.509-1.389.509-2.228 0-.85-.16-1.59-.51-2.219a3.74 3.74 0 0 0-1.379-1.52c-.56-.389-1.24-.569-2.029-.569-.79 0-1.47.18-2.059.57-.6.37-1.08.9-1.399 1.52-.33.629-.49 1.368-.49 2.218 0 .84.16 1.579.49 2.229.32.63.8 1.159 1.4 1.519.589.37 1.279.55 2.058.55zm11.094 3.528V63.73h4.008v3.818l-.42-.63c.22-1.209.77-2.098 1.66-2.678.869-.58 1.908-.86 3.137-.86 1.3 0 2.44.34 3.399 1.01.999.65 1.619 1.529 1.869 2.648l-1.23.11c.51-1.289 1.25-2.238 2.209-2.838.95-.62 2.059-.93 3.338-.93 1.12 0 2.12.25 2.979.75a5.33 5.33 0 0 1 2.058 2.099c.5.88.74 1.919.74 3.098v10.075h-4.288v-9.155c0-.61-.12-1.14-.35-1.58-.19-.43-.51-.79-.909-1.039-.41-.24-.89-.36-1.46-.36-.549 0-1.039.12-1.448.36-.41.25-.75.61-.96 1.04-.21.44-.31.969-.31 1.579v9.155h-4.297v-9.155c0-.61-.11-1.14-.33-1.58-.2-.43-.52-.79-.92-1.039-.4-.24-.89-.36-1.459-.36-.56 0-1.04.12-1.459.36-.41.25-.74.61-.94 1.04-.21.44-.32.969-.32 1.579v9.155zm34.671.35c-1.649 0-3.088-.36-4.318-1.09a7.742 7.742 0 0 1-2.828-2.988c-.66-1.24-1-2.619-1-4.128 0-1.58.34-2.969 1.03-4.198a8 8 0 0 1 2.838-2.908c1.18-.7 2.509-1.06 3.998-1.06 1.24 0 2.339.2 3.298.6.95.39 1.75.93 2.4 1.65.669.709 1.188 1.548 1.518 2.458.34.93.51 1.919.51 3.018 0 .31-.02.61-.06.92-.01.25-.05.5-.14.74h-11.694v-3.16h9.265l-2.028 1.5c.18-.82.18-1.549-.04-2.179-.21-.65-.57-1.16-1.11-1.519-.51-.39-1.15-.57-1.919-.57-.74 0-1.379.17-1.919.54-.53.36-.93.9-1.19 1.61-.279.709-.379 1.568-.319 2.588-.08.88.02 1.639.32 2.319.26.65.72 1.189 1.31 1.579.579.37 1.308.54 2.148.54.75 0 1.4-.15 1.939-.46.54-.29.99-.72 1.29-1.25l3.437 1.63c-.31.779-.81 1.469-1.459 2.008-.68.59-1.469 1.05-2.329 1.35-.89.3-1.879.46-2.948.46zm0 0"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/chakraui/chakraui-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="prefix__a" x1="64" x2="64" y1="0" y2="128" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.25859 0 0 .25859 0 47.45)"><stop offset="0" stop-color="#7acbd4"/><stop offset="1" stop-color="#29c6b7"/></linearGradient></defs><path d="M58.382 52.674v22.192h3.556V66.1c.061-1.9 1.134-3.372 3.096-3.372 2.238 0 3.065 1.471 3.065 3.31v8.828h3.556v-9.44c0-3.28-1.778-5.917-5.456-5.917-1.564 0-3.25.552-4.261 1.87v-8.705zm31.463 0v22.192h3.525v-4.168l1.84-1.931 4.383 6.1h4.352l-6.253-8.614 6.13-6.314h-4.72l-5.732 6.038V52.674zm-40.352 6.805c-4.292 0-7.633 3.31-7.633 7.908 0 4.537 3.341 7.94 7.725 7.94 3.923 0 6.16-2.545 6.866-4.875l-3.127-1.134c-.337 1.134-1.41 2.759-3.74 2.759-2.237 0-4.168-1.686-4.168-4.69 0-3.004 1.931-4.628 4.107-4.628 2.269 0 3.28 1.471 3.617 2.789l3.188-1.165c-.613-2.39-2.82-4.904-6.835-4.904zm30.935 0c-3.678 0-6.008 2.299-6.284 4.873l3.25.736c.153-1.502 1.195-2.697 3.065-2.697 1.961 0 2.82 1.011 2.82 2.268 0 .521-.245.95-1.104 1.073l-3.831.582c-2.544.368-4.506 1.84-4.506 4.506 0 2.36 1.93 4.506 5.057 4.506 2.422 0 3.893-1.226 4.598-2.36 0 1.195.123 1.808.154 1.9h3.31c-.03-.153-.184-1.042-.184-2.39v-7.419c0-2.973-1.747-5.578-6.345-5.578zm41.043 0c-3.678 0-6.008 2.299-6.284 4.873l3.25.736c.153-1.502 1.195-2.697 3.065-2.697 1.961 0 2.82 1.011 2.82 2.268 0 .521-.246.95-1.104 1.073l-3.831.582c-2.545.368-4.506 1.84-4.506 4.506 0 2.36 1.93 4.506 5.057 4.506 2.422 0 3.893-1.226 4.598-2.36 0 1.195.123 1.808.153 1.9H128c-.03-.153-.184-1.042-.184-2.39v-7.419c0-2.973-1.747-5.578-6.345-5.578zm-8.393.276c-1.962 0-3.617.95-4.322 2.574v-2.39h-3.464v14.927h3.556v-7.11c0-2.79 1.257-4.384 4.016-4.384.367 0 .766.03 1.164.092v-3.617a5.087 5.087 0 00-.95-.092zM83.278 68v.674c0 2.912-1.716 3.863-3.708 3.863-1.41 0-2.177-.92-2.177-1.931 0-1.227.89-1.84 1.993-2.023zm41.044 0v.674c0 2.912-1.717 3.863-3.71 3.863-1.41 0-2.175-.92-2.175-1.931 0-1.227.888-1.84 1.992-2.023z" fill="#374152"/><circle cx="16.55" cy="64" r="16.55" fill="url(#prefix__a)"/><path fill="#fff" d="M24.194 62.42a.236.236 0 00-.174-.398h-7.245c-.443 0-.37-.238-.212-.528.157-.292 4.165-7.602 4.165-7.602a.28.28 0 00.029-.122.28.28 0 00-.476-.199L8.921 64.892a.248.248 0 00.17.43h7.75c.487 0 .314.279.195.442-.12.162-5.987 8.274-5.987 8.274a.292.292 0 00.233.468c.08 0 .153-.03.204-.082.052-.052 12.705-11.994 12.705-11.994l.003-.002.005-.005z"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
icons/chakraui/chakraui-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="64" x2="64" y1="0" y2="128" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7acbd4"/><stop offset="1" stop-color="#29c6b7"/></linearGradient></defs><circle cx="64" cy="64" r="64" fill="url(#a)"/><path fill="#fff" d="M93.56 57.89a.913.913 0 0 0-.67-1.54H64.87c-1.71 0-1.43-.92-.82-2.04.61-1.13 16.11-29.4 16.11-29.4.07-.15.11-.3.11-.47a1.082 1.082 0 0 0-1.84-.77S34.5 67.45 34.5 67.45c-.19.18-.3.42-.3.7 0 .53.43.96.96.96h29.97c1.88 0 1.21 1.08.75 1.71-.46.63-23.15 32-23.15 32a1.129 1.129 0 0 0 .9 1.81c.31 0 .59-.12.79-.32s49.13-46.38 49.13-46.38l.01-.01.02-.02Z"/></svg>
|
After Width: | Height: | Size: 681 B |
1
icons/chakraui/chakraui-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M16.549 47.451A16.55 16.55 0 000 64a16.55 16.55 0 0016.549 16.549A16.55 16.55 0 0033.099 64a16.55 16.55 0 00-16.55-16.549zm41.834 5.223v22.193h3.554V66.1c.062-1.9 1.134-3.371 3.096-3.371 2.238 0 3.067 1.47 3.067 3.31v8.828h3.554v-9.441c0-3.28-1.777-5.916-5.455-5.916-1.563 0-3.25.55-4.261 1.869v-8.705h-3.555zm31.463 0v22.193h3.525v-4.17l1.838-1.931 4.383 6.101h4.353l-6.254-8.613 6.131-6.315h-4.72l-5.73 6.038V52.674h-3.526zm-69.367.816a.28.28 0 01.279.28.287.287 0 01-.03.123s-4.008 7.309-4.166 7.601c-.157.29-.229.527.213.527h7.245a.236.236 0 01.173.399l.006.002-.006.006-.002.002S11.538 74.372 11.486 74.424a.288.288 0 01-.205.082.292.292 0 01-.232-.467l5.986-8.275c.12-.163.293-.442-.193-.442h-7.75a.25.25 0 01-.17-.43l11.36-11.322a.28.28 0 01.197-.08zm29.013 5.989c-4.291 0-7.63 3.31-7.63 7.908 0 4.536 3.339 7.94 7.722 7.94 3.923 0 6.162-2.544 6.867-4.874l-3.127-1.135c-.337 1.134-1.41 2.758-3.74 2.758-2.238 0-4.168-1.685-4.168-4.69 0-3.003 1.931-4.628 4.107-4.628 2.269 0 3.28 1.473 3.618 2.79l3.187-1.165c-.613-2.391-2.82-4.904-6.836-4.904zm30.936 0c-3.679 0-6.008 2.298-6.283 4.873l3.248.736c.153-1.502 1.196-2.697 3.066-2.697 1.962 0 2.82 1.01 2.82 2.267 0 .521-.245.952-1.103 1.074l-3.832.582c-2.544.368-4.506 1.84-4.506 4.506 0 2.36 1.93 4.506 5.057 4.506 2.421 0 3.894-1.225 4.6-2.36 0 1.196.12 1.81.151 1.901h3.311c-.03-.153-.184-1.044-.184-2.392v-7.418c0-2.974-1.747-5.578-6.345-5.578zm41.043 0c-3.679 0-6.008 2.298-6.284 4.873l3.249.736c.153-1.502 1.196-2.697 3.066-2.697 1.962 0 2.82 1.01 2.82 2.267 0 .521-.245.952-1.103 1.074l-3.832.582c-2.544.368-4.506 1.84-4.506 4.506 0 2.36 1.932 4.506 5.058 4.506 2.422 0 3.893-1.225 4.598-2.36 0 1.196.122 1.81.152 1.901H128c-.03-.153-.184-1.044-.184-2.392v-7.418c0-2.974-1.747-5.578-6.345-5.578zm-8.393.275c-1.962 0-3.617.952-4.322 2.576v-2.39h-3.463v14.927h3.555v-7.111c0-2.79 1.257-4.385 4.015-4.385.368 0 .766.03 1.164.092v-3.615a5.036 5.036 0 00-.949-.094zM83.28 68v.674c0 2.912-1.716 3.863-3.709 3.863-1.41 0-2.177-.92-2.177-1.932 0-1.226.89-1.84 1.994-2.023L83.279 68zm41.043 0v.674c0 2.912-1.716 3.863-3.709 3.863-1.41 0-2.177-.92-2.177-1.932 0-1.226.89-1.84 1.994-2.023l3.892-.582z"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
icons/chakraui/chakraui-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0C28.65 0 0 28.65 0 64s28.65 64 64 64 64-28.65 64-64S99.35 0 64 0Zm29.56 57.9-.02.02-.01.01-49.13 46.38c-.2.2-.48.32-.79.32a1.129 1.129 0 0 1-.9-1.81s22.69-31.38 23.15-32c.46-.63 1.13-1.71-.75-1.71H35.14a.96.96 0 0 1-.96-.96c0-.27.12-.52.3-.69s43.94-43.77 43.94-43.77a1.082 1.082 0 0 1 1.84.77c0 .17-.04.32-.11.46s-15.5 28.27-16.11 29.4c-.61 1.13-.89 2.04.82 2.04h28.02a.913.913 0 0 1 .67 1.54Z"/></svg>
|
After Width: | Height: | Size: 479 B |
BIN
icons/chakraui/chakraui.eps
Normal file
1
icons/cloudrun/cloudrun-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#4285f4" d="m38.239 0 .513 1.462 21.927 62.505L38.239 128 128 63.967ZM0 .406l.268 1.02 16.455 62.541L0 127.598l23.207-11.048 16.529-52.583-16.528-52.582Zm1.493 1.79 20.9 9.89 16.309 51.881-16.308 51.883-20.9 9.95 16.251-61.833Zm38.705.406 86.11 61.365-86.11 61.43 21.526-61.43Z"/></svg>
|
After Width: | Height: | Size: 361 B |
1
icons/cloudrun/cloudrun-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#aecbfa" d="M128 63.965 38.957 0l22.26 63.966Z"/><path fill="#4285f4" d="M38.957 128 128 63.965H61.217zM16.696 63.965 0 128l22.332-10.718 16.625-53.317Z"/><path fill="#aecbfa" d="M22.332 10.649 0-.001l16.696 63.966h22.26Z"/></svg>
|
After Width: | Height: | Size: 305 B |
1
icons/cloudrun/cloudrun-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#4285f4" d="m0 0 16.695 63.967L0 128l22.332-10.717 16.625-53.316L22.332 10.65Zm38.957 0 22.26 63.967L38.957 128 128 63.967Z"/></svg>
|
After Width: | Height: | Size: 207 B |
1
icons/detaspace/detaspace-line-wordmark.svg
Normal file
After Width: | Height: | Size: 9.9 KiB |
1
icons/detaspace/detaspace-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M64.002 0c-35.34 0-64 28.66-64 64.002S28.662 128 64.002 128s63.996-28.656 63.996-63.996v-.002C127.998 28.662 99.344 0 64.002 0m0 .992c34.806 0 63.006 28.207 63.006 63.01v.002c0 34.804-28.201 63.004-63.006 63.004-34.803 0-63.01-28.2-63.01-63.006S29.2.992 64.002.992M63.998 12.7c-28.328 0-51.297 22.974-51.297 51.303 0 28.324 22.97 51.297 51.297 51.297 28.325 0 51.3-22.973 51.3-51.297 0-28.329-22.975-51.3-51.3-51.3zm0 .994c27.789 0 50.309 22.516 50.309 50.309 0 27.788-22.521 50.305-50.309 50.305-27.793 0-50.305-22.517-50.305-50.305 0-27.793 22.513-50.309 50.305-50.309m.004 11.711c-21.314 0-38.6 17.286-38.6 38.6 0 21.31 17.286 38.592 38.6 38.592 21.31 0 38.596-17.282 38.596-38.592 0-21.314-17.286-38.6-38.596-38.6m0 .992c20.773 0 37.603 16.83 37.603 37.608 0 20.773-16.83 37.6-37.603 37.6-20.778 0-37.607-16.827-37.607-37.6 0-20.778 16.83-37.608 37.607-37.608m-.004 11.706c-14.298 0-25.896 11.601-25.896 25.9 0 14.294 11.601 25.896 25.9 25.896 14.294 0 25.896-11.602 25.896-25.896 0-14.299-11.605-25.9-25.9-25.9m0 .992c13.758 0 24.908 11.146 24.908 24.908 0 13.757-11.147 24.904-24.904 24.904-13.762 0-24.908-11.147-24.908-24.904 0-13.762 11.142-24.908 24.904-24.908"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
icons/detaspace/detaspace-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M16.703 47.297c9.225 0 16.704 7.478 16.704 16.703s-7.479 16.703-16.704 16.703S0 73.225 0 64s7.478-16.703 16.703-16.703"/><path fill="#bd399c" d="M16.743 50.558c7.468 0 13.522 6.054 13.522 13.522S24.21 77.602 16.743 77.602 3.221 71.548 3.221 64.08s6.054-13.522 13.522-13.522"/><path fill="#93388e" d="M16.743 54.137c5.491 0 9.942 4.452 9.942 9.943s-4.451 9.942-9.942 9.942-9.942-4.451-9.942-9.942 4.45-9.943 9.942-9.943"/><path fill="#6030a2" d="M16.664 57.16a6.76 6.76 0 1 1 0 13.521 6.76 6.76 0 0 1 0-13.522z"/><path fill="#fdf3f8" d="M42.567 70.204V57.92h4.776c3.385 0 5.463 2.2 5.463 6.15 0 3.952-2.01 6.134-5.411 6.134zm2.044-10.549v8.814h2.629c2.749 0 3.522-2.045 3.522-4.398 0-2.354-.773-4.416-3.522-4.416zm13.528 9.33c1.495 0 2.096-.928 2.251-1.461h1.804c-.447 1.666-1.752 2.938-4.003 2.938-2.732 0-4.398-1.89-4.398-4.639 0-2.852 1.666-4.639 4.312-4.639 2.835 0 4.226 1.976 4.226 5.103h-6.734c0 1.477.945 2.697 2.542 2.697zm-.034-6.375c-1.46 0-2.508.98-2.508 2.337h4.93c0-1.357-.962-2.337-2.422-2.337m9.488.292h-1.65v4.76c0 .996.481 1.116 1.65 1.047v1.478a5.2 5.2 0 0 1-1.237.137c-1.444 0-2.234-.653-2.234-2.508v-4.914h-1.271v-1.477h1.271v-2.766h1.821v2.766h1.65zm6.67.825c0-.636-.378-1.117-1.58-1.117-1.444 0-1.977.447-2.062 1.58h-1.753c.086-1.683 1.168-3.006 3.814-3.006 1.942 0 3.385.74 3.385 3.076v4.174c0 .619.137.945.842.877v.859a2.7 2.7 0 0 1-1.048.189c-.963 0-1.41-.344-1.581-1.203h-.034c-.55.773-1.547 1.306-2.904 1.306-1.787 0-2.886-1.031-2.886-2.509 0-1.924 1.426-2.525 3.625-2.955 1.357-.257 2.182-.43 2.182-1.271m-2.526 5.309c1.495 0 2.526-.739 2.526-2.165v-1.323c-.292.206-.997.412-1.839.584-1.494.327-2.147.756-2.147 1.65 0 .807.481 1.254 1.46 1.254m14.343-6.15c2.629.67 4.622 1.236 4.622 3.985 0 1.959-1.478 3.59-4.57 3.59-3.007 0-5.292-1.563-5.412-4.346h2.045c.103 1.564 1.168 2.594 3.367 2.594 1.821 0 2.525-.807 2.525-1.752 0-1.46-1.048-1.735-3.47-2.337-1.924-.48-4.003-1.22-4.003-3.556 0-2.182 1.684-3.402 4.364-3.402 2.697 0 4.656 1.41 4.828 3.935H88.33c-.189-1.426-1.082-2.182-2.783-2.182-1.46 0-2.337.55-2.337 1.46 0 1.34 1.151 1.58 2.87 2.01zm10.58-1.702c2.234 0 3.9 1.753 3.9 4.639s-1.666 4.639-3.9 4.639c-1.374 0-2.233-.653-2.697-1.306h-.034v4.038h-1.821v-11.77h1.82v1.032h.035c.464-.619 1.323-1.272 2.698-1.272zm-.343 7.8c1.58 0 2.423-1.443 2.423-3.161s-.842-3.161-2.423-3.161c-1.46 0-2.371 1.202-2.371 3.161 0 1.941.91 3.161 2.371 3.161m10.864-5.257c0-.636-.378-1.117-1.58-1.117-1.444 0-1.976.447-2.062 1.58h-1.753c.086-1.683 1.169-3.006 3.814-3.006 1.942 0 3.385.74 3.385 3.076v4.174c0 .619.137.945.842.877v.859a2.7 2.7 0 0 1-1.048.189c-.962 0-1.409-.344-1.58-1.203h-.035c-.55.773-1.547 1.306-2.904 1.306-1.787 0-2.886-1.031-2.886-2.509 0-1.924 1.426-2.525 3.625-2.955 1.357-.257 2.182-.43 2.182-1.271m-2.526 5.309c1.495 0 2.526-.739 2.526-2.165v-1.323c-.292.206-.996.412-1.838.584-1.495.327-2.148.756-2.148 1.65 0 .807.481 1.254 1.46 1.254m12.275-4.398c-.069-.894-.636-1.976-2.182-1.976-1.77 0-2.525 1.512-2.525 3.161s.738 3.161 2.525 3.161c1.546 0 2.113-1.065 2.182-2.044h1.804c-.137 2.027-1.7 3.522-3.986 3.522-2.629 0-4.33-1.89-4.33-4.639s1.701-4.639 4.313-4.639c2.285 0 3.78 1.46 4.003 3.454zm6.878 4.346c1.495 0 2.096-.927 2.25-1.46h1.805c-.447 1.666-1.753 2.938-4.004 2.938-2.731 0-4.398-1.89-4.398-4.639 0-2.852 1.667-4.639 4.313-4.639 2.834 0 4.226 1.976 4.226 5.103h-6.735c0 1.477.945 2.697 2.543 2.697m-.034-6.374c-1.46 0-2.509.98-2.509 2.337h4.931c0-1.357-.962-2.337-2.422-2.337"/></svg>
|
After Width: | Height: | Size: 3.4 KiB |
1
icons/detaspace/detaspace-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M128 64.003C128 99.349 99.348 128 64.001 128c-35.345 0-64-28.65-64-63.998S28.657 0 64.002 0C99.35 0 128 28.657 128 64.002Zm0 0"/><path fill="#bd399c" d="M115.204 64.003c0 28.275-22.926 51.201-51.202 51.201-28.28 0-51.2-22.926-51.2-51.201 0-28.28 22.921-51.2 51.2-51.2 28.276 0 51.202 22.92 51.202 51.2m0 0"/><path fill="#93388e" d="M102.399 64.003c0 21.206-17.19 38.396-38.397 38.396-21.21 0-38.4-17.19-38.4-38.396 0-21.21 17.19-38.4 38.4-38.4 21.206 0 38.397 17.19 38.397 38.4m0 0"/><path fill="#6030a2" d="M89.603 64.003c0 14.135-11.465 25.6-25.6 25.6-14.14 0-25.601-11.465-25.601-25.6 0-14.14 11.46-25.6 25.6-25.6 14.136 0 25.601 11.46 25.601 25.6m0 0"/></svg>
|
After Width: | Height: | Size: 750 B |
1
icons/discloud/discloud-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#57f287" d="m27.593 54.125-4.298 4.143v-4.126l-7.683 3.723a3.254 3.254 0 0 1-3.263-.004l-5.345-3.105a4.655 4.655 0 0 0-4.657-.012 4.66 4.66 0 0 0-2.34 4.028L0 61.462v12.412l4.303-4.142v4.142l7.661-3.672a3.255 3.255 0 0 1 3.333-.037l5.298 3.08a4.658 4.658 0 0 0 6.996-4.015l.007-2.69zM22.96 67.42a1 1 0 0 1-1.473.882l-3.779-2.02a8.657 8.657 0 0 0-8.39.125L6.138 68.23c-.667.383-1.499-.099-1.499-.868v-6.725c0-.77.836-1.253 1.503-.866l3.146 1.822a8.657 8.657 0 0 0 8.45.127l3.745-2.022a1.001 1.001 0 0 1 1.476.88z"/><path d="M79.184 54.205V68.29c0 1.333.373 2.372 1.12 3.12.764.747 1.796 1.12 3.096 1.12.568 0 1.21-.089 1.925-.267l-.341-2.973a2.16 2.16 0 0 1-.683.097c-.487 0-.893-.138-1.218-.414-.325-.293-.488-.731-.488-1.316V54.205Zm45.404 0v7.75c-.958-1.17-2.282-1.755-3.972-1.755-1.609 0-2.949.6-4.021 1.803-1.072 1.186-1.609 2.664-1.609 4.435 0 1.771.537 3.258 1.609 4.46s2.412 1.803 4.02 1.803c1.69 0 3.015-.585 3.973-1.754v1.535H128V54.205Zm-86.177 1.194-6.604.024v17.059h6.604a9.447 9.447 0 0 0 3.265-.56 8.539 8.539 0 0 0 2.73-1.633c.796-.715 1.43-1.617 1.9-2.705.472-1.105.707-2.324.707-3.656 0-1.77-.406-3.314-1.218-4.63-.813-1.316-1.86-2.29-3.144-2.925-1.283-.65-2.697-.974-4.24-.974zm-.146 3.509c1.51 0 2.745.422 3.704 1.267.975.845 1.462 2.096 1.462 3.753s-.487 2.916-1.462 3.777c-.959.845-2.194 1.268-3.704 1.268h-2.876v-10.04Zm34.2 1.097c-1.787 0-3.322.633-4.606 1.9-1.267 1.251-1.901 2.762-1.901 4.533 0 1.771.634 3.282 1.9 4.533 1.285 1.235 2.82 1.852 4.607 1.852a6.5 6.5 0 0 0 2.948-.682 6.494 6.494 0 0 0 2.267-1.925l-2.73-1.999c-.26.439-.609.788-1.047 1.048-.44.26-.918.382-1.438.366-.926-.017-1.69-.317-2.291-.902-.585-.601-.877-1.357-.877-2.266 0-.926.292-1.69.877-2.291.601-.618 1.365-.918 2.29-.902 1.057.033 1.877.496 2.462 1.39l2.778-2.023a6.434 6.434 0 0 0-2.29-1.926 6.414 6.414 0 0 0-2.95-.706zm20.188 0c-1.788 0-3.323.633-4.606 1.9-1.268 1.251-1.901 2.762-1.901 4.533 0 1.771.633 3.282 1.9 4.533 1.284 1.235 2.82 1.852 4.607 1.852 1.787 0 3.314-.617 4.581-1.852 1.283-1.25 1.925-2.762 1.925-4.533 0-1.77-.642-3.282-1.925-4.533-1.267-1.267-2.794-1.9-4.581-1.9zm-33.256.073c-1.38 0-2.55.381-3.509 1.145-.958.764-1.438 1.706-1.438 2.827 0 1.43.69 2.453 2.072 3.07.471.196 1.04.342 1.706.44.682.08 1.25.13 1.706.145.47.017.877.114 1.218.293.341.162.512.414.512.755 0 .455-.187.813-.56 1.073-.374.243-.886.365-1.536.365-1.283 0-2.16-.528-2.632-1.584l-2.949.926c.374 1.04 1.065 1.869 2.072 2.486 1.023.601 2.177.902 3.46.902 1.593 0 2.9-.374 3.924-1.121 1.023-.764 1.535-1.763 1.535-2.998 0-1.413-.723-2.42-2.169-3.022-.503-.21-1.226-.357-2.169-.438-.942-.098-1.69-.228-2.242-.39-.552-.179-.828-.504-.828-.975 0-.374.17-.69.511-.95.358-.26.805-.39 1.34-.39.537 0 .984.146 1.341.438.358.276.593.65.707 1.121l2.9-.804c-.276-1.007-.853-1.811-1.73-2.413-.861-.6-1.942-.901-3.242-.901zm-10.438.34v12.064h3.338V60.419Zm51.996 0v6.264c0 1.885.472 3.347 1.414 4.387.959 1.04 2.226 1.56 3.802 1.56 1.51 0 2.705-.537 3.582-1.61h.049v1.463h3.363V60.419h-3.412v5.824c0 1.105-.244 1.958-.731 2.56-.488.6-1.162.9-2.023.9-.796 0-1.438-.292-1.925-.876-.471-.585-.707-1.422-.707-2.51v-5.898zm20.514 2.755c.877 0 1.616.317 2.218.95.6.618.901 1.39.901 2.315 0 .926-.3 1.706-.901 2.34-.602.617-1.34.926-2.218.926-.877 0-1.609-.309-2.193-.926-.585-.618-.878-1.397-.878-2.34 0-.942.293-1.722.878-2.34.584-.617 1.316-.925 2.193-.925zm-28.816.097c.828-.016 1.527.284 2.095.902.585.601.878 1.365.878 2.29 0 .91-.293 1.674-.878 2.291a2.694 2.694 0 0 1-2.095.878c-.829.016-1.536-.277-2.12-.878-.57-.617-.854-1.38-.854-2.29 0-.926.285-1.69.853-2.291.585-.618 1.292-.918 2.12-.902z"/></svg>
|
After Width: | Height: | Size: 3.6 KiB |
1
icons/discloud/discloud-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#57f287" d="m127.978 18.202-19.935 19.21V18.28L72.409 35.544a15.09 15.09 0 0 1-15.133-.017L32.484 21.125a21.59 21.59 0 0 0-21.599-.056A21.616 21.616 0 0 0 .033 39.753L0 52.226v57.571l19.957-19.21v19.21l35.534-17.03a15.097 15.097 0 0 1 15.454-.173l24.577 14.28a21.604 21.604 0 0 0 21.598.062 21.597 21.597 0 0 0 10.847-18.679L128 75.785ZM106.49 79.86c0 3.51-3.737 5.75-6.832 4.093L82.13 74.58a40.15 40.15 0 0 0-38.916.582l-14.74 8.458c-3.094 1.775-6.953-.46-6.953-4.026v-31.19c0-3.577 3.876-5.812 6.97-4.021l14.59 8.452a40.152 40.152 0 0 0 39.193.588l17.368-9.378c3.094-1.67 6.848.57 6.848 4.087z"/></svg>
|
After Width: | Height: | Size: 679 B |
1
icons/discloud/discloud-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#57f287" d="m27.594 54.125-4.3 4.143v-4.125l-7.683 3.722a3.254 3.254 0 0 1-3.261-.004l-5.346-3.105a4.655 4.655 0 0 0-4.656-.012 4.66 4.66 0 0 0-2.34 4.027L0 61.463v12.41l4.303-4.14v4.14l7.662-3.672a3.255 3.255 0 0 1 3.332-.037l5.299 3.08a4.658 4.658 0 0 0 6.996-4.014l.006-2.69-.004-12.415zm51.59.08V68.29c0 1.333.374 2.373 1.12 3.121.765.747 1.796 1.12 3.096 1.12.568 0 1.21-.088 1.924-.266l-.34-2.975a2.16 2.16 0 0 1-.683.098c-.487 0-.894-.138-1.219-.414-.325-.293-.486-.732-.486-1.317v-13.45h-3.412zm45.404 0v7.75c-.958-1.17-2.283-1.756-3.973-1.756-1.609 0-2.947.602-4.02 1.805-1.071 1.186-1.609 2.663-1.609 4.434 0 1.77.538 3.258 1.61 4.46s2.411 1.803 4.02 1.803c1.69 0 3.014-.585 3.972-1.754v1.535H128V54.205h-3.412zM38.41 55.398l-6.603.026v17.058h6.603a9.447 9.447 0 0 0 3.266-.56 8.539 8.539 0 0 0 2.73-1.633c.796-.715 1.43-1.617 1.9-2.705.473-1.105.708-2.324.708-3.656 0-1.77-.407-3.313-1.22-4.63-.812-1.315-1.86-2.29-3.144-2.925-1.283-.65-2.697-.975-4.24-.975zm-.144 3.51c1.51 0 2.744.423 3.703 1.268.975.845 1.463 2.095 1.463 3.752 0 1.657-.488 2.916-1.463 3.777-.96.845-2.193 1.268-3.703 1.268h-2.877v-10.04l2.877-.025zm-16.286.67a1.001 1.001 0 0 1 .979 1l.002 6.842a1 1 0 0 1-1.475.883l-3.779-2.022a8.657 8.657 0 0 0-8.389.125l-3.18 1.824c-.666.383-1.5-.1-1.5-.869v-6.724c0-.77.838-1.253 1.505-.866l3.144 1.823a8.657 8.657 0 0 0 8.451.127l3.744-2.024a1.001 1.001 0 0 1 .498-.119zm50.485.428c-1.787 0-3.322.631-4.606 1.898-1.267 1.251-1.902 2.763-1.902 4.533 0 1.771.634 3.283 1.9 4.534 1.285 1.235 2.82 1.851 4.608 1.851a6.5 6.5 0 0 0 2.947-.681 6.494 6.494 0 0 0 2.268-1.924l-2.73-2c-.26.439-.61.789-1.048 1.049-.44.26-.917.38-1.437.365-.926-.017-1.69-.317-2.291-.902-.585-.601-.877-1.357-.877-2.266 0-.926.292-1.69.877-2.291.6-.618 1.366-.918 2.29-.902 1.058.033 1.877.496 2.462 1.39l2.777-2.023a6.434 6.434 0 0 0-2.289-1.926 6.414 6.414 0 0 0-2.95-.705zm20.187 0c-1.788 0-3.322.631-4.605 1.898-1.268 1.251-1.9 2.763-1.9 4.533 0 1.771.633 3.283 1.9 4.534 1.284 1.235 2.818 1.851 4.605 1.851 1.787 0 3.315-.616 4.582-1.851 1.283-1.25 1.924-2.763 1.924-4.534 0-1.77-.64-3.282-1.924-4.533-1.267-1.267-2.795-1.898-4.582-1.898zm-33.256.072c-1.38 0-2.548.38-3.507 1.145-.958.764-1.44 1.707-1.44 2.828 0 1.43.69 2.451 2.072 3.068.471.196 1.042.344 1.708.442.682.08 1.249.13 1.705.144.47.017.877.114 1.218.293.341.162.512.415.512.756 0 .455-.187.812-.56 1.072-.374.243-.886.365-1.536.365-1.283 0-2.16-.528-2.632-1.584l-2.95.926c.374 1.04 1.066 1.87 2.073 2.487 1.023.6 2.178.902 3.46.902 1.594 0 2.9-.374 3.924-1.121 1.023-.764 1.536-1.763 1.536-2.998 0-1.413-.724-2.422-2.17-3.024-.503-.21-1.225-.356-2.168-.437-.942-.098-1.69-.229-2.243-.39-.552-.18-.828-.504-.828-.975 0-.374.17-.69.51-.95.358-.26.807-.39 1.342-.39.537 0 .983.145 1.34.437.358.276.593.65.707 1.121l2.9-.802c-.276-1.007-.853-1.812-1.73-2.414-.861-.6-1.943-.9-3.243-.9zm-10.437.34v12.064h3.338V60.42l-3.338-.002zm51.996 0v6.264c0 1.885.472 3.346 1.414 4.386.96 1.04 2.227 1.56 3.803 1.56 1.51 0 2.705-.535 3.582-1.608h.049v1.462h3.361V60.42h-3.41v5.822c0 1.105-.246 1.959-.733 2.56-.488.6-1.162.901-2.023.901-.796 0-1.437-.293-1.924-.877-.47-.585-.707-1.422-.707-2.51V60.42l-3.412-.002zm20.514 2.756c.877 0 1.617.316 2.219.949.6.618.9 1.39.9 2.314 0 .926-.3 1.706-.9 2.34-.603.617-1.341.926-2.22.926-.876 0-1.609-.309-2.193-.926-.585-.618-.877-1.397-.877-2.34 0-.941.292-1.721.877-2.34.584-.616 1.317-.923 2.194-.923zm-28.817.096c.828-.016 1.528.284 2.096.902.585.6.879 1.366.879 2.29 0 .91-.294 1.675-.879 2.292a2.694 2.694 0 0 1-2.096.877c-.829.016-1.535-.276-2.119-.877-.57-.617-.853-1.381-.853-2.291 0-.926.283-1.69.851-2.291.585-.618 1.293-.918 2.121-.902z"/></svg>
|
After Width: | Height: | Size: 3.6 KiB |
1
icons/fiber/fiber-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00acd7" d="M62.772 47.678c-2.217 0-4.23 1.637-4.562 3.752v.006c-.31 2.12 1.41 3.911 3.637 3.911 2.225 0 4.257-1.649 4.54-3.774.28-2.12-1.398-3.894-3.615-3.894zm0 .989c1.717 0 2.841 1.211 2.634 2.774-.207 1.558-1.836 2.918-3.559 2.918-1.718 0-2.882-1.238-2.66-2.775.245-1.568 1.868-2.918 3.585-2.918zm-25.665.941-.07.413-4.96 29.88h8.082l1.947-11.773H53.75l1.14-6.758H43.242l.812-5.021h12.914l1.142-6.74zm30.95 0-.07.413-4.95 29.878h7.925l.443-2.76c.87 1.7 2.617 3.072 5.473 3.072 4.986 0 9.591-3.903 10.995-11.163-.427 3.302.096 6.105 1.69 8.059 1.705 2.087 4.479 3.21 8.03 3.215 5.95 0 10.376-2.914 12.007-7.438l.232-.642-7.366-.213-.145.267c-.702 1.297-2.081 1.987-3.759 1.987-1.268 0-2.109-.362-2.61-.978-.479-.587-.668-1.492-.508-2.703h14.613l.34-2.16v-.004c.616-3.706-.026-6.673-1.694-8.707-1.67-2.034-4.325-3.08-7.55-3.08-6.659 0-11.748 4.548-13.098 11.237.485-3.61-.004-6.42-1.318-8.292-1.398-1.99-3.615-2.946-6.038-2.946-2.815 0-4.894 1.275-6.264 2.832l1.615-9.874zm-30.113.988H56.94l-.806 4.765H43.212l-1.133 6.997h11.644l-.806 4.782H41.269l-1.947 11.773h-6.079zm30.953 0h5.99l-1.814 11.088h1.019l.142-.25c1.076-1.898 3.181-3.796 6.465-3.796 2.17 0 4.025.811 5.23 2.526 1.203 1.714 1.767 4.393 1.134 8.186-1.203 7.314-5.578 10.874-10.185 10.874-3.135 0-4.544-1.65-5.013-3.505l-.095-.372h-1.077l-.573 3.564h-5.918zm56.621 6.042c-2.02 0-3.883.974-5.258 2.827l.428-2.532h-7.792l-3.825 22.964h7.997l2.044-12.344c.42-2.394 2.352-3.966 4.59-3.966.824 0 2.02.15 2.53.342l.562.21L128 57l-.446-.11a8.81 8.81 0 0 0-2.032-.253h-.002zm-68.088.295-.07.413-3.75 22.551h7.998l3.82-22.964zm-47.316.454-.147.208-2.377 3.371 25.607-.013.585-3.566zm115.4.24h.005c.454.003.9.087 1.347.169l-.869 5.125c-.728-.177-1.56-.322-2.294-.322-2.71 0-5.07 1.949-5.566 4.788v.002l-1.906 11.52h-5.992l3.495-20.988h5.785l-.677 4.006h1.133l.13-.29c1.243-2.771 3.2-4.01 5.41-4.01zm-24.36.013c3.013 0 5.335.95 6.785 2.717 1.45 1.767 2.067 4.406 1.482 7.923v.002l-.209 1.332H94.585l-.116.67v.003c-.235 1.485-.012 2.748.716 3.641.728.894 1.913 1.344 3.377 1.344 1.82 0 3.415-.812 4.357-2.24l5.394.156c-1.664 3.723-5.409 6.146-10.72 6.146-3.347-.005-5.782-1.034-7.265-2.85-1.483-1.817-2.056-4.482-1.478-7.897v-.002h.002c1.096-6.61 5.904-10.945 12.302-10.945zm-42.886.281h5.992L60.77 78.91h-5.993zm-47.641.454H32.62l-.26 1.59-22.864.013zm89.882 3.327c-2.504 0-4.692 1.83-5.245 4.232l-.14.604h9.083l.067-.417c.197-1.236-.077-2.36-.758-3.163-.682-.803-1.747-1.256-3.007-1.256zm-23.2.418c-1.424 0-2.686.637-3.625 1.731-.938 1.095-1.575 2.634-1.871 4.497-.3 1.84-.183 3.4.413 4.56.595 1.16 1.73 1.862 3.158 1.862 1.435 0 2.694-.662 3.622-1.772.928-1.11 1.552-2.657 1.845-4.496.293-1.836.193-3.382-.39-4.535-.582-1.153-1.71-1.847-3.153-1.847zm23.2.57c1.029 0 1.78.347 2.254.907.402.473.564 1.154.525 1.953H96.48c.656-1.635 2.236-2.86 4.03-2.86zm-97.91.07-.148.202L0 66.329l32.39-.023.587-3.547Zm74.71.348c1.154 0 1.833.44 2.27 1.305.438.865.569 2.223.296 3.935-.272 1.707-.85 3.087-1.627 4.015-.776.929-1.724 1.419-2.864 1.419-1.132 0-1.828-.449-2.279-1.326-.45-.877-.595-2.242-.316-3.952v-.002c.275-1.729.862-3.095 1.644-4.008.782-.913 1.737-1.386 2.875-1.386zm-74.206.64h28.708l-.258 1.57-29.61.023zm15.596 4.382-.147.223-2.2 3.356 15.234-.01.582-3.57zm.533.988h11.773l-.26 1.594-12.563.01z"/></svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
icons/fiber/fiber-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#333" d="M62.55 47.98c-1.99 0-3.83 1.512-4.122 3.376-.272 1.851 1.19 3.386 3.187 3.386 1.998 0 3.85-1.523 4.098-3.387.247-1.863-1.171-3.374-3.162-3.374zm-25.552 1.954-4.924 29.66h7.166l1.97-11.916h11.788l.984-5.84H42.195l.985-6.082h13.074l.986-5.822H36.998zm31.326 0-4.916 29.658h7.006l.58-3.608h.276c.52 2.057 2.2 3.924 5.558 3.924 4.924 0 9.557-3.851 10.803-11.424 1.31-7.847-2.287-11.423-6.936-11.423-3.518 0-5.82 2.053-6.978 4.095h-.152l1.837-11.222h-7.078zm57.735 7.115c-2.433 0-4.618 1.414-5.936 4.353h-.23l.685-4.054h-6.87l-3.706 22.242h7.08l1.998-12.076c.462-2.65 2.636-4.432 5.14-4.432.884 0 2.086.131 2.737.377L128 57.291a8.417 8.417 0 0 0-1.941-.242zm-24.66.014c-6.705 0-11.804 4.604-12.946 11.495-1.202 7.107 2.359 11.451 9.342 11.461 5.861 0 10.105-2.823 11.682-7.197l-6.457-.187c-.808 1.49-2.405 2.273-4.245 2.273-2.765 0-4.096-1.643-3.648-4.467l.045-.26h14.81l.278-1.767c1.216-7.313-2.548-11.352-8.862-11.352zm-43.83.285L53.866 79.59h7.082l3.7-22.242h-7.08zm43.177 4.826c2.316 0 3.679 1.622 3.317 3.894h-8.14c.508-2.2 2.535-3.894 4.823-3.894zm-23.482.424c2.628 0 3.664 2.29 3.092 5.88-.572 3.59-2.434 5.922-5.04 5.922-2.592 0-3.706-2.326-3.12-5.922.578-3.634 2.475-5.88 5.068-5.88z"/><path fill="#00acd7" d="m9.514 57.807-1.85 2.623 24.53-.014.427-2.61H9.514zm-7.612 5.437L0 65.857l31.377-.023.428-2.59H1.902zm16.31 5.436-1.718 2.623 14.066-.01.428-2.613H18.213z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
1
icons/fiber/fiber-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00acd7" d="M62.55 47.98c-1.99 0-3.83 1.512-4.122 3.376-.272 1.851 1.19 3.386 3.187 3.386 1.998 0 3.85-1.523 4.098-3.387.247-1.863-1.171-3.374-3.162-3.374zm-25.552 1.954-4.924 29.66h7.166l1.97-11.916h11.788l.984-5.84H42.195l.985-6.082h13.074l.986-5.822H36.998zm31.326 0-4.916 29.658h7.006l.58-3.608h.276c.52 2.057 2.2 3.924 5.558 3.924 4.924 0 9.557-3.851 10.803-11.424 1.31-7.847-2.287-11.423-6.936-11.423-3.518 0-5.82 2.053-6.978 4.095h-.152l1.837-11.222h-7.078zm57.735 7.115c-2.433 0-4.618 1.414-5.936 4.353h-.23l.685-4.054h-6.87l-3.706 22.242h7.08l1.998-12.076c.462-2.65 2.636-4.432 5.14-4.432.884 0 2.086.131 2.737.377L128 57.291a8.417 8.417 0 0 0-1.941-.242zm-24.66.014c-6.705 0-11.804 4.604-12.946 11.495-1.202 7.107 2.359 11.451 9.342 11.461 5.861 0 10.105-2.823 11.682-7.197l-6.457-.187c-.808 1.49-2.405 2.273-4.245 2.273-2.765 0-4.096-1.643-3.648-4.467l.045-.26h14.81l.278-1.767c1.216-7.313-2.548-11.352-8.862-11.352zm-43.83.285L53.866 79.59h7.082l3.7-22.242h-7.08zm-48.055.459-1.85 2.623 24.53-.014.427-2.61H9.514zm91.232 4.367c2.316 0 3.679 1.622 3.317 3.894h-8.14c.508-2.2 2.535-3.894 4.823-3.894zm-23.482.424c2.628 0 3.664 2.29 3.092 5.88-.572 3.59-2.434 5.922-5.04 5.922-2.592 0-3.706-2.326-3.12-5.922.578-3.634 2.475-5.88 5.068-5.88zm-75.362.646L0 65.857l31.377-.023.428-2.59H1.902zm16.31 5.436-1.718 2.623 14.067-.01.427-2.613H18.213z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
1
icons/filamentphp/filamentphp-original.svg
Normal file
After Width: | Height: | Size: 5.0 KiB |
1
icons/forgejo/forgejo-line-wordmark.svg
Normal file
After Width: | Height: | Size: 10 KiB |
1
icons/forgejo/forgejo-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#FF5500" d="M89.258 0c-5.766 0-10.813 3.172-13.582 7.824h-6.88c-20.952 0-38.105 17.153-38.105 38.106v52.61c-4.652 2.776-7.82 7.82-7.82 13.581 0 8.692 7.145 15.848 15.84 15.848s15.84-7.153 15.84-15.848c0-5.766-3.172-10.812-7.824-13.582V86.848c0-12.282 9.785-22.067 22.07-22.067h6.879c2.77 4.653 7.816 7.824 13.582 7.824 8.691 0 15.84-7.152 15.84-15.843 0-8.688-7.145-15.84-15.84-15.84-5.766 0-10.813 3.172-13.582 7.824h-6.88c-8.222 0-15.827 2.691-22.07 7.172V45.93c-.062-12.22 9.848-22.133 22.067-22.067h6.883c2.77 4.653 7.816 7.825 13.582 7.825 8.695 0 15.84-7.153 15.84-15.844C105.098 7.152 97.953 0 89.258 0Zm0 .992c8.148 0 14.847 6.707 14.847 14.852 0 8.148-6.699 14.851-14.847 14.851-5.508 0-10.348-3.07-12.91-7.574l-.141-.25h-7.41c-12.758-.066-23.129 10.3-23.063 23.063v11.882l.793-.601c6.215-4.692 13.93-7.477 22.27-7.477h7.41l.14-.25c2.563-4.504 7.403-7.574 12.91-7.574 8.15 0 14.848 6.703 14.848 14.848 0 8.148-6.703 14.851-14.847 14.851-5.508 0-10.348-3.07-12.91-7.574l-.141-.25h-7.41a22.966 22.966 0 0 0-23.063 23.059V99.07l.254.145c4.5 2.562 7.57 7.394 7.57 12.906 0 8.152-6.695 14.856-14.847 14.856-8.148 0-14.848-6.707-14.848-14.856 0-5.508 3.067-10.34 7.57-12.906l.25-.145V45.93c0-20.41 16.704-37.114 37.114-37.114h7.41l.14-.25C78.91 4.062 83.75.992 89.258.992Zm0 8.035c-3.774-.039-6.852 3.043-6.813 6.817-.035 3.773 3.043 6.855 6.817 6.816 3.804-.004 6.808-3.012 6.808-6.816 0-3.801-3.004-6.813-6.808-6.817Zm-.008.993h.008c3.289 0 5.82 2.539 5.82 5.824 0 3.289-2.531 5.824-5.82 5.824h-.008a5.746 5.746 0 0 1-5.813-5.816v-.012a5.745 5.745 0 0 1 5.813-5.82Zm.008 39.93c-3.774-.036-6.848 3.042-6.813 6.812-.039 3.773 3.04 6.851 6.813 6.808 3.773.043 6.855-3.035 6.812-6.808 0-3.797-3.004-6.809-6.808-6.813Zm-.008.991h.008c3.289 0 5.82 2.54 5.82 5.82v.009a5.737 5.737 0 0 1-5.816 5.812h-.012a5.736 5.736 0 0 1-5.813-5.812v-.012a5.744 5.744 0 0 1 5.813-5.817ZM38.707 105.31c-3.8.004-6.809 3.011-6.809 6.816 0 3.805 3.008 6.816 6.813 6.816 3.797 0 6.809-3.007 6.809-6.812v-.004c.039-3.77-3.036-6.852-6.81-6.816Zm.004.992h.008a5.745 5.745 0 0 1 5.808 5.816v.008c0 3.285-2.539 5.824-5.816 5.824-3.29 0-5.82-2.539-5.82-5.824 0-3.29 2.53-5.824 5.82-5.824Zm0 0"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
icons/forgejo/forgejo-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M19.73 40.855c-1.645 0-3.09.902-3.867 2.238h-1.852a11.81 11.81 0 0 0-11.773 11.77v19.07h4.477v-19.07a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238 4.5 4.5 0 0 0 4.477-4.477 4.5 4.5 0 0 0-4.477-4.477zm0 2.652c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm83.207 10.211c-2.195 0-4.004 1.809-4.004 4.004a4.03 4.03 0 0 0 4.004 4.008c2.199 0 4.004-1.809 4.004-4.008s-1.805-4.004-4.004-4.004zm0 2.289a1.7 1.7 0 1 1 0 3.434c-.961 0-1.715-.754-1.715-1.719s.754-1.715 1.715-1.715zM32.359 59.57c-1.977 0-3.73.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.875 1.504-1.316 3.246-1.316 5.223 0 1.957.441 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.227-1.277a9.53 9.53 0 0 0 3.645-3.605c.875-1.531 1.316-3.27 1.316-5.227 0-1.977-.441-3.719-1.316-5.223-.879-1.527-2.094-2.719-3.645-3.57-1.531-.879-3.27-1.316-5.227-1.316zm23.191 0c-1.93 0-3.547.391-4.848 1.164a6.17 6.17 0 0 0-2.48 2.602v-3.578h-3.008v19.844h3.156v-9.996c0-2.254.578-3.984 1.73-5.187 1.152-1.227 2.719-1.84 4.695-1.84.125 0 .25.012.379.035.125 0 .25.016.375.039zm10.652 0c-1.906 0-3.621.402-5.148 1.203-1.504.801-2.695 1.93-3.574 3.383-.875 1.43-1.312 3.094-1.312 5s.438 3.582 1.313 5.035a9.36 9.36 0 0 0 3.574 3.418c1.527.801 3.242 1.203 5.148 1.203 1.727 0 3.281-.363 4.66-1.09.84-.437 1.578-1 2.215-1.691l-.098 1.355c-.172 2.348-.578 4.094-1.73 5.223-1.152 1.152-2.945 1.727-5.375 1.727a13.09 13.09 0 0 1-4.281-.711c-1.355-.477-2.496-1.129-3.422-1.957l-1.578 2.445c1.078.949 2.457 1.676 4.133 2.18 1.703.523 3.457.789 5.262.789 3.332 0 5.852-.816 7.555-2.445 1.703-1.602 2.555-4.133 2.555-7.59 0-4.766.625-10.625-1.227-13.191-.828-1.43-1.941-2.492-3.348-3.195-1.375-.727-3.594-1.09-5.32-1.09zm51.547 0c-1.98 0-3.734.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.879 1.504-1.316 3.246-1.316 5.223 0 1.957.438 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.223-1.277c1.555-.875 2.77-2.078 3.648-3.605s1.313-3.27 1.313-5.227c0-1.977-.437-3.719-1.312-5.223-.879-1.527-2.094-2.719-3.648-3.57-1.527-.879-3.27-1.316-5.223-1.316zm-28.895.043c-1.906 0-3.609.441-5.109 1.316-1.48.852-2.645 2.043-3.496 3.57s-1.277 3.27-1.277 5.223.438 3.695 1.313 5.227c.902 1.527 2.145 2.73 3.723 3.605 1.602.852 3.445 1.277 5.523 1.277 1.629 0 3.105-.273 4.434-.824s2.418-1.355 3.27-2.406l-1.727-2.027c-.727.852-1.59 1.488-2.594 1.914-1.004.402-2.105.602-3.309.602-1.5 0-2.828-.301-3.98-.902a6.91 6.91 0 0 1-2.672-2.629c-.199-.371-.367-.762-.504-1.176l16.066-3.148c-.051-1.93-.516-3.605-1.391-5.035-.852-1.453-1.992-2.582-3.422-3.383s-3.043-1.203-4.848-1.203zm0 2.707c1.301 0 2.457.301 3.457.902a6.09 6.09 0 0 1 2.332 2.367 6.39 6.39 0 0 1 .73 1.98l-13.34 2.574a10.36 10.36 0 0 1-.02-.609c0-1.453.289-2.719.863-3.793s1.379-1.918 2.406-2.52c1.051-.602 2.242-.902 3.57-.902zm-56.496.031c1.355 0 2.559.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.051.602-2.254.902-3.609.902s-2.555-.301-3.605-.902c-1.055-.625-1.891-1.492-2.52-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.629-1.102 1.465-1.953 2.52-2.555s2.254-.902 3.605-.902zm33.813 0c1.402 0 2.641.289 3.719.863 1.078.555 1.918 1.344 2.52 2.371.625 1.023.938 2.215.938 3.57s-.312 2.555-.937 3.605c-.602 1.027-1.441 1.828-2.52 2.406s-2.316.863-3.719.863c-1.379 0-2.605-.289-3.684-.863s-1.93-1.379-2.555-2.406c-.602-1.051-.902-2.254-.902-3.605s.301-2.547.902-3.57c.625-1.027 1.477-1.816 2.555-2.371 1.078-.574 2.305-.863 3.684-.863zm51.578 0c1.352 0 2.555.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.055.602-2.258.902-3.609.902s-2.555-.301-3.609-.902c-1.051-.625-1.891-1.492-2.516-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.625-1.102 1.465-1.953 2.516-2.555s2.258-.902 3.609-.902zm-16.215.723v17.73c0 1.203-.273 2.105-.824 2.707-.527.602-1.293.902-2.293.902-1.23 0-2.23-.312-3.008-.941l-1.051 2.367c.5.426 1.125.738 1.879.941s1.539.301 2.367.301c1.953 0 3.457-.566 4.508-1.691s1.578-2.656 1.578-4.586v-17.73zm0 0" fill="#ff5500"/><path d="M19.73 53.246a4.49 4.49 0 0 0-3.867 2.238h-1.852c-6.477 0-11.773 5.301-11.773 11.773v4.711C.906 72.75 0 74.195 0 75.84a4.5 4.5 0 0 0 4.477 4.477 4.5 4.5 0 0 0 4.477-4.477c0-1.645-.902-3.09-2.238-3.871v-4.711a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238c2.457 0 4.477-2.023 4.477-4.48a4.5 4.5 0 0 0-4.477-4.477zm0 2.656c1.023 0 1.824.801 1.824 1.82s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.82 1.824-1.82zM4.477 74.016c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm0 0" fill="#cc0000"/></svg>
|
After Width: | Height: | Size: 4.7 KiB |
1
icons/forgejo/forgejo-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M89.457 0C83.719 0 78.68 3.195 76.012 7.887h-7.176c-20.844 0-37.902 17.059-37.902 37.902v59.438h15.16V45.789a22.62 22.62 0 0 1 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.488 0 15.465-6.98 15.465-15.465S97.945 0 89.457 0zm0 9.098c3.574 0 6.367 2.797 6.367 6.371s-2.793 6.367-6.367 6.367a6.3 6.3 0 0 1-6.367-6.367 6.3 6.3 0 0 1 6.367-6.371zm0 0" fill="#ff6600"/><path d="M89.457 41.242c-5.738 0-10.777 3.195-13.445 7.883h-7.176c-20.844 0-37.902 17.063-37.902 37.902v12.027c-4.691 2.672-7.883 7.711-7.883 13.445 0 8.488 6.977 15.469 15.465 15.469s15.465-6.98 15.465-15.469c0-5.738-3.199-10.777-7.887-13.445V87.027c0-12.645 10.094-22.738 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.484 0 15.465-6.98 15.465-15.465s-6.977-15.465-15.465-15.465zm0 9.098c3.574 0 6.367 2.797 6.367 6.367s-2.793 6.363-6.367 6.363-6.367-2.793-6.367-6.363a6.3 6.3 0 0 1 6.367-6.367zm-50.941 55.793c3.566 0 6.363 2.801 6.363 6.367 0 3.574-2.797 6.371-6.363 6.371-3.574 0-6.367-2.797-6.367-6.371s2.793-6.367 6.367-6.367zm0 0" fill="#d40000"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
icons/forgejo/forgejo-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#FF5500" d="M19.73 40.855c-1.645 0-3.09.902-3.867 2.238h-1.852a11.81 11.81 0 0 0-11.773 11.77v17.105C.906 72.75 0 74.195 0 75.84a4.5 4.5 0 0 0 4.477 4.477 4.5 4.5 0 0 0 4.477-4.477c0-1.645-.902-3.09-2.238-3.871v-4.711a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238 4.5 4.5 0 0 0 4.477-4.477 4.5 4.5 0 0 0-4.477-4.477c-1.645 0-3.09.902-3.867 2.238h-1.852a11.71 11.71 0 0 0-7.297 2.551v-3.176a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238 4.5 4.5 0 0 0 4.477-4.477 4.5 4.5 0 0 0-4.477-4.477zm0 2.652c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm83.207 10.211a4.03 4.03 0 0 0-4.004 4.008c0 2.195 1.809 4.004 4.004 4.004s4.004-1.809 4.004-4.004-1.805-4.008-4.004-4.008zM19.73 55.902c1.023 0 1.824.801 1.824 1.824s-.801 1.82-1.824 1.82-1.824-.801-1.824-1.82.801-1.824 1.824-1.824zm83.207.105a1.7 1.7 0 1 1 0 3.434c-.961 0-1.715-.754-1.715-1.715s.754-1.719 1.715-1.719zM32.359 59.57c-1.977 0-3.73.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.875 1.504-1.316 3.246-1.316 5.223 0 1.957.441 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.227-1.277c1.551-.875 2.766-2.078 3.645-3.609s1.316-3.266 1.316-5.223c0-1.977-.441-3.719-1.316-5.223-.879-1.527-2.094-2.719-3.645-3.57-1.531-.879-3.27-1.316-5.227-1.316zm23.191 0c-1.93 0-3.547.391-4.848 1.164a6.17 6.17 0 0 0-2.48 2.602v-3.578h-3.008v19.844h3.156v-9.996c0-2.254.578-3.984 1.73-5.187 1.152-1.227 2.719-1.84 4.695-1.84.125 0 .25.012.379.035.125 0 .25.016.375.039zm10.652 0c-1.906 0-3.621.402-5.148 1.203-1.504.801-2.695 1.93-3.574 3.383-.875 1.43-1.312 3.094-1.312 5s.438 3.582 1.313 5.035a9.36 9.36 0 0 0 3.574 3.418c1.527.805 3.242 1.203 5.148 1.203 1.727 0 3.281-.363 4.66-1.09.84-.437 1.578-1 2.215-1.691l-.098 1.355c-.172 2.348-.578 4.094-1.73 5.223-1.152 1.152-2.945 1.727-5.375 1.727a12.99 12.99 0 0 1-4.281-.711c-1.355-.477-2.496-1.129-3.422-1.957l-1.578 2.445c1.078.953 2.457 1.676 4.133 2.18 1.703.523 3.457.789 5.262.789 3.332 0 5.852-.816 7.555-2.445 1.703-1.602 2.555-4.133 2.555-7.59 0-4.766.625-10.625-1.227-13.191-.828-1.43-1.941-2.492-3.348-3.195-1.375-.727-3.594-1.09-5.32-1.09zm51.547 0c-1.98 0-3.734.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.879 1.504-1.316 3.246-1.316 5.223 0 1.957.438 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.223-1.277c1.555-.875 2.77-2.078 3.648-3.609s1.313-3.266 1.313-5.223c0-1.977-.437-3.719-1.312-5.223-.879-1.527-2.094-2.719-3.648-3.57-1.527-.879-3.27-1.316-5.223-1.316zm-28.895.043c-1.906 0-3.609.441-5.109 1.316-1.48.852-2.645 2.043-3.496 3.57s-1.277 3.27-1.277 5.223.438 3.695 1.313 5.227c.902 1.527 2.145 2.73 3.723 3.605 1.602.855 3.445 1.277 5.523 1.277 1.629 0 3.105-.273 4.434-.824s2.418-1.352 3.27-2.406l-1.727-2.027c-.727.852-1.59 1.488-2.594 1.914-1.004.402-2.105.602-3.309.602-1.5 0-2.828-.301-3.98-.902a6.91 6.91 0 0 1-2.672-2.629c-.199-.371-.367-.762-.504-1.176l16.066-3.148c-.051-1.93-.516-3.605-1.391-5.035-.852-1.453-1.992-2.582-3.422-3.383s-3.043-1.203-4.848-1.203zm0 2.707c1.301 0 2.457.301 3.457.902 1.004.578 1.777 1.363 2.332 2.367a6.39 6.39 0 0 1 .73 1.98l-13.34 2.574a10.36 10.36 0 0 1-.02-.609c0-1.453.289-2.719.863-3.793s1.379-1.918 2.406-2.52c1.051-.602 2.242-.902 3.57-.902zm-56.496.031c1.355 0 2.559.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.051.602-2.254.902-3.609.902s-2.555-.301-3.605-.902c-1.055-.625-1.891-1.492-2.52-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.629-1.102 1.465-1.953 2.52-2.555s2.254-.902 3.605-.902zm33.813 0c1.402 0 2.641.289 3.719.863 1.078.555 1.918 1.34 2.52 2.367.625 1.027.938 2.219.938 3.574s-.312 2.555-.937 3.605c-.602 1.027-1.441 1.828-2.52 2.406s-2.316.863-3.719.863c-1.379 0-2.605-.289-3.684-.863s-1.93-1.379-2.555-2.406c-.602-1.051-.902-2.254-.902-3.605s.301-2.547.902-3.574c.625-1.027 1.477-1.812 2.555-2.367 1.078-.574 2.305-.863 3.684-.863zm51.578 0c1.352 0 2.555.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.055.602-2.258.902-3.609.902s-2.555-.301-3.609-.902c-1.051-.625-1.891-1.492-2.516-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.625-1.102 1.465-1.953 2.516-2.555s2.258-.902 3.609-.902zm-16.215.723v17.73c0 1.203-.273 2.105-.824 2.707-.527.602-1.293.902-2.293.902-1.23 0-2.23-.312-3.008-.941l-1.051 2.367c.5.426 1.125.738 1.879.941s1.539.301 2.367.301c1.953 0 3.457-.566 4.508-1.691s1.578-2.656 1.578-4.586v-17.73zM4.477 74.016c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm0 0"/></svg>
|
After Width: | Height: | Size: 4.7 KiB |
1
icons/forgejo/forgejo-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#FF5500" d="M89.457 0C83.719 0 78.68 3.195 76.012 7.887h-7.176c-20.844 0-37.902 17.059-37.902 37.902v41.238 12.027c-4.691 2.672-7.883 7.709-7.883 13.443 0 8.488 6.977 15.471 15.465 15.471s15.465-6.982 15.465-15.471c0-5.738-3.199-10.775-7.887-13.443V87.027c0-12.645 10.094-22.738 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.484 0 15.465-6.98 15.465-15.465s-6.977-15.465-15.465-15.465c-5.738 0-10.777 3.195-13.445 7.883h-7.176c-8.515 0-16.396 2.849-22.742 7.639V45.789a22.62 22.62 0 0 1 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.488 0 15.465-6.98 15.465-15.465S97.945 0 89.457 0zm0 9.098c3.574 0 6.367 2.797 6.367 6.371s-2.793 6.367-6.367 6.367a6.3 6.3 0 0 1-6.367-6.367 6.3 6.3 0 0 1 6.367-6.371zm0 41.242c3.574 0 6.367 2.797 6.367 6.367a6.29 6.29 0 0 1-6.367 6.363 6.29 6.29 0 0 1-6.367-6.363 6.3 6.3 0 0 1 6.367-6.367zm-50.941 55.793a6.3 6.3 0 0 1 6.363 6.367c0 3.574-2.797 6.371-6.363 6.371-3.574 0-6.367-2.797-6.367-6.371s2.793-6.367 6.367-6.367z"/></svg>
|
After Width: | Height: | Size: 1.0 KiB |
1
icons/gardener/gardener-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#009f76" d="M64 1.267c-.577 0-1.155.128-1.688.386L14.105 24.96a3.9 3.9 0 0 0-2.102 2.644L.097 79.97v.002a3.9 3.9 0 0 0 .75 3.297l33.358 41.994a3.89 3.89 0 0 0 3.043 1.471h53.504a3.89 3.89 0 0 0 3.043-1.47l33.358-41.995a3.9 3.9 0 0 0 .75-3.297l-11.906-52.366v-.002a3.9 3.9 0 0 0-2.102-2.644L65.689 1.653A3.9 3.9 0 0 0 64 1.267m0 1.969c.285 0 .567.063.83.19l48.207 23.306c.528.255.91.733 1.04 1.308l11.906 52.368a1.94 1.94 0 0 1-.373 1.636L92.252 124.04c-.365.46-.916.725-1.5.725H37.248a1.91 1.91 0 0 1-1.5-.725L2.39 82.044a1.94 1.94 0 0 1-.373-1.636v-.002l11.905-52.364a1.93 1.93 0 0 1 1.04-1.31L63.17 3.426a1.9 1.9 0 0 1 .831-.19zm17.835 31.942-.994.597-19.806 11.898-17.078-11.081-.444 1.115a5.4 5.4 0 0 0-.38 1.987v16.16l-9.172-5.116-.456.939a5.4 5.4 0 0 0-.538 2.344v29.94c0 .688.328 1.273.573 1.887l-.294.148.613.927c.07.107.11.152.106.145v.002q.08.113.18.242.134.164.255.292.062.07.178.187c.122.119.239.217.34.302.014.01.065.058.162.132.17.13.353.258.556.375l25.827 14.97a5.33 5.33 0 0 0 5.345 0L92.637 88.6c.27-.156.5-.33.706-.498.083-.068.147-.129.198-.175a5 5 0 0 0 .438-.448c.024-.027.08-.085.158-.183.17-.213.331-.445.475-.7.065-.115.077-.153.052-.105q.178-.332.306-.68c-.038.103-.017.071.042-.101l.28-.816-.136-.069c.05-.288.148-.56.148-.863V54.02c0-.678-.126-1.342-.367-1.958l-.415-1.061-11.878 6.796V38.24c0-.69-.133-1.363-.38-1.985zm-1.171 3.002c0 .021.011.04.011.06v20.264q-.001.421-.104.827l-.561 2.242 13.313-7.617c0 .022.012.042.012.065v29.94c0 .373-.068.74-.192 1.103l-.023.067v.002a4 4 0 0 1-.19.43q-.084.157-.033.068a3.4 3.4 0 0 1-.302.442l-.1.114a3.4 3.4 0 0 1-.402.392 3.4 3.4 0 0 1-.445.318L65.82 101.866a3.35 3.35 0 0 1-3.367 0l-25.827-14.97a3 3 0 0 1-.352-.236 1 1 0 0 0-.1-.087 4 4 0 0 1-.216-.188l-.002-.002-.11-.117a4 4 0 0 1-.16-.185l-.093-.123-.083-.125a3.4 3.4 0 0 1-.573-1.871V54.02c0-.152.079-.283.098-.43l10.068 5.615V39.694l.002-.012 15.892 10.314z"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
icons/gardener/gardener-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#009f76" fill-rule="evenodd" d="M62.72 1.58a2.94 2.94 0 0 1 2.56 0l48.958 23.67a2.96 2.96 0 0 1 1.596 2.008l12.092 53.184c.2.88-.01 1.801-.57 2.506l-33.88 42.65a2.95 2.95 0 0 1-2.306 1.115H36.83c-.898 0-1.746-.41-2.306-1.115L.644 82.948a2.97 2.97 0 0 1-.57-2.506l12.092-53.184a2.96 2.96 0 0 1 1.596-2.009z" clip-rule="evenodd"/><path fill="#007155" d="M45.023 37.91 4.066 62.885.074 80.443c-.2.88.01 1.802.57 2.506l33.88 42.649a2.95 2.95 0 0 0 2.306 1.115h11.941l44.405-39.318Z"/><path fill="url(#a)" fill-rule="evenodd" d="M81.62 36.192c.205.516.315 1.074.315 1.646v20.58a4.45 4.45 0 0 1-2.001 3.716L65.05 71.916a4.41 4.41 0 0 1-4.847 0l-14.884-9.782a4.44 4.44 0 0 1-1.938-2.972z" clip-rule="evenodd"/><path fill="url(#b)" fill-rule="evenodd" d="M81.822 62.13a4.4 4.4 0 0 1-1.4 1.48L65.54 73.392a4.41 4.41 0 0 1-4.847 0L45.808 63.61a4.45 4.45 0 0 1-2-3.717V39.314c0-.573.11-1.132.315-1.649z" clip-rule="evenodd"/><path fill="url(#c)" fill-rule="evenodd" d="M33.93 51.92a4.45 4.45 0 0 0-.447 1.946v30.407c0 1.586.843 3.053 2.212 3.847l26.23 15.203a4.41 4.41 0 0 0 4.426 0L92.58 88.12a4.44 4.44 0 0 0 1.97-2.398z" clip-rule="evenodd"/><path fill="url(#d)" fill-rule="evenodd" d="M34.222 86.73a4.4 4.4 0 0 0 1.473 1.39l26.23 15.203a4.41 4.41 0 0 0 4.426 0L92.58 88.12a4.45 4.45 0 0 0 2.213-3.847V53.865c0-.564-.107-1.114-.306-1.623z" clip-rule="evenodd"/><defs><linearGradient id="a" x1="239.57" x2="174.075" y1="110.714" y2="205.455" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient><linearGradient id="b" x1="235.479" x2="150.083" y1="145.405" y2="299.227" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient><linearGradient id="c" x1="49.799" x2="124.559" y1="160.303" y2="281.373" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient><linearGradient id="d" x1="75.195" x2="168.121" y1="216.138" y2="394.367" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient></defs></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
icons/gardener/gardener-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#009f76" d="M64 1.287c-.438 0-.875.098-1.28.293L13.763 25.25a2.96 2.96 0 0 0-1.596 2.008L.074 80.44c-.2.88.01 1.802.57 2.506l33.88 42.65a2.95 2.95 0 0 0 2.306 1.116h54.34c.898 0 1.747-.41 2.307-1.115l33.878-42.65c.56-.705.77-1.628.57-2.507l-12.091-53.183a2.96 2.96 0 0 0-1.596-2.008L65.28 1.58A2.9 2.9 0 0 0 64 1.287m17.62 34.904c.205.517.316 1.075.316 1.647v20.58c0 .37-.047.734-.135 1.084l12.687-7.26c.2.51.305 1.059.305 1.623v30.408c0 .501-.092.986-.25 1.446l.008.004c-.01.029-.027.055-.037.084a4.5 4.5 0 0 1-.252.564c-.016.029-.027.06-.043.088a4.4 4.4 0 0 1-.395.58q-.064.076-.13.15a5 5 0 0 1-.364.372 4.4 4.4 0 0 1-.748.559L66.35 103.321a4.41 4.41 0 0 1-4.424 0L35.696 88.12a4 4 0 0 1-.462-.31q-.067-.055-.132-.112a4 4 0 0 1-.284-.25 5 5 0 0 1-.146-.154 4 4 0 0 1-.211-.242 4 4 0 0 1-.15-.201q-.046-.059-.088-.12l.007-.003a4.44 4.44 0 0 1-.748-2.454V53.865c0-.686.158-1.349.448-1.945l9.877 5.508V39.314c0-.573.11-1.13.316-1.648l16.846 10.932 20.65-12.407z"/></svg>
|
After Width: | Height: | Size: 1.0 KiB |
1
icons/googlecolab/googlecolab-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffb300" d="M90.437 26.434c-20.748 0-37.567 16.82-37.567 37.567 0 20.748 16.82 37.563 37.567 37.563C111.181 101.564 128 84.749 128 64s-16.82-37.567-37.563-37.567zm0 55.651c-9.992 0-18.088-8.096-18.088-18.084 0-9.992 8.096-18.088 18.088-18.088 9.988 0 18.084 8.096 18.084 18.088 0 9.988-8.096 18.084-18.084 18.084zm0 0"/><path fill="#ffb300" d="M50.477 76.664v-.008a18.022 18.022 0 0 1-12.91 5.43c-9.992 0-18.088-8.097-18.088-18.085 0-9.992 8.096-18.088 18.088-18.088 5.092 0 9.686 2.11 12.973 5.499l10.434-16.764c-6.423-5.127-14.551-8.214-23.407-8.214C16.819 26.434 0 43.254 0 64.001c0 20.748 16.82 37.563 37.567 37.563 8.801 0 16.882-3.051 23.286-8.12zm0 0"/><path fill="#f57a00" d="M19.479 64c0-4.974 2.01-9.474 5.256-12.745l-13.51-14.018C4.302 44.048 0 53.519 0 64c0 10.43 4.258 19.866 11.124 26.674L24.853 76.86A18.034 18.034 0 0 1 19.479 64Zm83.841-12.686a18.028 18.028 0 0 1 5.201 12.687c0 9.988-8.096 18.084-18.084 18.084-5.084 0-9.667-2.1-12.953-5.476L63.57 90.232c6.823 6.984 16.33 11.332 26.866 11.332C111.181 101.564 128 84.749 128 64c0-10.255-4.117-19.534-10.771-26.31zm0 0"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
icons/googlecolab/googlecolab-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffb000" d="M37.567 26.423c-18.739 0-34.269 13.721-37.1 31.66-.009.044-.017.09-.024.134-.075.478-.134.96-.188 1.441-.02.157-.043.31-.06.466a38.245 38.245 0 0 0-.148 5.797c.027.478.067.948.11 1.418.015.165.02.333.035.498.02.172.047.34.067.513.2 1.731.509 3.423.936 5.072.007.04.023.079.031.114 4.226 16.122 18.891 28.017 36.34 28.017 8.802 0 16.879-3.051 23.287-8.123L50.477 76.654v-.012a18.01 18.01 0 0 1-12.91 5.433 18.017 18.017 0 0 1-12.714-5.226c-.07-.07-.137-.144-.208-.215a17.847 17.847 0 0 1-.971-1.07 4.969 4.969 0 0 1-.192-.242 16.743 16.743 0 0 1-.866-1.156l-.145-.219a17.664 17.664 0 0 1-.775-1.28c-.036-.063-.07-.134-.106-.2a16.936 16.936 0 0 1-.666-1.391c-.023-.047-.04-.098-.059-.145a18.62 18.62 0 0 1-.56-1.524c-.016-.047-.023-.094-.039-.14a17.856 17.856 0 0 1-.415-1.607v-.015a18.002 18.002 0 0 1-.278-5.5v-.007a17.95 17.95 0 0 1 .713-3.506l.023-.074c.168-.537.364-1.066.58-1.579.012-.031.027-.059.039-.086a16.3 16.3 0 0 1 .717-1.488c.027-.055.062-.11.09-.161.25-.454.52-.901.807-1.328.027-.04.055-.074.082-.113.302-.44.615-.866.952-1.277.035-.043.074-.087.113-.13 3.318-3.967 8.3-6.494 13.878-6.494 5.092 0 9.686 2.111 12.973 5.5l10.434-16.765c-6.423-5.127-14.551-8.214-23.407-8.214Zm52.866 0c-20.744 0-37.563 16.82-37.563 37.567 0 16.796 11.026 31.014 26.235 35.82a35.287 35.287 0 0 0 3.342.885c.113.024.223.055.336.079.494.102.991.188 1.493.27.125.02.247.047.372.063a36.312 36.312 0 0 0 3.686.387c.047 0 .09.008.137.008h.008c.646.036 1.3.051 1.954.051 20.748 0 37.567-16.815 37.567-37.563 0-.65-.016-1.296-.047-1.935a48.492 48.492 0 0 0-.141-1.864c0-.004-.004-.008-.004-.012a40.937 40.937 0 0 0-.231-1.845 41.757 41.757 0 0 0-.274-1.558c-.02-.09-.032-.18-.047-.27-.004-.005-.004-.009-.004-.012a33.93 33.93 0 0 0-.412-1.783c-4.128-16.259-18.86-28.288-36.407-28.288Zm0 19.48a18.028 18.028 0 0 1 14.03 6.681c.36.443.705.901 1.023 1.38l.004.003c.011.02.02.04.031.055.306.462.595.936.858 1.426a17.725 17.725 0 0 1 1.343 3.215c.047.141.075.29.114.435.117.42.235.842.325 1.277v.004c.051.243.074.493.114.74.054.341.117.678.152 1.026a18.08 18.08 0 0 1 0 3.694 18.004 18.004 0 0 1-.27 1.794c-1.445 7.066-7.011 12.628-14.077 14.073-.588.122-1.187.216-1.794.278-.607.06-1.226.09-1.853.09a19.185 19.185 0 0 1-1.868-.093h-.008a19.045 19.045 0 0 1-1.66-.255 1.553 1.553 0 0 0-.146-.027 17.713 17.713 0 0 1-1.582-.408 3.912 3.912 0 0 1-.16-.047 18.45 18.45 0 0 1-1.419-.517c-.094-.039-.188-.074-.278-.113-.074-.032-.145-.07-.215-.102a18.738 18.738 0 0 1-1.406-.694c-.016-.007-.024-.015-.04-.023a17.734 17.734 0 0 1-1.472-.913c-.004-.004-.012-.007-.016-.011-.482-.333-.944-.69-1.39-1.066v-.004c-.45-.38-.882-.78-1.289-1.202-3.173-3.259-5.135-7.7-5.135-12.609 0-9.992 8.096-18.088 18.084-18.088zm0 0"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
icons/htmx/htmx-line-wordmark.svg
Normal file
After Width: | Height: | Size: 5.6 KiB |
1
icons/htmx/htmx-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#333" d="M72.102 22.172a.836.836 0 0 0-.813.55v.005l-28.672 81.796.004-.003c-.195.53.219 1.125.785 1.128h12.465a.856.856 0 0 0 .793-.55v-.004L85.187 23.3c.192-.54-.222-1.13-.789-1.13Zm.109 1.023h11.926l-28.395 81.426H43.668ZM36.973 43.168.496 58.398H.492A.82.82 0 0 0 0 59.16v10.176a.826.826 0 0 0 .492.77h.004l36.465 15.218a.823.823 0 0 0 1.094-.492l3.183-9.734.008-.004a.829.829 0 0 0-.492-1.012l-25.496-9.836 25.504-9.824v-.004a.824.824 0 0 0 .492-1.008v-.004l-3.188-9.75v-.004a.828.828 0 0 0-1.093-.488Zm53.859 0a.848.848 0 0 0-1.125.523l-3.164 9.696.004-.004a.845.845 0 0 0 .496 1.05l25.5 9.813-25.5 9.828a.84.84 0 0 0-.496 1.047l-.004-.004 3.156 9.695a.857.857 0 0 0 1.129.527l36.457-15.23a.834.834 0 0 0 .52-.761v-.004l.015-10.172-.004-.004a.854.854 0 0 0-.523-.766Zm-.207 1.023 36.172 15.118-.012 9.902-36.172 15.105-3.043-9.351 25.778-9.93a.85.85 0 0 0 .547-.789.85.85 0 0 0-.547-.785L87.57 53.539Zm-53.46.008 3.054 9.332-25.828 9.95a.843.843 0 0 0-.528.765.85.85 0 0 0 .528.766l25.816 9.957-3.055 9.328L1.023 69.215v-9.93Zm0 0"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
icons/htmx/htmx-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#333" d="M92.145 61.05a.152.152 0 0 0-.133.153v11.875c0 .14-.07.215-.211.215h-4.145c-.136 0-.207-.074-.207-.211v-14.96c0-.079.04-.126.117-.145 3.356-.864 8.047-1.707 10.942.484.09.074.219.078.312.012 1.946-1.22 4.012-1.63 6.192-1.23 3.785.698 4.648 3.589 4.652 7.05.004 2.941 0 5.879-.012 8.832 0 .09-.07.168-.16.168h-4.183c-.133 0-.2-.07-.2-.203-.004-2.543.004-5.078.028-7.61a14.26 14.26 0 0 0-.219-2.671c-.383-2.133-2.652-2.246-4.254-1.282-.094.055-.129.137-.105.243.183.863.273 1.738.277 2.617.008 2.906.008 5.816.004 8.742 0 .09-.07.164-.164.164h-4.18a.211.211 0 0 1-.207-.207c-.008-2.75-.012-5.504-.02-8.242-.007-3.29-.773-4.153-4.124-3.793Zm-61.45-.612 1.125-3.442a.138.138 0 0 1 .063-.07.1.1 0 0 1 .094 0l12.937 5.406a.114.114 0 0 1 .074.105l-.004 3.602a.12.12 0 0 1-.074.106L31.973 71.55a.112.112 0 0 1-.094-.004.097.097 0 0 1-.059-.07l-1.125-3.442c-.015-.058.016-.125.07-.144l9.208-3.547a.12.12 0 0 0 .074-.11.118.118 0 0 0-.074-.109l-9.203-3.543a.117.117 0 0 1-.07-.145ZM4.992 64.34l9.223 3.555c.055.02.082.078.066.132l-1.129 3.453a.13.13 0 0 1-.062.067.11.11 0 0 1-.086 0L.066 66.145A.108.108 0 0 1 0 66.043V62.43c0-.043.027-.082.066-.102l12.942-5.402a.11.11 0 0 1 .086 0c.027.011.05.035.058.062l1.133 3.457a.112.112 0 0 1-.066.133l-9.227 3.555a.11.11 0 0 0-.07.101c0 .047.027.086.07.106Zm73.356-3.13a77.336 77.336 0 0 0 .015 5.712c.032.93.164 1.582.399 1.957.918 1.492 3.574.95 4.941.469.059-.024.09-.004.102.05l.605 3.344a.123.123 0 0 1-.074.133c-4.395 1.684-10.297 1.098-10.516-4.867-.082-2.332-.09-7.168-.02-14.5.005-.121.063-.192.184-.211l4.125-.66c.145-.02.215.043.215.183v4.387c0 .055.04.098.094.098h5.18c.125 0 .183.058.183.183l-.004 3.367c0 .13-.062.192-.191.192l-5.066.004c-.11 0-.168.054-.172.16Zm-17.684-3.769c1.832-.316 3.242-.527 5.05.004 3.333.985 4.071 3.86 4.079 6.942.008 2.906.004 5.808-.008 8.718-.004.122-.07.188-.191.188h-4.16c-.121 0-.184-.063-.184-.188a970.736 970.736 0 0 1 0-8.261c.012-3.219-1.234-4.68-4.578-3.617-.125.043-.184.125-.184.25V73.12a.172.172 0 0 1-.164.172h-4.238a.162.162 0 0 1-.16-.164l-.004-22.442c0-.042.035-.082.078-.09l4.25-.679c.156-.023.234.043.234.207v7.168c0 .121.059.168.18.148Zm0 0"/><path fill="#3465a4" d="M120.074 67.984a.155.155 0 0 0-.125-.054.133.133 0 0 0-.117.066l-3.242 5.18a.224.224 0 0 1-.2.117l-4.18-.008a.169.169 0 0 1-.14-.082.159.159 0 0 1 0-.156 58.951 58.951 0 0 1 5.387-7.828.217.217 0 0 0 .008-.258l-5.238-7.402a.12.12 0 0 1-.016-.13.137.137 0 0 1 .117-.066l4.5.012a.342.342 0 0 1 .297.16l2.95 4.504a.142.142 0 0 0 .112.059.14.14 0 0 0 .11-.059l2.945-4.504a.363.363 0 0 1 .305-.164h4.277c.047 0 .086.024.106.066.023.04.02.086-.008.122l-5.242 7.304c-.086.121-.082.239.015.356a59.59 59.59 0 0 1 5.512 7.89.113.113 0 0 1 .004.121.13.13 0 0 1-.106.063h-4.539a.324.324 0 0 1-.293-.184 34.195 34.195 0 0 0-3.199-5.125ZM15.11 78.586l10.176-29.023a.117.117 0 0 1 .113-.075h4.368a.11.11 0 0 1 .093.051c.024.027.028.07.016.106l-10.121 29.02a.12.12 0 0 1-.113.073h-4.418a.109.109 0 0 1-.098-.047.124.124 0 0 1-.016-.105Zm0 0"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/htmx/htmx-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#3465a4" d="m42.922 104.996 28.89-82.437a.334.334 0 0 1 .32-.215h12.411a.329.329 0 0 1 .309.445l-28.75 82.434a.33.33 0 0 1-.309.218H43.23a.322.322 0 0 1-.27-.144.318.318 0 0 1-.038-.3Zm0 0"/><path fill="#333" d="m87.195 53.445 3.188-9.777a.348.348 0 0 1 .18-.2.316.316 0 0 1 .265-.003l36.75 15.36c.121.05.203.167.207.296l-.012 10.242a.328.328 0 0 1-.207.297l-36.75 15.352a.316.316 0 0 1-.265-.004.325.325 0 0 1-.176-.203l-3.18-9.774a.333.333 0 0 1 .196-.414l26.148-10.074a.338.338 0 0 0 .215-.313.333.333 0 0 0-.215-.308L87.391 53.859a.333.333 0 0 1-.196-.414ZM14.172 64.52l26.2 10.109a.31.31 0 0 1 .187.379l-3.211 9.808a.312.312 0 0 1-.168.184.3.3 0 0 1-.246 0L.188 69.66A.302.302 0 0 1 0 69.371v-10.27a.302.302 0 0 1 .188-.288l36.757-15.348a.3.3 0 0 1 .246 0 .324.324 0 0 1 .168.183l3.207 9.817a.309.309 0 0 1-.183.383L14.172 63.94a.308.308 0 0 0 0 .578Zm0 0"/></svg>
|
After Width: | Height: | Size: 944 B |
1
icons/htmx/htmx-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#333" d="M120.074 67.984a.155.155 0 0 0-.125-.054.133.133 0 0 0-.117.066l-3.242 5.18a.224.224 0 0 1-.2.117l-4.18-.008a.169.169 0 0 1-.14-.082.159.159 0 0 1 0-.156 58.951 58.951 0 0 1 5.387-7.828.217.217 0 0 0 .008-.258l-5.238-7.402a.12.12 0 0 1-.016-.13.137.137 0 0 1 .117-.066l4.5.012a.342.342 0 0 1 .297.16l2.95 4.504a.142.142 0 0 0 .112.059.14.14 0 0 0 .11-.059l2.945-4.504a.363.363 0 0 1 .305-.164h4.277c.047 0 .086.024.106.066.023.04.02.086-.008.122l-5.242 7.304c-.086.121-.082.239.015.356a59.59 59.59 0 0 1 5.512 7.89.113.113 0 0 1 .004.121.13.13 0 0 1-.106.063h-4.539a.324.324 0 0 1-.293-.184 34.195 34.195 0 0 0-3.199-5.125ZM15.11 78.586l10.176-29.023a.117.117 0 0 1 .113-.075h4.368a.11.11 0 0 1 .093.051c.024.027.028.07.016.106l-10.121 29.02a.12.12 0 0 1-.113.073h-4.418a.109.109 0 0 1-.098-.047.124.124 0 0 1-.016-.105ZM92.145 61.05a.15.15 0 0 0-.133.152v11.875c0 .14-.07.215-.211.215h-4.145c-.136 0-.207-.074-.207-.211v-14.96c0-.079.04-.126.117-.145 3.356-.864 8.047-1.707 10.942.484.09.074.219.078.312.012 1.946-1.22 4.012-1.63 6.192-1.23 3.785.698 4.648 3.589 4.652 7.05.004 2.941 0 5.879-.012 8.832 0 .09-.07.168-.16.168h-4.183c-.133 0-.2-.07-.2-.203-.004-2.543.004-5.078.028-7.61a14.26 14.26 0 0 0-.219-2.671c-.383-2.133-2.652-2.246-4.254-1.282-.094.055-.129.137-.105.243.183.863.273 1.738.277 2.617.008 2.906.008 5.816.004 8.742 0 .09-.07.164-.164.164h-4.18a.211.211 0 0 1-.207-.207c-.008-2.75-.012-5.504-.02-8.242-.007-3.29-.773-4.153-4.124-3.793Zm-61.45-.614 1.125-3.44a.138.138 0 0 1 .063-.071.1.1 0 0 1 .094 0l12.937 5.406a.114.114 0 0 1 .074.105l-.004 3.602a.12.12 0 0 1-.074.106L31.973 71.55a.112.112 0 0 1-.094-.004.097.097 0 0 1-.059-.07l-1.125-3.442c-.015-.058.016-.125.07-.144l9.208-3.547a.12.12 0 0 0 .074-.11.118.118 0 0 0-.074-.109l-9.203-3.543a.117.117 0 0 1-.07-.145ZM4.992 64.34l9.223 3.555c.055.02.082.078.066.132l-1.129 3.453a.13.13 0 0 1-.062.067.11.11 0 0 1-.086 0L.066 66.145A.108.108 0 0 1 0 66.043V62.43c0-.043.027-.082.066-.102l12.942-5.402a.11.11 0 0 1 .086 0c.027.011.05.035.058.062l1.133 3.457a.112.112 0 0 1-.066.133l-9.227 3.555a.11.11 0 0 0-.07.101c0 .047.027.086.07.106Zm73.356-3.13a77.336 77.336 0 0 0 .015 5.712c.032.93.164 1.582.399 1.957.918 1.492 3.574.95 4.941.469.059-.024.09-.004.102.05l.605 3.344a.123.123 0 0 1-.074.133c-4.395 1.684-10.297 1.098-10.516-4.867-.082-2.332-.09-7.168-.02-14.5.005-.121.063-.192.184-.211l4.125-.66c.145-.02.215.043.215.183v4.387c0 .055.04.098.094.098h5.18c.125 0 .183.058.183.183l-.004 3.367c0 .13-.062.192-.191.192l-5.066.004c-.11 0-.168.054-.172.16Zm-17.684-3.769c1.832-.316 3.242-.527 5.05.004 3.333.985 4.071 3.86 4.079 6.942.008 2.906.004 5.808-.008 8.718-.004.122-.07.188-.191.188h-4.16c-.121 0-.184-.063-.184-.188a970.736 970.736 0 0 1 0-8.261c.012-3.219-1.234-4.68-4.578-3.617-.125.043-.184.125-.184.25V73.12a.172.172 0 0 1-.164.172h-4.238a.162.162 0 0 1-.16-.164l-.004-22.442c0-.042.035-.082.078-.09l4.25-.679c.156-.023.234.043.234.207v7.168c0 .121.059.168.18.148Zm0 0"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/htmx/htmx-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#333" d="m87.195 53.445 3.188-9.777a.348.348 0 0 1 .18-.2.316.316 0 0 1 .265-.003l36.75 15.36c.121.05.203.167.207.296l-.012 10.242a.328.328 0 0 1-.207.297l-36.75 15.352a.316.316 0 0 1-.265-.004.325.325 0 0 1-.176-.203l-3.18-9.774a.333.333 0 0 1 .196-.414l26.148-10.074a.338.338 0 0 0 .215-.313.333.333 0 0 0-.215-.308L87.391 53.859a.333.333 0 0 1-.196-.414ZM14.172 64.52l26.2 10.109a.31.31 0 0 1 .187.379l-3.211 9.808a.312.312 0 0 1-.168.184.3.3 0 0 1-.246 0L.188 69.66A.302.302 0 0 1 0 69.371v-10.27a.302.302 0 0 1 .188-.288l36.757-15.348a.3.3 0 0 1 .246 0 .324.324 0 0 1 .168.183l3.207 9.817a.309.309 0 0 1-.183.383L14.172 63.94a.308.308 0 0 0 0 .578Zm28.75 40.476 28.89-82.437a.334.334 0 0 1 .32-.215h12.411a.329.329 0 0 1 .309.445l-28.75 82.434a.33.33 0 0 1-.309.218H43.23a.322.322 0 0 1-.27-.144.318.318 0 0 1-.038-.3Zm0 0"/></svg>
|
After Width: | Height: | Size: 911 B |
1
icons/kalilinux/kalilinux-line-wordmark.svg
Normal file
After Width: | Height: | Size: 9.2 KiB |
1
icons/kalilinux/kalilinux-line.svg
Normal file
After Width: | Height: | Size: 5.6 KiB |
1
icons/kalilinux/kalilinux-original-wordmark.svg
Normal file
After Width: | Height: | Size: 5.1 KiB |
1
icons/kalilinux/kalilinux-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#2777ff" d="M68.15 31.699s-10.512-.7-28.411 4.901c-18.242 5.708-28.587 13.798-28.587 13.798s27.188-15.18 57.876-16.043zm39.206 16.505 1.367-.09s-7.83-9.499-22.815-14.126c8.424 3.424 15.756 7.961 21.448 14.215zm2.237 3.946c.21-.364.888 1.158 1.403 1.797.022.128.058.205-.24.144-.026-.131-.069-.17-.069-.17s-.72-.428-.942-.732c-.22-.305-.26-.837-.152-1.039m18.39 45.218s1.662-19.081-28.317-23.48a97.5 97.5 0 0 0-13.465-1c-24.029.318-24.905-27.713-6.798-29.128 7.503-.62 16.463 3.429 25.223 7.508-.033 1.088.012 2.055.727 2.948s3.46 1.867 4.336 2.37 3.687 2.29 5.409 4.531c.373-.698 3.491-2.728 3.491-2.728s-.747.016-2.485-.633c-1.738-.65-3.8-2.615-3.849-2.728-.048-.114-.08-.292.325-.374.309-.26-.39-1.104-.698-1.412-.309-.309-2.371-3.816-2.42-3.898-.049-.08-.065-.162-.211-.26-.455-.146-2.453.212-2.453.212s-3.072-1.51-4.13-4.762c.015.57-.527 1.192 0 2.5-1.603-.677-2.978-1.833-4.064-4.689-.646 1.625 0 2.658 0 2.658s-3.772-1.054-4.375-4.533c-.662 1.562 0 2.5 0 2.5s-6.15-3.208-16.367-3.254c-6.841-.628-8.265-12.662-7.631-14.688 0 0-9.867-5.2-29.29-7.497-19.424-2.298-35.353-.346-35.353-.346s34.4-1.651 61.96 9.506c.936 4.19 3.754 11.169 5.272 14.523-4.343 3.004-9.241 5.827-10.004 15.843s7.848 18.824 18.526 19.095c10.139.54 17.144.617 25.635 5.02 8.105 4.48 14.75 18.136 15.408 30.417.71-9.112-2.71-28.707-18.666-34.656 22.302 3.902 24.264 20.436 24.264 20.436zM67.624 30.202l-.802-2.588s-13.241-2.351-31.044-1.086C17.975 27.794 0 34.025 0 34.025s36.78-9.254 67.624-3.823"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
icons/kalilinux/kalilinux-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#2777ff" d="M34.164 22.705c-17.117-.006-30.34 2.893-30.34 2.893s32.724-4.674 60.063 3.507c1.272 3.92 4.593 10.334 6.345 13.403-3.88 3.26-8.305 6.4-8.132 16.039.172 9.639 9.192 17.281 19.42 16.58 9.737-.397 16.439-.954 24.949 2.488 8.148 3.553 15.727 16.004 17.46 27.68-.14-8.771-5.171-27.187-20.954-31.436C124.637 75.581 128 91.203 128 91.203s-.13-18.383-29.174-19.889a94 94 0 0 0-12.957.258C62.937 74.04 59.577 47.33 76.752 44.348c7.115-1.267 16.042 1.794 24.78 4.904.066 1.042.195 1.963.958 2.752s3.474 1.473 4.358 1.875 3.729 1.857 5.576 3.844c.294-.701 3.09-2.922 3.09-2.922s-.711.083-2.43-.381-3.867-2.158-3.924-2.262-.105-.27.276-.385c.27-.275-.47-1.02-.793-1.287s-2.61-3.434-2.664-3.507c-.054-.074-.077-.149-.225-.229-.448-.099-2.324.422-2.324.422s-3.073-1.165-4.377-4.178c.066.543-.397 1.185.224 2.389-1.591-.504-3.01-1.484-4.304-4.115-.471 1.61.24 2.54.24 2.54s-3.7-.669-4.59-3.939c-.492 1.552.225 2.39.225 2.39s-6.164-2.511-15.932-1.636c-6.593.016-9.038-11.355-8.615-13.348 0 0-9.897-4.082-28.664-4.529q-1.76-.041-3.473-.04zm24.15 7.162c-5.254-.062-14.239.184-24.8 1.942C16.615 34.62 0 42.193 0 42.193s34.312-12.154 64.275-9.74h.002l-1-2.4s-1.81-.149-4.963-.186m6.6 3.969s-10.108.277-26.709 7.24C21.288 48.172 12.13 56.834 12.13 56.834s24.616-16.953 53.863-20.54zm17.174.59c8.358 2.514 15.773 6.189 21.775 11.652l1.3-.207s-8.34-8.371-23.076-11.445zm24.36 15.162c.27.028.93 1.158 1.411 1.652.033.12.075.19-.216.158-.036-.123-.082-.156-.082-.156s-.727-.344-.965-.615c-.239-.27-.325-.776-.24-.979q.032-.067.091-.06zm-20.745 7.098a.73.73 0 0 0-.68.486.8.8 0 0 0-.043.287v9.693a.727.727 0 0 0 .727.72l2.566-.003-.002-.75h-2.519c-.013-.08-.011-9.566.002-9.61.077-.01 20.389-.008 20.433.003.013.073.009 9.561-.005 9.611H89.195v.75h17.061a.725.725 0 0 0 .719-.762v-9.71a.73.73 0 0 0-.534-.688v-.002a1 1 0 0 0-.248-.025zm9.46 2.845-.015.03-2.064 5.539-.004.011v.006l.004.006h.945l.002.002.022-.059q.218-.623.44-1.248l.07-.2q.01-.044.052-.04h2.096l.559 1.545h.966l-2.086-5.592h-.988zm-3.636.02a.14.14 0 0 0-.123.056q-1.08 1.28-2.164 2.557l-.043.041v-2.121c0-.176.003-.352 0-.527h-.904v5.56c.072.013.858.011.906-.002v-.07l-.002-.002v-1.94c0-.043.011-.073.047-.101q.225-.179.445-.361l.05-.036.04.057.754 1.086.924 1.334c.017.026.034.045.072.045h.971q.013-.001.037-.008c-.716-1.043-1.43-2.079-2.144-3.121.143-.167.284-.327.423-.492q.209-.242.416-.486l.418-.487q.21-.243.414-.486c.139-.161.278-.323.424-.496h-.082c-.293 0-.586.003-.879 0m7.338.006c-.015.07-.012 5.522.002 5.568h3.258v-.775h-1.969c-.13-.001-.258.005-.392-.002v-4.362h-.002c0-.144.005-.287-.004-.43zm3.88.002v5.564h.901l.004-.021V59.59q.001-.012-.002-.024l-.003-.005q-.002-.003-.004-.002h-.897zm-7.099.779c.01.015.017.023.02.033.151.565.357 1.112.545 1.666l.238.69.02.066h-1.623l.021-.064c.19-.552.383-1.1.569-1.653.074-.222.131-.453.195-.68z"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
icons/laminas/laminas-line-wordmark.svg
Normal file
After Width: | Height: | Size: 11 KiB |
1
icons/laminas/laminas-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#013755" d="m45.8403 0-.5251.031c-.8898.0524-1.6899.3765-2.3136.9669-.6237.5904-1.0679 1.4244-1.3505 2.4763L9.8542 122.1554c-.3753 1.4053-.3027 2.6344.283 3.604.5856.9696 1.6372 1.6167 3.0343 1.9919h.002c1.4004.3746 2.6367.3415 3.6292-.2054.992-.5467 1.6684-1.5754 2.0423-2.9801v-.002L50.6476 5.8866c.3798-1.4117.2735-2.658-.341-3.6312C49.692 1.2823 48.616.631 47.216.2558c-.4878-.1306-.9301-.1414-1.3757-.1609Zm66.9885.0349c-.8903.0501-1.6913.371-2.3155.961-.6242.59-1.069 1.426-1.3525 2.4802L77.36 122.1534c-.3765 1.4056-.3022 2.6355.2848 3.604.5867.9682 1.6403 1.6144 3.0363 1.988 1.399.378 2.6348.3466 3.6273-.1995.9925-.5461 1.6712-1.5767 2.048-2.982L118.1574 5.8866h-.002c.3798-1.4107.2749-2.6553-.339-3.6273-.6138-.9716-1.6882-1.623-3.0848-1.9977h-.002c-.6733-.181-1.3078-.2601-1.9009-.2267Zm-67.4613.9882h.0077c.4621-.0278.9911.0329 1.585.1918 1.2468.3341 2.0656.872 2.5073 1.5714.4418.6995.5524 1.6104.221 2.8426L17.8876 124.308v.002c-.3295 1.2392-.8612 1.9807-1.5637 2.3678-.7025.3871-1.6474.45-2.8948.1163-1.2439-.3341-2.0285-.8594-2.4434-1.5463-.4149-.6869-.5054-1.5972-.1744-2.8367L42.6102 3.7319c.2492-.9273.619-1.583 1.0735-2.0132.4529-.4287.9926-.6536 1.6838-.6956zm67.5175.002c.4639-.0262.995.0358 1.5888.1956 1.2444.3336 2.0624.8711 2.5035 1.5695.441.6984.5524 1.6075.2209 2.8387L85.3974 124.308c-.3324 1.2396-.8653 1.9814-1.5675 2.3678-.7022.3864-1.6432.4469-2.889.1105h-.002c-1.244-.3328-2.0298-.8567-2.4454-1.5424-.4155-.6857-.5063-1.5936-.1744-2.8329L110.12 3.734c.2502-.93.6212-1.5878 1.0754-2.0171.4542-.4294.9946-.6526 1.6897-.6918zm-37.976 13.42c-.0069-.0002-.0126.0023-.0194.002-.9893-.0323-1.8864.233-2.5887.8217-.7072.5927-1.206 1.4813-1.5133 2.6216l-13.9957 52.241c-.3769 1.4062-.305 2.6366.281 3.606.5856.9688 1.6388 1.6152 3.0362 1.9899 1.3977.3763 2.6348.3448 3.6273-.2015.9926-.5463 1.6717-1.577 2.0481-2.982l13.9996-52.243c.3781-1.4104.2726-2.655-.341-3.6273-.6128-.9707-1.686-1.6203-3.0829-1.9958a6.5191 6.5191 0 0 0-1.4474-.2325l-.0232.9901zm-.0388.9902h.002a5.522 5.522 0 0 1 1.2207.1977h.002l.0039.002c1.2469.3341 2.0645.871 2.5054 1.5695.4409.6984.551 1.6072.2209 2.8386l-13.9996 52.245c-.332 1.2388-.8649 1.981-1.5676 2.3677-.7027.3868-1.6448.4493-2.889.1143h-.002c-1.2456-.3337-2.0307-.8603-2.4454-1.5463-.4146-.686-.5049-1.5941-.1724-2.8347l13.9976-52.241v-.002c.271-1.0044.6831-1.6897 1.1916-2.116.5085-.4262 1.1267-.6241 1.9319-.5948z"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
icons/laminas/laminas-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#013755" d="M70.108 41.315c-.929 0-1.658.73-1.658 1.658 0 .929.73 1.658 1.658 1.658.929 0 1.658-.73 1.658-1.658 0-.929-.73-1.658-1.658-1.658zM1.194 42.742c-.796 0-1.194.397-1.194 1.227v21.494c0 1.261.531 1.89 1.625 1.89h11.443c.83 0 1.227-.397 1.227-1.226 0-.796-.397-1.195-1.227-1.195H2.421V43.97c0-.83-.399-1.227-1.227-1.227zm40.192 5.461c-.48.028-.812.333-.973.933l-9.638 35.966c-.214.802.1 1.298.9 1.512.802.215 1.322-.057 1.535-.859l9.638-35.966c.216-.802-.131-1.307-.933-1.522a1.677 1.677 0 0 0-.529-.064zm20.46.001c-.48.027-.813.33-.974.932l-9.637 35.966c-.215.802.1 1.297.9 1.51.801.217 1.32-.055 1.535-.857l9.637-35.966c.216-.801-.131-1.306-.932-1.52a1.682 1.682 0 0 0-.529-.065zm23.274.143c-1.956 0-3.88.896-4.975 2.886v-1.26c0-.863-.398-1.294-1.226-1.294-.797 0-1.194.431-1.194 1.293V66.16c0 .796.397 1.193 1.194 1.193.828 0 1.226-.397 1.226-1.193V55.743c0-3.283 2.289-4.975 4.578-4.975 2.223 0 4.444 1.625 4.444 4.975V66.16c0 .796.399 1.194 1.194 1.194.83 0 1.227-.398 1.227-1.194V54.68c0-3.946-3.283-6.334-6.468-6.334zm36.344.066c-3.516 0-6.666 1.658-6.666 5.407 0 2.819 3.649 4.278 6.666 5.373 1.759.63 3.815 1.559 3.815 3.184 0 2.156-2.29 2.887-4.08 2.887-1.858 0-3.416-.73-4.577-1.494-.33-.231-.664-.364-.962-.364-.63 0-1.094.432-1.094 1.36 0 .398.132.796.43.995 1.826 1.16 3.75 1.957 6.138 1.957 3.284 0 6.866-1.492 6.866-5.573 0-2.985-2.786-4.146-5.506-5.274-2.488-1.029-5.075-1.824-5.075-3.35 0-1.958 2.023-2.654 3.98-2.654 1.558 0 3.184.398 3.98.863.233.133.497.199.73.199.63 0 1.128-.398 1.128-1.161 0-.464-.2-.93-.632-1.161-1.591-.863-3.416-1.194-5.141-1.194zm-98.233.067c-2.289 0-4.047.397-5.507.994-.564.232-.929.762-.929 1.194 0 .763.565 1.029 1.128 1.029 1.03 0 2.422-.796 4.578-.796 3.118 0 4.976 1.526 4.976 3.814v3.152c-1.095-1.094-3.117-1.659-5.009-1.659-3.482 0-7.032 1.991-7.032 5.872 0 3.716 3.118 5.54 6.369 5.54 2.122 0 4.245-.796 5.672-2.322 0 .298 0 .498.033 1.127.033.63.432 1.195 1.227 1.195.796 0 1.227-.597 1.227-1.227v-11.91c0-3.35-2.322-6.003-6.733-6.003zm80.2 0c-2.29 0-4.047.397-5.506.994-.564.232-.928.762-.928 1.194 0 .763.563 1.029 1.127 1.029 1.028 0 2.422-.796 4.578-.796 3.117 0 4.975 1.526 4.975 3.814v3.152c-1.094-1.094-3.118-1.659-5.01-1.659-3.482 0-7.03 1.991-7.03 5.872 0 3.716 3.117 5.54 6.368 5.54 2.123 0 4.245-.796 5.672-2.322 0 .298 0 .497.033 1.127.032.63.43 1.195 1.227 1.195.796 0 1.227-.597 1.227-1.227v-11.91c0-3.35-2.322-6.003-6.734-6.003zm-33.258.033c-.797 0-1.227.398-1.227 1.227v16.387c0 .83.43 1.226 1.26 1.226.83 0 1.26-.397 1.26-1.226V49.74c0-.83-.463-1.227-1.293-1.227zM50.34 52.57c-.546-.02-.922.283-1.098.933L45 69.336c-.214.803.099 1.298.9 1.512.8.216 1.32-.057 1.535-.858l4.243-15.833c.215-.8-.13-1.306-.933-1.52a1.824 1.824 0 0 0-.405-.066zm-27.872 5.926c2.455 0 4.976 1.161 4.976 3.185 0 2.289-2.687 3.615-5.208 3.615-2.255 0-4.313-1.028-4.312-3.417 0-2.321 2.223-3.383 4.544-3.383zm80.2 0c2.454 0 4.975 1.161 4.975 3.185 0 2.289-2.686 3.615-5.208 3.615-2.255 0-4.311-1.028-4.311-3.417 0-2.321 2.221-3.383 4.543-3.383z"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
icons/laminas/laminas-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#013755" d="M45.196.007c-1.597.094-2.704 1.107-3.24 3.102L9.904 122.736c-.712 2.666.33 4.315 2.992 5.03 2.669.714 4.397-.193 5.106-2.859L50.058 5.28c.717-2.665-.437-4.347-3.105-5.062-.639-.171-1.225-.242-1.757-.21Zm68.051.003c-1.598.09-2.704 1.1-3.242 3.1L77.95 122.735c-.714 2.666.333 4.312 2.995 5.024 2.666.72 4.392-.187 5.107-2.853L118.106 5.28c.717-2.663-.437-4.342-3.1-5.056-.639-.172-1.226-.244-1.759-.214zm-38.27 14.526c-1.818-.067-3.069.94-3.652 3.103L57.217 70.298c-.715 2.668.327 4.314 2.992 5.028 2.663.717 4.392-.19 5.106-2.855L79.427 19.81c.714-2.663-.435-4.342-3.103-5.057a6.072 6.072 0 0 0-1.348-.217z"/></svg>
|
After Width: | Height: | Size: 722 B |
1
icons/libgdx/libgdx-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#e74a45" d="M0 52.834v22.038h6.88V52.834Zm9.683 0v6.039h6.883v-6.039zm9.686 0v22.038h10.575c3.56 0 6.411-3.174 6.411-7.02 0-3.846-2.851-7.02-6.41-7.02h-3.686v-7.998zm24.925 0c-3.552 0-6.399 3.174-6.399 7.02v.137a.16.16 0 0 0 0 .032v7.83c0 3.845 2.846 7.02 6.4 7.02H59.01c3.553 0 6.397-3.175 6.397-7.02 0-3.846-2.845-7.02-6.397-7.02h-8.49v5.618h6.819c.654 0 1.178.53 1.178 1.191 0 .66-.519 1.178-1.178 1.178H45.963c-.646 0-1.156-.5-1.176-1.14v-7.672a1.166 1.166 0 0 1 1.176-1.122h4.557v.014h14.033v-6.066H48.461Zm23.075 0v6.062h19.496a1.16 1.16 0 0 1 1.164 1.122v7.667a1.158 1.158 0 0 1-1.164 1.139h-12.66v-7.981H67.37v14.03h21.153c3.532 0 6.359-3.175 6.359-7.017v-7.995c0-3.842-2.826-7.015-6.359-7.015h-5.826v-.012zm25.826 0 .842.842 10.179 10.177-11.02 11.02h9.58l7.823-7.822 7.822 7.821H128l-11.019-11.019L128 52.834h-9.58l-7.82 7.822-7.824-7.822zm-92.208.987h4.907v20.064H.987Zm9.683 0h4.91v4.065h-4.91Zm9.686 0h4.916v7.999h4.672c2.97 0 5.424 2.67 5.424 6.032s-2.453 6.033-5.424 6.033h-9.588V61.326Zm23.938 0h19.272v4.092h-12.06v-.014h-5.543a2.17 2.17 0 0 0-2.162 2.063v7.748a2.17 2.17 0 0 0 2.162 2.097H57.34a2.17 2.17 0 0 0 2.164-2.165c0-1.19-.97-2.178-2.164-2.178h-5.832V61.82h7.503c2.962 0 5.41 2.67 5.41 6.032s-2.448 6.033-5.41 6.033H44.294c-2.962 0-5.412-2.67-5.412-6.033v-7.999c0-3.362 2.45-6.032 5.412-6.032zm24.062 0h13.353v.011h6.813c2.939 0 5.372 2.668 5.372 6.03v7.994c0 3.362-2.433 6.03-5.372 6.03H68.356V61.828h4.863v7.982h13.646a2.162 2.162 0 0 0 2.151-2.095V59.97a2.163 2.163 0 0 0-2.151-2.062H68.356Zm27.221 0h6.79l8.232 8.23 8.23-8.23h6.789l-10.032 10.032 10.032 10.032h-6.789l-8.23-8.23-8.232 8.23H95.58l10.032-10.032ZM9.683 60.833v14.04h6.883v-14.04Zm.987.987h4.91v12.065h-4.91Zm14.602 3.644v4.343h3a2.172 2.172 0 0 0 2.166-2.165 2.18 2.18 0 0 0-2.167-2.178zm.987.987h2.012c.657 0 1.18.53 1.18 1.191 0 .66-.518 1.178-1.18 1.178H26.26z"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
icons/libgdx/libgdx-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M0 53.333v21.334h5.973V53.333Zm9.813 0v5.12h5.974v-5.12zm9.814 0v21.334h10.216c3.308 0 5.997-2.962 5.997-6.614 0-3.652-2.689-6.613-5.997-6.613H25.61v-8.107ZM9.813 61.44v13.227h5.974V61.44Zm15.797 4.693h2.538c.938 0 1.695.769 1.695 1.707 0 .938-.757 1.693-1.696 1.693H25.61Z"/><path fill="#e74a45" d="M44.384 53.333c-3.3 0-5.983 2.962-5.983 6.614v8.106c0 3.652 2.682 6.614 5.983 6.614h14.913c3.3 0 5.983-2.962 5.983-6.614 0-3.652-2.682-6.613-5.983-6.613h-8.103v4.693h6.41c.937 0 1.693.769 1.693 1.707a1.69 1.69 0 0 1-1.693 1.693H46.077a1.69 1.69 0 0 1-1.693-1.64V60.08c.042-.9.783-1.613 1.693-1.613h5.117v.013h13.22v-5.147H48.607zm23.883 0v5.144h19.256c.904 0 1.639.712 1.68 1.612v7.808a1.683 1.683 0 0 1-1.68 1.64H74.196v-8.089h-5.93v13.219h20.937c3.279 0 5.943-2.96 5.943-6.61v-8.101c0-3.65-2.664-6.61-5.943-6.61h-6.405v-.013zm26.878 0L105.812 64 95.147 74.667h8.293l8.133-8.134 8.134 8.134H128L117.333 64 128 53.333h-8.293l-8.134 8.134-8.133-8.134z"/></svg>
|
After Width: | Height: | Size: 1.0 KiB |
1
icons/libgdx/libgdx-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#e74a45" d="M0 53.334v21.332h5.973V53.334H0zm9.813 0v5.12h5.974v-5.12H9.812zm9.814 0v21.332h10.217c3.308 0 5.996-2.961 5.996-6.613 0-3.652-2.688-6.613-5.996-6.613h-4.235v-8.106h-5.982zm24.758 0c-3.301 0-5.985 2.961-5.985 6.613v8.106c0 3.652 2.684 6.613 5.985 6.613h14.912c3.3 0 5.982-2.961 5.982-6.613 0-3.652-2.681-6.613-5.982-6.613h-8.104v4.693h6.41c.937 0 1.694.769 1.694 1.707a1.69 1.69 0 0 1-1.693 1.693H46.076a1.69 1.69 0 0 1-1.691-1.64V60.08a1.69 1.69 0 0 1 1.691-1.613h5.117v.013h13.221v-5.146h-20.03zm23.883 0v5.143h19.255c.904 0 1.639.713 1.68 1.613v7.808a1.682 1.682 0 0 1-1.68 1.64H74.195v-8.089h-5.927v13.217h20.935c3.278 0 5.943-2.96 5.943-6.61 0-.054.002-.103 0-.158v-7.943c0-3.65-2.665-6.61-5.943-6.61h-6.404v-.011H68.268zm26.877 0L105.812 64 95.146 74.666h8.293l8.135-8.133 8.133 8.133H128L117.334 64 128 53.334h-8.293l-8.133 8.133-8.135-8.133h-8.295zM9.812 61.439v13.227h5.975V61.44H9.812zm15.797 4.694h2.54c.938 0 1.695.769 1.695 1.707a1.69 1.69 0 0 1-1.696 1.693H25.61v-3.4z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
icons/monogame/monogame-line-wordmark.svg
Normal file
After Width: | Height: | Size: 9.6 KiB |
1
icons/monogame/monogame-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#e73c00" d="M37.9826 0C17.035 0 0 17.0633 0 37.9826v52.0348C0 110.9645 17.0355 128 37.9826 128h52.0348C110.9645 128 128 110.9645 128 90.0174V64.3236H52.0349V88.254h52.0349v1.7635c0 7.7537-6.2987 14.0524-14.0524 14.0524H37.9826c-7.7537 0-14.0524-6.2987-14.0524-14.0524V37.9826c0-7.7537 6.2987-14.0524 14.0524-14.0524 7.7536 0 14.0523 6.2987 14.0523 14.0524v17.841H75.965v-17.841c0-7.7537 6.2987-14.0524 14.0523-14.0524 7.7537 0 14.0524 6.2987 14.0524 14.0524v17.841H128v-17.841C128 17.0355 110.9645 0 90.0174 0 79.959 0 70.809 3.9702 64 10.4012 57.1917 3.9975 48.0417 0 37.9826 0Zm0 .9922c9.9524 0 19.0088 3.9846 25.6724 10.3973l.345.3334.345-.3334C71.008 4.9496 80.064.9922 90.0174.9922c20.4094 0 36.9904 16.581 36.9904 36.9904v16.8488H105.062V37.9826c0-8.2918-6.7528-15.0446-15.0446-15.0446-8.2917 0-15.0445 6.7528-15.0445 15.0446v16.8488H53.027V37.9826c0-8.2918-6.7528-15.0446-15.0445-15.0446-8.2918 0-15.0446 6.7528-15.0446 15.0446v52.0348c0 8.2918 6.7528 15.0446 15.0446 15.0446h52.0348c8.2918 0 15.0446-6.7528 15.0446-15.0446v-2.7558H53.0271V65.316h73.9807v24.7015c0 20.4094-16.581 36.9904-36.9904 36.9904H37.9826c-20.4094 0-36.9904-16.581-36.9904-36.9904V37.9826C.9922 17.6018 17.5736.9922 37.9826.9922Z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
icons/monogame/monogame-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#393939" d="M74.17 57.7773a6.3579 6.3579 0 0 0-2.3634.4551 5.3735 5.3735 0 0 0-1.832 1.2715 5.81 5.81 0 0 0-1.1816 1.92 7.0563 7.0563 0 0 0 0 4.7988 5.813 5.813 0 0 0 1.1816 1.9199 5.3765 5.3765 0 0 0 1.832 1.2715 5.9605 5.9605 0 0 0 2.3653.457 5.9575 5.9575 0 0 0 2.3633-.457 5.3765 5.3765 0 0 0 1.83-1.2715 5.81 5.81 0 0 0 1.1836-1.92 7.0532 7.0532 0 0 0 0-4.7988 5.81 5.81 0 0 0-1.1836-1.9199 5.3735 5.3735 0 0 0-1.83-1.2715 6.3579 6.3579 0 0 0-2.3653-.455zm-23.916.002a6.3609 6.3609 0 0 0-2.3653.457 5.3705 5.3705 0 0 0-1.8301 1.2696 5.81 5.81 0 0 0-1.1836 1.918 7.0593 7.0593 0 0 0 0 4.7988 5.813 5.813 0 0 0 1.1836 1.9199 5.3735 5.3735 0 0 0 1.8477 1.2715 5.9635 5.9635 0 0 0 2.3671.457 5.9575 5.9575 0 0 0 2.3477-.455 5.3735 5.3735 0 0 0 1.83-1.2696 5.819 5.819 0 0 0 1.1837-1.9219 7.0593 7.0593 0 0 0 0-4.7969 5.816 5.816 0 0 0-1.1836-1.9218 5.3705 5.3705 0 0 0-1.8301-1.2696 6.3609 6.3609 0 0 0-2.3672-.457zm-18.5.1953v11.6816h1.453V60.043l3.9532 9.6133h.6015l3.9766-9.6133v9.6133h1.4394V57.9746h-2.0859l-3.6426 8.793-3.6133-8.793h-2.082zm25.6015 0v11.6816h1.455v-9.332l6.8145 9.332h1.4102V57.9746H65.58v9.1152l-6.7364-9.1152h-1.4882zm-7.082 1.1035a4.2145 4.2145 0 0 1 1.7656.3614 4.0068 4.0068 0 0 1 1.3496.9882 4.4553 4.4553 0 0 1 .8672 1.504 5.6835 5.6835 0 0 1 .3007 1.8945 5.6113 5.6113 0 0 1-.3007 1.8847 4.5547 4.5547 0 0 1-.8672 1.504 3.9135 3.9135 0 0 1-1.3496.998 4.2145 4.2145 0 0 1-1.7657.3613 4.2807 4.2807 0 0 1-1.7793-.3613 3.8833 3.8833 0 0 1-1.3574-.998 4.4734 4.4734 0 0 1-.8594-1.504 5.807 5.807 0 0 1-.3007-1.8847 5.8852 5.8852 0 0 1 .3007-1.8946 4.38 4.38 0 0 1 .8594-1.5039 3.9586 3.9586 0 0 1 1.3574-.9882 4.2807 4.2807 0 0 1 1.7793-.3614zm23.8984 0a4.2145 4.2145 0 0 1 1.7676.3614 4.0038 4.0038 0 0 1 1.3476.9882 4.4523 4.4523 0 0 1 .8672 1.504 5.6835 5.6835 0 0 1 .3008 1.8945 5.6113 5.6113 0 0 1-.3008 1.8847 4.5516 4.5516 0 0 1-.8672 1.504 3.9135 3.9135 0 0 1-1.3476.998 4.2145 4.2145 0 0 1-1.7676.3613 4.2777 4.2777 0 0 1-1.7696-.3613 3.8833 3.8833 0 0 1-1.3574-.998 4.4643 4.4643 0 0 1-.8594-1.504 5.807 5.807 0 0 1-.3007-1.8847 5.8852 5.8852 0 0 1 .3007-1.8946 4.368 4.368 0 0 1 .8594-1.5039 3.9586 3.9586 0 0 1 1.3477-.9882 4.2777 4.2777 0 0 1 1.7793-.3614z"/><path fill="#e73c00" d="M87.252 57.7988a6.8275 6.8275 0 0 0-2.4082.4219 5.8943 5.8943 0 0 0-1.9805 1.205 5.6534 5.6534 0 0 0-1.3399 1.9083 6.1863 6.1863 0 0 0-.4902 2.5039 6.1772 6.1772 0 0 0 .4902 2.5039 5.6474 5.6474 0 0 0 1.3399 1.9102 6.0357 6.0357 0 0 0 1.9805 1.203 6.695 6.695 0 0 0 2.4082.4317 6.418 6.418 0 0 0 2.8378-.6055 6.8124 6.8124 0 0 0 2.1387-1.6074v-4.498h-5.5703v2.1914h3.086v1.4238a3.3626 3.3626 0 0 1-1.0235.6172 3.757 3.757 0 0 1-1.4629.2832 3.6606 3.6606 0 0 1-1.4629-.3008 3.516 3.516 0 0 1-1.1797-.793 3.5883 3.5883 0 0 1-.7617-1.2187 4.2356 4.2356 0 0 1-.2715-1.5371 4.1633 4.1633 0 0 1 .2715-1.5273 3.6997 3.6997 0 0 1 .7617-1.2188 3.516 3.516 0 0 1 1.1641-.8066 3.6666 3.6666 0 0 1 1.4629-.3008 2.9923 2.9923 0 0 1 1.6562.457 3.6124 3.6124 0 0 1 1.1114 1.0684l2.0761-1.1016a6.3217 6.3217 0 0 0-.789-1 5.1176 5.1176 0 0 0-1.0489-.834 5.545 5.545 0 0 0-1.3398-.5683 6.1441 6.1441 0 0 0-1.6562-.211zm17.9394.1758v11.6816h2.4883v-8.1777l3.293 8.1778h1.0879l3.293-8.1778v8.1778h2.4862V57.9746h-3.498l-2.832 7.0586-2.836-7.0586h-3.4824zm14.539 0v11.6816L128 69.6543v-2.1895h-5.7793v-2.6425h5.6582v-2.1875h-5.6582V60.166H128v-2.1914h-8.2695zm-22.7968.0117L92.418 69.67h2.8261l.7344-1.9785h5.0098l.7187 1.9648 2.8614.0137-4.5157-11.6836h-3.1191zm1.5508 2.4805 1.8203 5.0293H96.662l1.8223-5.0293zm-71.5508 1.6945v-3.6786a7.9473 7.9473 0 0 0-13.4683-5.7197A7.9443 7.9443 0 0 0 0 58.4827v11.036a7.9594 7.9594 0 0 0 7.9503 7.9502h11.036a7.9594 7.9594 0 0 0 7.9473-7.9503v-5.3464H11.0329V69.04h11.036v.4786a3.0886 3.0886 0 0 1-3.0826 3.0826H7.9503a3.0886 3.0886 0 0 1-3.0856-3.0826v-11.036a3.0856 3.0856 0 1 1 6.1682 0v3.6787h4.8678v-3.6786a3.0856 3.0856 0 1 1 6.1682 0v3.6786z"/></svg>
|
After Width: | Height: | Size: 3.9 KiB |
1
icons/monogame/monogame-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#e73c00" d="M37.7793 0C16.9395 0 0 16.968 0 37.7793v52.4414C0 111.0605 16.9395 128 37.7793 128h52.4414C111.0605 128 128 111.0605 128 90.2207V64.8262H52.4414v23.1172h52.4414v2.2773c0 8.0854-6.5767 14.6621-14.6621 14.6621H37.7793c-8.0854 0-14.6621-6.5767-14.6621-14.6621V37.7793c0-8.0854 6.5767-14.6621 14.6621-14.6621s14.6621 6.5767 14.6621 14.6621v17.4805h23.1172V37.7793c0-8.0854 6.5767-14.6621 14.6621-14.6621s14.6621 6.5767 14.6621 14.6621v17.4805H128V37.7793C128 16.9395 111.0605 0 90.2207 0 80.057 0 70.8043 4.0426 64 10.6191 57.1957 4.0711 47.943 0 37.7793 0z"/></svg>
|
After Width: | Height: | Size: 670 B |
1
icons/monogame/monogame-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#e73c00" d="M7.8516 50.5313A7.9443 7.9443 0 0 0 0 58.4823v11.0371a7.9594 7.9594 0 0 0 7.9512 7.9493h11.0351a7.9594 7.9594 0 0 0 7.9473-7.9493V64.172H11.0332v4.8672h11.0352v.4804a3.0886 3.0886 0 0 1-3.082 3.082H7.9511a3.0886 3.0886 0 0 1-3.086-3.082v-11.037a3.0856 3.0856 0 1 1 6.168 0v3.6796h4.8672v-3.6797a3.0856 3.0856 0 1 1 6.168 0v3.6797h4.8652v-3.6797a7.9473 7.9473 0 0 0-13.4688-5.7187 7.9443 7.9443 0 0 0-5.6132-2.2325zm66.3183 7.246a6.3579 6.3579 0 0 0-2.3633.4551 5.3735 5.3735 0 0 0-1.832 1.2715 5.81 5.81 0 0 0-1.1816 1.92 7.0563 7.0563 0 0 0 0 4.7988 5.813 5.813 0 0 0 1.1816 1.9199 5.3765 5.3765 0 0 0 1.832 1.2715 5.9605 5.9605 0 0 0 2.3653.457 5.9575 5.9575 0 0 0 2.3633-.457 5.3765 5.3765 0 0 0 1.83-1.2715 5.81 5.81 0 0 0 1.1836-1.92 7.0532 7.0532 0 0 0 0-4.7988 5.81 5.81 0 0 0-1.1836-1.9199 5.3735 5.3735 0 0 0-1.83-1.2715 6.3579 6.3579 0 0 0-2.3653-.455zm-23.916.002a6.3609 6.3609 0 0 0-2.3652.457 5.3705 5.3705 0 0 0-1.8301 1.2696 5.81 5.81 0 0 0-1.1836 1.918 7.0593 7.0593 0 0 0 0 4.7988 5.813 5.813 0 0 0 1.1836 1.9199 5.3735 5.3735 0 0 0 1.8477 1.2715 5.9635 5.9635 0 0 0 2.3671.457 5.9575 5.9575 0 0 0 2.3477-.455 5.3735 5.3735 0 0 0 1.83-1.2696 5.819 5.819 0 0 0 1.1837-1.9219 7.0593 7.0593 0 0 0 0-4.7969 5.816 5.816 0 0 0-1.1836-1.9218 5.3705 5.3705 0 0 0-1.8301-1.2696 6.3609 6.3609 0 0 0-2.3672-.457zm36.998.0195a6.8275 6.8275 0 0 0-2.4082.4219 5.8943 5.8943 0 0 0-1.9804 1.205 5.6534 5.6534 0 0 0-1.3399 1.9083 6.1863 6.1863 0 0 0-.4902 2.5039 6.1772 6.1772 0 0 0 .4902 2.5039 5.6474 5.6474 0 0 0 1.3399 1.9102 6.0357 6.0357 0 0 0 1.9805 1.203 6.695 6.695 0 0 0 2.4082.4317 6.418 6.418 0 0 0 2.8378-.6055 6.8124 6.8124 0 0 0 2.1387-1.6074v-4.498h-5.5703v2.1914h3.086v1.4238a3.3626 3.3626 0 0 1-1.0235.6172 3.757 3.757 0 0 1-1.4629.2832 3.6606 3.6606 0 0 1-1.4629-.3008 3.516 3.516 0 0 1-1.1797-.793 3.5883 3.5883 0 0 1-.7617-1.2187 4.2356 4.2356 0 0 1-.2715-1.5371 4.1633 4.1633 0 0 1 .2715-1.5273 3.6997 3.6997 0 0 1 .7617-1.2188 3.516 3.516 0 0 1 1.1641-.8066 3.6666 3.6666 0 0 1 1.4629-.3008 2.9923 2.9923 0 0 1 1.6562.457 3.6124 3.6124 0 0 1 1.1114 1.0684l2.0761-1.1016a6.3217 6.3217 0 0 0-.789-1 5.1176 5.1176 0 0 0-1.0489-.834 5.545 5.545 0 0 0-1.3398-.5683 6.1441 6.1441 0 0 0-1.6562-.211zm-55.498.1758v11.6816h1.4531V60.043l3.9532 9.6133h.6015l3.9766-9.6133v9.6133h1.4394V57.9746h-2.0859l-3.6426 8.793-3.6133-8.793h-2.082zm25.6016 0v11.6816h1.455v-9.332l6.8145 9.332h1.4102V57.9746H65.58v9.1152l-6.7364-9.1152h-1.4882zm47.836 0v11.6816h2.4882v-8.1777l3.293 8.1778h1.0879l3.293-8.1778v8.1778h2.4862V57.9746h-3.498l-2.832 7.0586-2.836-7.0586h-3.4824zm14.539 0v11.6816L128 69.6543v-2.1895h-5.7793v-2.6425h5.6582v-2.1875h-5.6582V60.166H128v-2.1914h-8.2695zm-22.797.0117L92.418 69.67h2.8261l.7344-1.9785h5.0098l.7187 1.9648 2.8614.0137-4.5157-11.6836h-3.1191zm-46.66 1.0918a4.2145 4.2145 0 0 1 1.7656.3614 4.0068 4.0068 0 0 1 1.3496.9882 4.4553 4.4553 0 0 1 .8672 1.504 5.6835 5.6835 0 0 1 .3007 1.8945 5.6113 5.6113 0 0 1-.3007 1.8847 4.5547 4.5547 0 0 1-.8672 1.504 3.9135 3.9135 0 0 1-1.3496.998 4.2145 4.2145 0 0 1-1.7657.3613 4.2807 4.2807 0 0 1-1.7793-.3613 3.8833 3.8833 0 0 1-1.3574-.998 4.4734 4.4734 0 0 1-.8594-1.504 5.807 5.807 0 0 1-.3007-1.8847 5.8852 5.8852 0 0 1 .3007-1.8946 4.38 4.38 0 0 1 .8594-1.5039 3.9586 3.9586 0 0 1 1.3574-.9882 4.2807 4.2807 0 0 1 1.7793-.3614zm23.8984 0a4.2145 4.2145 0 0 1 1.7676.3614 4.0038 4.0038 0 0 1 1.3476.9882 4.4523 4.4523 0 0 1 .8672 1.504 5.6835 5.6835 0 0 1 .3008 1.8945 5.6113 5.6113 0 0 1-.3008 1.8847 4.5516 4.5516 0 0 1-.8672 1.504 3.9135 3.9135 0 0 1-1.3476.998 4.2145 4.2145 0 0 1-1.7676.3613 4.2777 4.2777 0 0 1-1.7696-.3613 3.8833 3.8833 0 0 1-1.3574-.998 4.4643 4.4643 0 0 1-.8594-1.504 5.807 5.807 0 0 1-.3007-1.8847 5.8852 5.8852 0 0 1 .3007-1.8946 4.368 4.368 0 0 1 .8594-1.5039 3.9586 3.9586 0 0 1 1.3477-.9882 4.2777 4.2777 0 0 1 1.7793-.3614zm24.3125 1.3887 1.8203 5.0293H96.662l1.8223-5.0293z"/></svg>
|
After Width: | Height: | Size: 3.9 KiB |
1
icons/netbeans/netbeans-original-wordmark.svg
Normal file
After Width: | Height: | Size: 5.1 KiB |
1
icons/netbeans/netbeans-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#a6043f" fill-rule="evenodd" d="M64 128 6.222 96.444V32l22.222 12.444v39.112L64 103.11"/><path fill="#95d921" fill-rule="evenodd" d="m6.222 32 22.222 12.444L64 24l35.556 20.444L121.778 32 64 0Z"/><path fill="#dcdfe7" fill-rule="evenodd" d="m64 24 35.556 20.444-35.556 20-35.556-20Z"/><path fill="#fff" fill-rule="evenodd" d="m28.444 44.444 35.556 20v38.667L28.444 83.556Z"/><path fill="#c9dae9" fill-rule="evenodd" d="m64 64.444 35.556-20v39.112L64 103.11Z"/><path fill="#1d6ac6" fill-rule="evenodd" d="m64 128 57.778-31.556V32L99.556 44.444v39.112L64 103.11"/><path fill="#ea1f5e" fill-rule="evenodd" d="M64 128 6.222 96.444l22.222-12.888L64 103.11"/><path fill="#2e90e9" fill-rule="evenodd" d="m64 128 57.778-31.556-22.222-12.888L64 103.11"/></svg>
|
After Width: | Height: | Size: 825 B |
1
icons/netbeans/netbeans-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#1e6abf" d="M16.963 45.209 0 54.605v18.92l16.963 9.266 16.965-9.266v-18.92L16.963 45.21zm0 7.047 9.935 5.713-9.935 5.588-9.934-5.588 9.934-5.713zm50.766 6.115v10.397h4.439c1.178 0 2.1-.25 2.764-.745.663-.504.994-1.197.994-2.078 0-.713-.207-1.302-.623-1.767-.416-.466-1.002-.753-1.754-.862.604-.128 1.075-.4 1.412-.816.346-.416.52-.925.52-1.53 0-.811-.303-1.444-.907-1.9-.594-.465-1.415-.699-2.465-.699h-4.38zm-28.026.016v10.38h2.317v-6.505l4.945 6.506h2.316V58.387h-2.316v6.681l-5.094-6.681h-2.168zm21.395 0v2.39h-.936v1.604h.936v3.683c0 .872.262 1.56.787 2.065.534.505 1.183.756 1.945.756.772 0 1.506-.316 2.2-.95l-.833-1.56c-.287.376-.639.564-1.054.564a.75.75 0 0 1-.565-.251c-.158-.179-.236-.42-.236-.727v-3.58h1.93v-1.604h-1.93v-2.39h-2.244zm-54.073.726 9.438 5.31v10.214l-9.438-5.192V59.113zm19.877 0v10.332l-9.44 5.194V64.424l9.44-5.31zm42.014.358h3.135c.703 0 1.246.148 1.633.445.386.287.578.698.578 1.232 0 .545-.192.97-.578 1.278-.387.297-.93.445-1.633.445h-3.135v-3.4zm-13.687 1.174a4.11 4.11 0 0 0-2.868 1.113c-.802.742-1.203 1.742-1.203 3 0 1.257.398 2.261 1.19 3.013.792.743 1.79 1.114 2.998 1.114 1.217 0 2.278-.424 3.18-1.276l-1.249-1.351c-.505.525-1.15.787-1.931.787-.485 0-.92-.139-1.307-.416-.386-.277-.612-.635-.682-1.07h5.82V64.37c0-1.158-.385-2.069-1.157-2.732-.763-.664-1.693-.994-2.791-.994zm52.091.251c-.782 0-1.43.183-1.945.55-.515.356-.771.886-.771 1.59 0 .464.114.841.341 1.128.238.287.52.51.846.668.327.149.753.3 1.277.459.624.178 1.09.363 1.397.55.307.189.46.47.46.847 0 .386-.159.678-.476.876-.307.198-.708.297-1.203.297-.465 0-.935-.09-1.41-.267a3.583 3.583 0 0 1-1.188-.729l-.445.848c.366.346.817.618 1.352.816a4.93 4.93 0 0 0 1.648.282c.812 0 1.489-.189 2.033-.565.555-.376.832-.926.832-1.648 0-.485-.117-.875-.355-1.172a2.371 2.371 0 0 0-.877-.684 10.419 10.419 0 0 0-1.322-.49 18.734 18.734 0 0 1-.98-.326 1.815 1.815 0 0 1-.595-.387.825.825 0 0 1-.236-.61c0-.356.139-.618.416-.786.287-.179.662-.266 1.127-.266.357 0 .723.053 1.1.162a3.86 3.86 0 0 1 1.025.461l.445-.89a4.428 4.428 0 0 0-1.158-.52 4.702 4.702 0 0 0-1.338-.194zM81.3 60.91c-.753 0-1.426.17-2.02.506a3.537 3.537 0 0 0-1.367 1.41c-.327.594-.49 1.273-.49 2.035 0 .773.163 1.46.49 2.065a3.56 3.56 0 0 0 1.367 1.394c.594.327 1.271.49 2.034.49.643 0 1.232-.108 1.767-.326a3.821 3.821 0 0 0 1.38-.964l-.638-.668a3.304 3.304 0 0 1-1.084.742c-.416.168-.86.252-1.336.252-.762 0-1.4-.232-1.916-.698-.514-.465-.82-1.085-.92-1.857h6.385c.06-1.346-.228-2.41-.861-3.191-.624-.792-1.554-1.19-2.791-1.19zm8.596 0c-.634 0-1.187.086-1.663.254-.465.168-.974.435-1.529.8l.49.817c.852-.604 1.677-.904 2.479-.904.683 0 1.204.163 1.56.49.357.317.534.766.534 1.35v.49h-2.569c-.92.01-1.637.22-2.152.625-.515.396-.774.934-.774 1.617 0 .446.109.847.327 1.203.217.357.53.64.935.848.406.208.872.31 1.397.31 1.287 0 2.243-.42 2.867-1.261v1.219h1.129L92.91 63.6c-.01-.842-.278-1.502-.803-1.977-.514-.475-1.252-.713-2.212-.713zm9.789 0c-1.485.02-2.495.61-3.03 1.768v-1.723h-1.158v7.813h1.158v-4.19c.07-.772.332-1.384.787-1.84.466-.465 1.08-.703 1.842-.713.693 0 1.233.198 1.62.594.395.396.593.94.593 1.633v4.516h1.158v-4.813c0-.95-.262-1.692-.787-2.226-.525-.545-1.253-.819-2.183-.819zm-18.385.967c.762 0 1.376.226 1.842.682.475.445.732 1.05.771 1.812h-5.346c.08-.762.367-1.367.862-1.812.495-.456 1.118-.682 1.87-.682zm-26.041.607c.445 0 .822.13 1.129.387.307.257.483.624.533 1.1h-3.504c.06-.456.272-.817.639-1.084a1.999 1.999 0 0 1 1.203-.403zm59.178.235v6.049h.689v-6.05h-.69zm2.53 0v6.049h2.419c.587 0 1.121-.134 1.6-.399a2.913 2.913 0 0 0 1.122-1.088c.277-.46.414-.974.414-1.539 0-.564-.137-1.076-.414-1.537a2.937 2.937 0 0 0-1.115-1.09c-.472-.265-1-.396-1.582-.396h-2.443zm6.817 0v6.049H128v-.641h-3.525V66.02h3.05v-.631h-3.05v-2.032h3.412v-.638h-4.104zm-6.127.638h1.739c.449 0 .857.108 1.226.32.369.208.66.493.873.856.219.363.328.77.328 1.219 0 .443-.107.846-.32 1.209a2.392 2.392 0 0 1-2.082 1.166h-1.764v-4.77zm-48.74.614h3.135c.841-.01 1.493.148 1.959.474.475.317.713.768.713 1.352 0 .604-.232 1.07-.698 1.396-.465.327-1.123.485-1.974.475h-3.135v-3.697zm20.43 1.158h2.435v.95c-.148.554-.46.989-.935 1.306-.466.307-1.03.46-1.694.46-.544 0-.98-.129-1.306-.386a1.293 1.293 0 0 1-.49-1.053c0-.851.663-1.277 1.99-1.277zm22.66 2.242a.676.676 0 0 0-.48.223.724.724 0 0 0-.208.535c0 .218.069.4.207.549a.704.704 0 0 0 .52.207.689.689 0 0 0 .506-.207.773.773 0 0 0 .207-.55.724.724 0 0 0-.207-.534.667.667 0 0 0-.506-.223h-.04z"/></svg>
|
After Width: | Height: | Size: 4.4 KiB |
1
icons/netbeans/netbeans-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#1e6abf" d="M64 0 6.223 32v64.445L64 128l57.777-31.555V32L64 0zm0 24 34.545 19.865L64 63.297 29.455 43.865 64 24zM29.445 46.154 63 65.03v36.39L29.445 82.966v-36.81zm69.11 0v36.81L65 101.42V65.03l33.555-18.876z"/></svg>
|
After Width: | Height: | Size: 293 B |
1
icons/newrelic/newrelic-line.svg
Normal file
After Width: | Height: | Size: 5.0 KiB |
1
icons/newrelic/newrelic-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M70.785 42.508v9.953l-8.617 4.977v6.222l14.008-8.09V39.395Zm0 0" style="stroke:none;fill-rule:nonzero;fill:#00ac69;fill-opacity:1"/><path d="m48.16 39.395 5.387 3.113 8.621-4.977 8.617 4.977 5.39-3.113-14.007-8.086Zm0 0" style="stroke:none;fill-rule:nonzero;fill:#1ce783;fill-opacity:1"/><path d="M48.16 39.395v6.222l8.617 4.98v9.954l5.391 3.11V47.483Zm44.55 34.382v3.528h2.25v19.05h3.97V73.777Zm9.466 0v3.97h3.965v-3.97Zm14.918 6.067c-4.762 0-8.254 3.492-8.254 8.414 0 4.918 3.492 8.41 8.254 8.41 4.273 0 6.41-2.691 7.261-5.063l-3.613-1.285c-.316 1.118-1.27 2.703-3.648 2.703-2.383 0-4.285-1.906-4.285-4.761 0-2.86 1.902-4.762 4.285-4.762 2.379 0 3.332 1.586 3.648 2.54l3.594-1.282c-.867-2.262-3.008-4.914-7.242-4.914ZM8.57 79.848c-3.015 0-4.445 1.906-4.445 1.906h-.156l-.317-1.586H0v16.187h3.969v-9.359c0-2.062 1.426-3.492 3.492-3.492 2.07 0 3.492 1.426 3.492 3.492v9.36h3.969v-9.68c0-4.13-2.7-6.828-6.352-6.828Zm17.14 0c-4.76 0-8.253 3.492-8.253 8.414s3.297 8.414 8.254 8.414c4.016 0 6.43-2.364 7.437-4.102l-3.64-1.304c-.36.66-1.813 1.925-3.797 1.925-2.313 0-3.969-1.449-4.285-3.664h12.062c.114-.52.168-1.05.16-1.586 0-4.613-3.492-8.097-7.937-8.097Zm58.626 0c-4.762 0-8.254 3.492-8.254 8.414s3.293 8.414 8.254 8.414c4.016 0 6.43-2.364 7.437-4.102L88.13 91.27c-.36.66-1.813 1.925-3.793 1.925-2.316 0-3.969-1.449-4.285-3.664h12.062c.11-.52.164-1.05.157-1.586 0-4.613-3.489-8.097-7.934-8.097Zm-11.133.32a3.565 3.565 0 0 0-2.86 1.426h-.16l-.316-1.422h-3.332v16.183h3.977v-9.359c0-2.062.953-3.016 3.015-3.016h2.035v-3.812Zm-38.55 0 4.124 16.187h4.832l2.7-10.472h.226l2.7 10.472h4.831l4.125-16.187h-4.125l-2.699 10.637h-.226l-2.7-10.637h-4.039l-2.699 10.637h-.226l-2.7-10.637Zm67.519 0v16.191h3.969V80.168ZM25.71 83.184c2.223 0 3.652 1.586 3.969 3.648h-8.254c.476-2.062 1.906-3.648 4.285-3.648Zm58.625 0c2.223 0 3.648 1.586 3.969 3.648H80.05c.476-2.062 1.902-3.648 4.285-3.648Zm42.137 10.058a1.536 1.536 0 0 0-1.43.93 1.532 1.532 0 0 0 1.988 2.016c.574-.235.95-.793.95-1.415a1.48 1.48 0 0 0-1.508-1.531Zm-.098.238a1.29 1.29 0 0 1 1.371 1.293 1.24 1.24 0 0 1-1.273 1.297 1.293 1.293 0 0 1-1.32-1.246 1.294 1.294 0 0 1 1.222-1.344Zm-.488.485v1.597h.234v-.554h.203l.551.555h.297l-.55-.555a.518.518 0 0 0 .347-.903.56.56 0 0 0-.403-.14Zm.75.234c.152.012.273.14.273.297 0 .172-.105.277-.34.277h-.445V94.2h.445a.19.19 0 0 1 .067 0Zm0 0" style="stroke:none;fill-rule:nonzero;fill:#1d252c;fill-opacity:1"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
icons/newrelic/newrelic-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="m62.168 31.309-12.371 7.14 5.39 3.114 6.981-4.032 8.617 4.977v9.953l-6.976 4.031v6.223l12.367-7.145V39.395ZM48.16 39.395v6.222l8.617 4.98v9.954l5.391 3.11V47.483Zm44.55 34.382v3.528h2.25v19.05h3.97V73.777Zm9.466 0v3.97h3.965v-3.97Zm14.918 6.067c-4.762 0-8.254 3.492-8.254 8.414 0 4.918 3.492 8.41 8.254 8.41 4.273 0 6.41-2.691 7.261-5.063l-3.613-1.285c-.316 1.118-1.27 2.703-3.648 2.703-2.383 0-4.285-1.906-4.285-4.761 0-2.86 1.902-4.762 4.285-4.762 2.379 0 3.332 1.586 3.648 2.54l3.594-1.282c-.867-2.262-3.008-4.914-7.242-4.914ZM8.57 79.848c-3.015 0-4.445 1.906-4.445 1.906h-.156l-.317-1.586H0v16.187h3.969v-9.359c0-2.062 1.426-3.492 3.492-3.492 2.07 0 3.492 1.426 3.492 3.492v9.36h3.969v-9.68c0-4.13-2.7-6.828-6.352-6.828Zm17.14 0c-4.76 0-8.253 3.492-8.253 8.414s3.297 8.414 8.254 8.414c4.016 0 6.43-2.364 7.437-4.102l-3.64-1.304c-.36.66-1.813 1.925-3.797 1.925-2.313 0-3.969-1.449-4.285-3.664h12.062c.114-.52.168-1.05.16-1.586 0-4.613-3.492-8.097-7.937-8.097Zm58.626 0c-4.762 0-8.254 3.492-8.254 8.414s3.293 8.414 8.254 8.414c4.016 0 6.43-2.364 7.437-4.102L88.13 91.27c-.36.66-1.813 1.925-3.793 1.925-2.316 0-3.969-1.449-4.285-3.664h12.062c.11-.52.164-1.05.157-1.586 0-4.613-3.489-8.097-7.934-8.097Zm-11.133.32a3.565 3.565 0 0 0-2.86 1.426h-.16l-.316-1.422h-3.332v16.183h3.977v-9.359c0-2.062.953-3.016 3.015-3.016h2.035v-3.812Zm-38.55 0 4.124 16.187h4.832l2.7-10.472h.226l2.7 10.472h4.831l4.125-16.187h-4.125l-2.699 10.637h-.226l-2.7-10.637h-4.039l-2.699 10.637h-.226l-2.7-10.637Zm67.519 0v16.191h3.969V80.168ZM25.71 83.184c2.223 0 3.652 1.586 3.969 3.648h-8.254c.476-2.062 1.906-3.648 4.285-3.648Zm58.625 0c2.223 0 3.648 1.586 3.969 3.648H80.05c.476-2.062 1.902-3.648 4.285-3.648Zm42.137 10.058a1.536 1.536 0 0 0-1.43.93 1.532 1.532 0 0 0 1.988 2.016c.574-.235.95-.793.95-1.415a1.48 1.48 0 0 0-1.508-1.531Zm-.098.238a1.29 1.29 0 0 1 1.371 1.293 1.24 1.24 0 0 1-1.273 1.297 1.293 1.293 0 0 1-1.32-1.246 1.294 1.294 0 0 1 1.222-1.344Zm-.488.485v1.597h.234v-.554h.203l.551.555h.297l-.55-.555a.518.518 0 0 0 .347-.903.56.56 0 0 0-.403-.14Zm.75.234c.152.012.273.14.273.297 0 .172-.105.277-.34.277h-.445V94.2h.445a.19.19 0 0 1 .067 0Zm0 0" style="stroke:none;fill-rule:nonzero;fill:#1d252c;fill-opacity:1"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
icons/ngrok/ngrok-line.svg
Normal file
After Width: | Height: | Size: 6.3 KiB |
1
icons/ngrok/ngrok-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path fill="#02228e" d="M101.076 40.521v35.801h7.805V67.31l8.586 9.011h10.539v-.422l-11.32-11.48 10.68-9.848v-.375h-10.294l-8.191 7.98V40.522h-7.805zM85.453 53.38c-1.93 0-3.707.3-5.328.902-1.625.602-3.023 1.434-4.207 2.477a11.36 11.36 0 0 0-2.766 3.71c-.66 1.427-.988 2.962-.988 4.598 0 1.813.328 3.461.988 4.938a11.388 11.388 0 0 0 2.746 3.816c1.165 1.063 2.547 1.887 4.16 2.461 1.614.574 3.368.864 5.266.864 1.926 0 3.715-.29 5.375-.864 1.653-.574 3.07-1.386 4.246-2.441a11.41 11.41 0 0 0 2.785-3.754c.676-1.453 1.016-3.05 1.016-4.813 0-1.75-.332-3.359-.988-4.808a11.295 11.295 0 0 0-2.793-3.75c-1.192-1.047-2.602-1.863-4.227-2.453-1.625-.59-3.386-.883-5.285-.883zm-48.336.207c-1.613 0-3.101.309-4.465.93a10.922 10.922 0 0 0-3.539 2.543c-.992 1.082-1.773 2.34-2.347 3.8-.578 1.45-.864 3.024-.864 4.723 0 1.668.266 3.184.797 4.559.535 1.363 1.278 2.535 2.238 3.511a10.36 10.36 0 0 0 3.434 2.29c1.324.546 2.777.82 4.356.82.714 0 1.378-.051 1.98-.153a7.98 7.98 0 0 0 1.727-.496 10 10 0 0 0 1.62-.883 13.518 13.518 0 0 0 1.657-1.359v5.8h-.004v.563h-7.309l-5.492 6.184v1.062H51.52V54.195h-7.81v2.328c-1.776-1.953-3.98-2.937-6.593-2.937zm-25.629.582-3.68 4.195v-4.11H0v22.134h7.809V61.453h7.332l.609-.012v14.942h7.809V62.539c0-1.18-.114-2.23-.34-3.152a6.125 6.125 0 0 0-1.293-2.504 8.425 8.425 0 0 0-1.383-1.285 8.41 8.41 0 0 0-1.441-.848 6.597 6.597 0 0 0-.782-.293 8.821 8.821 0 0 0-1.265-.289h-5.567zm43.278.027v22.133h7.828l.008-14.812h5.68l6.202-7.012v-.309H65.97l-3.387 3.813v-3.813h-7.816zm-15.711 5.953c.664 0 1.3.13 1.922.391a4.943 4.943 0 0 1 1.617 1.074c.465.465.824.992 1.105 1.594.274.602.41 1.266.41 1.988a4.867 4.867 0 0 1-.418 1.961 5.646 5.646 0 0 1-1.074 1.617c-.449.461-.98.817-1.594 1.079a4.975 4.975 0 0 1-1.96.386 5.094 5.094 0 0 1-2.008-.386 4.829 4.829 0 0 1-1.598-1.079 5.226 5.226 0 0 1-1.059-1.617 5.11 5.11 0 0 1-.386-2.008c0-.691.133-1.34.406-1.941a5.031 5.031 0 0 1 1.105-1.574 5.56 5.56 0 0 1 1.594-1.074 4.576 4.576 0 0 1 1.938-.41zm46.402 0a4.95 4.95 0 0 1 1.961.391 4.613 4.613 0 0 1 1.594 1.074c.449.465.8 1.004 1.078 1.621.273.614.406 1.27.406 1.961a4.89 4.89 0 0 1-.406 2 5.684 5.684 0 0 1-1.078 1.618 4.78 4.78 0 0 1-1.594 1.078c-.621.261-1.27.39-1.961.39a5.011 5.011 0 0 1-1.965-.39 4.677 4.677 0 0 1-1.594-1.079c-.449-.46-.804-1-1.078-1.617-.273-.617-.406-1.297-.406-2.047 0-.691.133-1.34.406-1.941a5.597 5.597 0 0 1 1.078-1.594c.45-.46.977-.82 1.594-1.074a4.984 4.984 0 0 1 1.965-.39z"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#412846" d="M64.1 1.4L5.6 21.7 14 99.3l50.1 27.3z"/><path fill="#4b314f" d="M63.9 1.4l58.5 20.3-8.4 77.6-50.1 27.3z"/><path fill="#ba2bd2" d="M93.2 44.3l-.1-.1q4 4.5 4.2 10.6.1 6.1-4.2 12.9 3.2-2.5 7.4-10.6 1.8 16.5-13.5 25.1 4.9-.4 12.9-6.4-8.5 20.6-31.4 21.7c-14.8 0-24.3-8.8-24.3-8.8q-9.1-7.1-12.5-17.9c-3.7-3.9-3.7-4.3-4.1-5.9-.3-1.6.3-2.1 1.3-3.6q1.1-1.6.5-4.4-1.3-1.9-1.5-5.9 0-2 2.6-4.1 2.6-2.2 3.1-3.3.5-.6.4-5.4-.1-4.7 5.2-5.1c5.2-.4 8.1-4.3 9.8-6.1 1.1-1.2 2.7-1.8 4.7-1.8 2.9-.1 5.5 1 7.8 3.3 5.6-.3 11.3 1.2 17.1 4.5Q91 40.3 92.2 48.9q-1.4 11.3-30.2-.6-15.1 4.3-14.9 18.5 0 13.1 12.7 19c-4.1-4-5.9-7.4-5.3-10.2Q67.3 90.8 83.6 87q-7.1.2-11.4-4.7Q83.2 82 93 72q-5.6 4.5-11.9 3.4 17-13.3 12.1-31.1zm-19-3.1c0-.9-.7-1.6-1.6-1.6-.9 0-1.7.7-1.7 1.6 0 .9.8 1.7 1.7 1.7.9 0 1.6-.8 1.6-1.7z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><radialGradient id="a" cx="0" cy="0" r="1" gradientTransform="scale(65.63115 69.41526) rotate(90 .067 .91)" gradientUnits="userSpaceOnUse"><stop stop-color="#aa1bb6"/><stop offset="1" stop-color="#452070"/></radialGradient><radialGradient id="b" cx="0" cy="0" r="1" gradientTransform="matrix(42.97181 21.48586 -19.17351 38.34712 63.931 62.152)" gradientUnits="userSpaceOnUse"><stop offset=".271" stop-color="#b1219b"/><stop offset="1" stop-color="#5306A1"/></radialGradient></defs><path fill="url(#a)" d="m124.511 21.34-4.37 68.567L78.36 0ZM95.571 110l-31.57 18-31.572-18 1.784-10.49H93.79ZM7.814 89.908 3.49 21.341 49.64 0Z"/><path fill="url(#b)" fill-rule="evenodd" d="m93.64 55.49-.004.031C91.79 66.288 84.643 73.094 72.2 75.941c3.078 2.156 6.671 2.74 10.832 1.763-7.769 2.88-14.623 2.987-20.58.345 1.048 3.71 3.505 6.386 7.41 8.069-9.679-2.079-16.026-8.781-19.027-20.102-1.533 2.022-1.417 5.394.34 10.172-5.24-6.345-6.218-13.015-2.91-19.993 3.466-7.67 9.762-10.744 18.892-9.219C79.55 60.574 87.54 64.545 91.09 58.873c1.554-4.851-.043-10.82-4.8-17.883-3.417-4.825-7.44-8.21-12.036-10.099-.941-2.67-2.615-4.541-4.965-5.52-1.636-.763-3.15-.912-4.475-.373a39.575 39.575 0 0 0-.643.271c-2.11.903-5.614 2.404-9.516.922-2.887-1.097-4.914-.394-6.08 2.109-1.148 2.565-1.918 3.959-2.308 4.18-.594.462-1.857.945-3.778 1.44-1.921.496-3.126 1.26-3.615 2.294-.902 2.19-1.229 3.958-.98 5.303-.433 1.668-1.13 2.795-2.087 3.354a28.706 28.706 0 0 1-.635.357c-1.004.554-1.507.831-1.758 2.014l-.02.096c-.286 1.331-.38 1.772.99 6.212-.894 6.586.192 12.93 3.258 19.006-.004-.008 4.287 10.709 16.091 16.295 12.503 5.17 23.636 3.337 33.397-5.498-5.783 1.166-10.04 1.246-12.75.258 10.307-.752 17.052-5.777 20.27-15.07-4.286 3.31-7.604 5.239-9.934 5.758 3.99-2.542 6.72-5.475 8.21-8.774 1.488-3.3 1.727-6.644.716-10.034zM77.909 41.82c-.942 1.216-2.193 4.045.333 5.637 2.526 1.592 1.4-.4.522-1.596-.878-1.195-.855-4.041-.855-4.041z" clip-rule="evenodd"/></svg>
|
||||
|
Before Width: | Height: | Size: 877 B After Width: | Height: | Size: 2.0 KiB |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64.1 126.6l-.1-.1-.1.1v-.1L14 99.3 5.6 21.7 63.9 1.5v-.1h.2v.1l58.3 20.2-8.4 77.6-49.9 27.2zm29.1-82.3l-.1-.1.1.1zm0 0q4.9 17.8-12.1 31.1Q87.4 76.5 93 72q-9.8 10-20.8 10.3 4.3 4.9 11.4 4.7-16.3 3.8-29.1-11.4c-.6 2.8 1.2 6.2 5.3 10.2q-12.7-5.9-12.7-19-.2-14.2 14.9-18.5 28.8 11.9 30.2.6Q91 40.3 78.6 33q-8.7-5-17.1-4.5-3.4-3.5-7.8-3.3c-2 0-3.6.6-4.7 1.8-1.7 1.8-4.6 5.7-9.8 6.1q-5.3.4-5.2 5.1.1 4.8-.4 5.4-.5 1.1-3.1 3.3-2.6 2.1-2.6 4.1.2 4 1.5 5.9.6 2.8-.5 4.4c-1 1.5-1.6 2-1.3 3.6.4 1.6.4 2 4.1 5.9q3.4 10.8 12.5 17.9s9.5 8.8 24.3 8.8q22.9-1.1 31.4-21.7-8 6-12.9 6.4 15.3-8.6 13.5-25.1-4.2 8.1-7.4 10.6 4.3-6.8 4.2-12.9-.2-6-4.1-10.5zm-20.6-1.4c-.9 0-1.7-.8-1.7-1.7 0-.9.8-1.6 1.7-1.6.9 0 1.6.7 1.6 1.6 0 .9-.7 1.7-1.6 1.7z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ba2bd2" d="M49.64 0 3.489 21.34l4.326 68.566Zm28.72 0 41.78 89.906 4.372-68.566zM66.38 24.678a4.39 4.39 0 0 0-1.566.32 39.575 39.575 0 0 0-.644.272c-2.11.903-5.613 2.403-9.516.921-2.887-1.096-4.914-.394-6.08 2.108-1.148 2.566-1.918 3.959-2.308 4.18-.594.462-1.856.946-3.778 1.44-1.92.496-3.126 1.26-3.615 2.294-.902 2.19-1.229 3.96-.98 5.305-.433 1.668-1.128 2.794-2.086 3.353a28.706 28.706 0 0 1-.637.358c-1.004.553-1.506.83-1.758 2.013l-.02.096c-.284 1.332-.38 1.773.99 6.213-.894 6.585.193 12.928 3.259 19.004-.004-.008 4.287 10.71 16.091 16.297 12.504 5.17 23.636 3.337 33.397-5.498-5.783 1.165-10.04 1.246-12.75.257 10.307-.752 17.052-5.777 20.271-15.07-4.286 3.31-7.606 5.238-9.935 5.758 3.99-2.543 6.72-5.474 8.209-8.774 1.489-3.299 1.728-6.645.717-10.035l-.004.031c-1.848 10.767-8.994 17.572-21.438 20.418 3.078 2.157 6.672 2.742 10.832 1.764-7.769 2.88-14.622 2.988-20.58.346 1.048 3.71 3.505 6.386 7.41 8.068-9.68-2.078-16.026-8.78-19.027-20.101-1.532 2.022-1.418 5.394.34 10.171-5.241-6.344-6.217-13.013-2.91-19.992 3.466-7.67 9.763-10.744 18.892-9.218C79.55 60.574 87.54 64.545 91.09 58.873c1.553-4.851-.044-10.82-4.8-17.883-3.417-4.825-7.442-8.21-12.038-10.1-.941-2.67-2.614-4.54-4.963-5.519-1.023-.477-1.997-.714-2.908-.693zM77.909 41.82s-.023 2.846.856 4.041c.878 1.196 2.003 3.188-.524 1.596-2.526-1.592-1.273-4.42-.332-5.637zM34.213 99.51 32.43 110 64 128l31.57-18-1.78-10.49Z"/></svg>
|
||||
|
Before Width: | Height: | Size: 806 B After Width: | Height: | Size: 1.4 KiB |
1
icons/npm/npm-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path fill="#cb3837" d="m0 7.0624c0-3.8376 3.2248-7.0624 7.0624-7.0624h113.88c3.8376 0 7.0624 3.2248 7.0624 7.0624v113.88c0 3.8376-3.2248 7.0624-7.0624 7.0624h-113.88c-3.8376 0-7.0624-3.2248-7.0624-7.0624zm23.69 97.518h40.395l0.04975-58.532h19.494l-0.04975 58.581h19.543l0.0508-78.075-78.076-0.0995-0.0995 78.125z" /><path fill="#fff" d="m25.105 65.52v-39.008h15.855c8.7201 0 26.274 0.03373 39.008 0.07496l23.153 0.07496v77.866h-19.476v-58.54h-19.588v58.54h-38.952z" /></svg>
|
After Width: | Height: | Size: 538 B |
1
icons/npm/npm-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path fill="#cb3837" d="m0 7.0624c0-3.8376 3.2248-7.0624 7.0624-7.0624h113.88c3.8376 0 7.0624 3.2248 7.0624 7.0624v113.88c0 3.8376-3.2248 7.0624-7.0624 7.0624h-113.88c-3.8376 0-7.0624-3.2248-7.0624-7.0624zm23.69 97.518h40.395l0.04975-58.532h19.494l-0.04975 58.581h19.543l0.0508-78.075-78.076-0.0995-0.0995 78.125z" /></svg>
|
After Width: | Height: | Size: 386 B |
1
icons/passport/passport-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#35df79" d="M6.872 62.215c6.212-.428 10.288-2.485 10.288-7.26 0-5.435-5.941-6.444-10.288-6.64v.428c3.455.428 5.474 1.63 5.474 6.29 0 4.386-1.438 6.248-5.474 6.754zM0 72.775h4.736v-24.46H0Zm22.166.31c2.486 0 3.688-1.477 4.312-2.408v-.31c-.585.428-1.245 1.01-2.525 1.01-1.669 0-2.215-1.28-2.215-3.107 0-1.826.625-2.525 1.206-2.988.777-.467 2.175-.934 3.416-1.359v-.35c-2.057.425-4.582 1.089-5.513 1.399-1.476.62-3.106 1.433-3.106 4.037 0 2.171 1.437 4.076 4.425 4.076zm5.164-.31h4.115V60.271c0-3.26-2.171-4.504-5.434-4.504-2.097 0-4.347.777-5.242 1.476v.31c.66-.27 1.633-.388 2.603-.388 2.678 0 3.958.934 3.958 3.765zm-6.91-11.106c1.047 0 1.668-.698 1.668-1.63 0-.93-.62-1.668-1.669-1.668-1.048 0-1.669.738-1.669 1.669 0 .93.62 1.63 1.67 1.63zm19.84 11.416c3.57-.193 6.095-2.329 6.095-5.631 0-2.29-1.245-3.688-3.534-4.736l-3.067-1.398c-1.398-.62-2.136-1.359-2.136-2.796 0-1.512 1.245-2.25 2.525-2.446v-.31c-3.224.196-5.592 2.407-5.592 5.01 0 2.6 1.826 3.844 3.613 4.696l2.482 1.127c1.672.739 2.642 1.438 2.642 3.028 0 1.9-1.594 2.914-3.027 3.106zm-1.205-.35c-1.437-.507-2.913-1.747-4.425-3.298v2.988c1.202.35 2.988.542 4.425.66zm6.173-16.382c-1.048-.31-2.525-.546-4.076-.585v.31c1.59.585 2.875 1.516 4.076 2.913zm9.087 16.732c3.57-.193 6.094-2.329 6.094-5.631 0-2.29-1.245-3.688-3.534-4.736l-3.067-1.398c-1.398-.62-2.136-1.359-2.136-2.796 0-1.512 1.245-2.25 2.525-2.446v-.31c-3.224.196-5.592 2.407-5.592 5.01 0 2.6 1.826 3.844 3.613 4.696l2.482 1.127c1.672.739 2.642 1.438 2.642 3.028 0 1.9-1.594 2.914-3.027 3.106zm-1.206-.35c-1.437-.507-2.91-1.747-4.425-3.298v2.988c1.201.35 2.988.542 4.425.66zm6.173-16.382c-1.048-.31-2.525-.546-4.076-.585v.31c1.59.585 2.874 1.516 4.076 2.913zm4.115 23.332h4.155v-7.028c.891.27 1.9.388 2.835.428v-.35c-.817-.118-2.097-.66-2.835-1.127V55.693l-4.155.503zm8.078-6.6c6.015-.31 9.278-3.727 9.278-9.2 0-5.165-2.254-8.117-6.757-8.117-2.368 0-4.504 1.244-5.553 2.603v.35c.895-.62 2.022-1.167 3.456-1.167 3.145 0 4.504 2.019 4.504 6.99 0 5.317-2.097 7.88-4.928 8.191zm19.527-.35a3.7 3.7 0 0 1-1.669-.777c-1.708-1.398-2.214-3.959-2.214-7.532 0-3.609.506-6.173 2.214-7.531.424-.39.97-.66 1.67-.817v-.31c-4.701.428-8.231 4-8.231 8.658 0 4.622 3.53 8.23 8.23 8.659zm1.433.35c4.662-.428 8.27-4.037 8.27-8.659 0-4.657-3.608-8.23-8.27-8.658v.31c.664.157 1.245.428 1.713.817 1.708 1.358 2.21 3.922 2.21 7.531 0 3.573-.502 6.134-2.21 7.532-.468.349-1.049.66-1.713.777zm16.269-12.542c1.048-1.045 2.486-1.473 3.884-1.473.812 0 1.397.079 1.822.27v-3.415c-.271-.118-.66-.157-1.163-.157-2.525 0-4.115 2.175-4.543 4.39zm-5.085 12.231h4.154V55.732l-4.154.464zm19.217.31c2.64 0 4.504-1.205 5.164-2.25v-.428c-.467.31-1.747.62-2.835.62-2.29 0-2.796-1.515-2.796-3.533V57.44h5.085v-1.362h-5.085v-5.706l-4.115 1.437v4.269h-2.482v1.362h2.482v10.52c0 3.416 1.516 5.125 4.582 5.125zm0 0"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
icons/passport/passport-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#d5ff00" d="M64 0C35.602 0 12.598 22.913 12.598 51.2H38.3c0-14.132 11.515-25.601 25.7-25.601Zm0 0"/><path fill="#35df79" d="M115.402 51.2C115.402 22.914 92.398 0 64 0v25.598c14.185 0 25.7 11.469 25.7 25.603zm0 0"/><path fill="#00b9f1" d="M64 102.402c28.398 0 51.402-22.914 51.402-51.201H89.7c0 14.129-11.515 25.598-25.7 25.598Zm0 0"/><path fill="#fff" d="M38.3 102.402V51.2H12.597V128H64v-25.598zm0 0"/></svg>
|
After Width: | Height: | Size: 505 B |
1
icons/passport/passport-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#35df79" d="M64.402 0C36.004 0 13 22.913 13 51.2h25.7c0-14.133 11.517-25.602 25.702-25.602Zm51.401 51.2C115.803 22.914 92.8 0 64.402 0v25.598c14.185 0 25.7 11.469 25.7 25.603zm-51.401 51.202c28.397 0 51.401-22.914 51.401-51.201h-25.7c0 14.13-11.516 25.598-25.701 25.598Zm-25.701 0V51.2H13V128h51.402v-25.598zm0 0"/></svg>
|
After Width: | Height: | Size: 396 B |
1
icons/pm2/pm2-line-wordmark.svg
Normal file
After Width: | Height: | Size: 10 KiB |
1
icons/pm2/pm2-line.svg
Normal file
After Width: | Height: | Size: 5.7 KiB |
1
icons/pm2/pm2-original-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="56.937" x2="39.16" y1="54.842" y2="38.813" gradientTransform="matrix(.33958 0 0 .18405 0 48.427)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#520BF5"/><stop offset="100%" stop-color="#9D1FE0"/><stop offset="100%" stop-color="#9D1FE0"/></linearGradient><linearGradient id="b" x1="56.667" x2="35.623" y1="113.721" y2="132.123" gradientTransform="matrix(.33777 0 0 .18504 0 48.427)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#9E1FA7"/><stop offset="100%" stop-color="#E540AE"/></linearGradient><linearGradient id="c" x1="190.497" x2="123.747" y1="49.8" y2="49.8" gradientTransform="matrix(.19947 0 0 .31333 0 48.427)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#4B6AF2"/><stop offset="100%" stop-color="#4CA7EB"/></linearGradient></defs><path fill="url(#a)" d="m26.017 48.427-1.388 2.38a.853.853 0 0 1-.738.423.854.854 0 0 1-.737-1.283l.887-1.52h-2.493a.844.844 0 0 1-.111.427L17.6 55.48c-.94 1.631-2.959 2.577-4.528 2.577h-1.229a.853.853 0 0 1 0-1.707h1.229c1.112 0 2.387-.79 3.02-1.669.422-.585 1.629-2.67 3.62-6.254h-2.267c-3.58 7.71-5.714 6.217-12.114 6.217-.423.641-.85 1.286-1.266 1.92h4.466a.853.853 0 0 1 0 1.706H2.953c-.381.591-.743 1.162-1.075 1.699l14.02-.099h-.627c.849.018 2.222-.48 2.887-1.524l3.306-5.225a.853.853 0 0 1 1.177-.265.854.854 0 0 1 .265 1.177l-3.307 5.227c-.997 1.566-2.884 2.342-4.353 2.317l-14.381.105c-.667 1.2-.865 1.983-.857 2.349h19.064l9.726-14.934c-.614-.354-1.493-.64-2.619-.67z"/><path fill="url(#b)" d="M19.072 64.03H.008c-.061.905.221 1.844.751 2.669h12.764c1.986-.218 3.748.608 5.286 2.478l3.2 5.174a.853.853 0 0 1-.267 1.177.852.852 0 0 1-1.177-.268c-1.973-3.199-3.175-5.008-3.605-5.428-.645-.63-1.47-1.422-3.437-1.422H1.83l1.14 1.809h4.557a.853.853 0 0 1 0 1.707H4.045l1.073 1.705c7.68 0 8.747.853 11.384 5.942h2.237c-1.91-3.412-3.118-5.424-3.622-6.038-.756-.92-1.775-1.61-3.094-1.61H10.84a.853.853 0 0 1 0-1.706h1.184c1.809 0 3.84 1.162 4.573 2.577l4.049 6.626a.856.856 0 0 1 .068.151h3.051l-.974-1.67a.853.853 0 0 1 .307-1.168.851.851 0 0 1 .429-.116.853.853 0 0 1 .738.423l1.476 2.531h.75c.595.002 1.031-.061 1.88-.61z"/><path fill="url(#c)" d="m28.798 49.097-1.185 1.804 1.469 2.203a.853.853 0 0 1-.237 1.183.848.848 0 0 1-.472.144.852.852 0 0 1-.711-.38l-1.067-1.6-1.178 1.792 4.208 6.888a4.956 4.956 0 0 1-.012 5.212 1.008 1.008 0 0 1-.04.06l-.516.696a.853.853 0 0 1-.686.345.854.854 0 0 1-.685-1.362l.493-.664a3.258 3.258 0 0 0-.01-3.398l-3.789-6.2-5.395 8.21 4.243-6.395 2.095 3.237a5.007 5.007 0 0 1-.01 5.457l-2.488 3.81-3.84-6.108 4.936 7.853 2.275-3.032a.854.854 0 0 1 1.365 1.024l-2.667 3.556 1.297 2.063 6.287-9.927c.717-1.132.726-2.6.021-3.74l-3.04-4.922a.853.853 0 0 1 1.452-.897l3.04 4.922a5.265 5.265 0 0 1-.03 5.55l-6.642 10.486a.848.848 0 0 1-.09.116l1.182 1.88c.515-.406.881-.747 1.1-1.024 2.504-3.172 5.11-6.982 7.818-11.432.928-1.524.952-3.412.034-4.93-3.49-5.78-7.368-11.907-8.525-12.48Z"/><path d="M120.747 55.574c5.49 0 7.219 2.3 7.253 4.169v1.59a2.67 2.67 0 0 1-.048.367l-.02.095c-.34 1.436-1.97 3.248-7.296 3.454h-.032l-9.28-.075h-.09l-.178.002-.17.005-.164.006-.158.009a13.977 13.977 0 0 0-.076.005l-.147.011-.142.014-.135.016-.129.017-.123.02c-.983.17-1.392.537-1.554 1.051l-.019.064-.016.065-.014.067-.012.068-.01.07a.416.416 0 0 0-.004.035l-.007.071-.006.073-.004.074-.004.114-.002.156v.12l.001 2.346h18.56c.962 0 1.23.419 1.273 1.063l.004.085.002.088v.13l-.003.083-.002.041-.006.08a1.733 1.733 0 0 1-.028.188l-.016.07c-.116.448-.439.71-1.224.648h-20.267l-.106.007-.102.005-.097.003c-.843.015-1.188-.274-1.188-1.424v-3.627c0-2.715 2.107-3.803 3.947-4.225l.164-.036.162-.033a9.91 9.91 0 0 1 .16-.03l.157-.026.155-.023.15-.02.148-.018.073-.008.14-.015.137-.012.132-.01.187-.01.173-.008.16-.004.096-.001h9.86c2.27 0 3.201-.67 3.582-1.258l.038-.063.035-.062.016-.03.029-.061.026-.059a.963.963 0 0 0 .011-.029l.021-.056.009-.028.017-.054.013-.051.012-.05.013-.069.007-.042.007-.058.004-.065v-.102l.006-.05.003-.056v-.114l-.003-.045-.004-.049-.006-.051-.008-.055-.01-.057-.014-.06-.017-.062a7.816 7.816 0 0 1-.008-.032l-.022-.064c-.245-.701-1.1-1.687-3.96-1.756h-8.757c-.766 0-1.387-.62-1.387-1.386 0-.766.62-1.067 1.387-1.067zm-23.226 5.02L87.83 71.42c-1.295 1.26-2.787 1.26-4.068 0L73.724 60.414V70.9a1.706 1.706 0 1 1-3.414-.052l.213-13.815c.009-.561.266-1.103.727-1.423a1.707 1.707 0 0 1 2.215.219l12.078 12.776a.17.17 0 0 0 .25-.005l11.611-12.446c.47-.53 1.647-.78 2.309-.53.662.25 1.167.89 1.17 1.598v13.626c0 1.284-.801 1.306-1.773 1.306-.942 0-1.64-.015-1.64-1.272 0-.838.017-4.268.051-10.29zm-37.894-5.127c3.23 0 7.038 1.321 7.038 4.473v1.855c0 2.97-3.558 4.544-6.502 4.449l-12.538-.004v4.858c0 .542-.427.984-.963 1.008h-1.493a1.01 1.01 0 0 1-1.008-.962l-.001-.046V56.564c0-.59.467-1.072 1.051-1.096l.047-.001zm.447 2.56H47.467v5.595l12.586-.048c1.892 0 3.358 0 3.413-1.779V59.94c0-1.913-2.13-1.914-3.392-1.913z"/></svg>
|
After Width: | Height: | Size: 4.8 KiB |
1
icons/pm2/pm2-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="95.898" x2="65.956" y1="92.37" y2="65.372" gradientTransform="matrix(.67916 0 0 .3681 0 11.54)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#520BF5"/><stop offset="100%" stop-color="#9D1FE0"/><stop offset="100%" stop-color="#9D1FE0"/></linearGradient><linearGradient id="b" x1="95.443" x2="59.999" y1="191.538" y2="222.533" gradientTransform="matrix(.67553 0 0 .37008 0 11.54)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#9E1FA7"/><stop offset="100%" stop-color="#E540AE"/></linearGradient><linearGradient id="c" x1="320.85" x2="208.425" y1="83.877" y2="83.877" gradientTransform="matrix(.39894 0 0 .62666 0 11.54)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#4B6AF2"/><stop offset="100%" stop-color="#4CA7EB"/></linearGradient></defs><path fill="url(#a)" d="m87.64 11.54-4.677 8.02a2.872 2.872 0 0 1-2.486 1.425 2.86 2.86 0 0 1-1.446-.392 2.875 2.875 0 0 1-1.034-3.931l2.987-5.122h-8.399c0 .49-.111.986-.374 1.44L59.288 35.3c-3.169 5.495-9.968 8.681-15.255 8.681h-4.137a2.875 2.875 0 0 1 0-5.749h4.137c3.747 0 8.041-2.663 10.174-5.622 1.422-1.973 5.486-8.996 12.194-21.07h-7.635C46.705 37.514 39.518 32.483 17.959 32.483c-1.427 2.162-2.862 4.331-4.265 6.468h15.045a2.875 2.875 0 0 1 0 5.749H9.946a356.912 356.912 0 0 0-3.62 5.72l47.228-.331-2.114.001c2.86.058 7.487-1.616 9.727-5.137l11.135-17.6a2.874 2.874 0 1 1 4.858 3.074L66.02 48.034c-3.358 5.276-9.714 7.889-14.665 7.805l-48.443.355C.667 60.233 0 62.872.028 64.103h64.216l32.764-50.304c-2.068-1.192-5.03-2.156-8.82-2.259Z"/><path fill="url(#b)" d="M64.244 64.103H.028c-.206 3.045.743 6.209 2.53 8.988h42.994c6.69-.735 12.626 2.048 17.807 8.346l10.782 17.43a2.874 2.874 0 0 1-.9 3.965 2.86 2.86 0 0 1-1.53.442 2.872 2.872 0 0 1-2.435-1.344c-6.647-10.775-10.695-16.87-12.144-18.285-2.172-2.122-4.954-4.788-11.58-4.788H6.17l3.836 6.091h15.352a2.875 2.875 0 0 1 0 5.75H13.625l3.616 5.743c25.87 0 29.464 2.874 38.346 20.019h7.536c-6.436-11.493-10.503-18.273-12.2-20.34-2.547-3.099-5.978-5.423-10.421-5.423h-3.988a2.875 2.875 0 0 1 0-5.748h3.988c6.095 0 12.935 3.915 15.404 8.681l13.641 22.32c.096.165.171.336.23.51h10.278l-3.284-5.63a2.875 2.875 0 0 1 1.034-3.931 2.868 2.868 0 0 1 1.446-.392c.99 0 1.952.51 2.486 1.427l4.974 8.526h2.528c2.003.006 3.47-.207 6.332-2.053z"/><path fill="url(#c)" d="m97.009 13.799-3.993 6.076 4.947 7.42a2.874 2.874 0 0 1-.798 3.986 2.855 2.855 0 0 1-1.59.484 2.87 2.87 0 0 1-2.395-1.28l-3.594-5.39-3.968 6.037 14.176 23.202a16.695 16.695 0 0 1-.04 17.56 3.406 3.406 0 0 1-.137.2l-1.736 2.344a2.873 2.873 0 0 1-2.312 1.163 2.865 2.865 0 0 1-1.71-.565 2.875 2.875 0 0 1-.597-4.022l1.66-2.239a10.973 10.973 0 0 0-.033-11.443L82.126 36.445 63.952 64.103l14.292-21.545 7.059 10.904a16.866 16.866 0 0 1-.037 18.383l-8.379 12.836-12.935-20.578L80.58 90.558l7.661-10.215a2.876 2.876 0 0 1 4.6 3.45l-8.984 11.978 4.37 6.95 21.178-33.439c2.415-3.812 2.443-8.758.07-12.598l-10.24-16.582a2.875 2.875 0 0 1 4.891-3.021l10.242 16.582c3.52 5.699 3.478 13.037-.105 18.696l-22.37 35.321a2.85 2.85 0 0 1-.303.39l3.98 6.336c1.735-1.37 2.97-2.52 3.705-3.451 8.435-10.685 17.214-23.521 26.338-38.51 3.124-5.132 3.205-11.492.115-16.61-11.76-19.465-24.824-40.105-28.72-42.035Z"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
icons/pm2/pm2-plain-wordmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M17.445 48.426c-3.58 7.71-5.713 6.219-12.113 6.219-.424.641-.851 1.285-1.268 1.92h4.467a.854.854 0 0 1 .854.853.852.852 0 0 1-.854.852H2.953c-.38.59-.742 1.161-1.074 1.699l14.02-.098h-.628c.85.017 2.222-.48 2.887-1.525l3.305-5.225a.854.854 0 1 1 1.443.912L19.6 59.26c-.997 1.566-2.884 2.341-4.354 2.316l-14.38.106c-.667 1.199-.867 1.984-.858 2.35-.061.903.221 1.842.752 2.667h12.763c1.986-.218 3.747.607 5.286 2.477l3.2 5.176a.852.852 0 0 1-.267 1.175.846.846 0 0 1-.453.131.851.851 0 0 1-.723-.398c-1.973-3.199-3.175-5.008-3.605-5.428-.645-.63-1.47-1.422-3.438-1.422H1.832l1.139 1.809h4.556a.854.854 0 0 1 .854.853.854.854 0 0 1-.854.854H4.045l1.074 1.705c7.68 0 8.746.854 11.383 5.943h2.236c-1.91-3.412-3.117-5.426-3.62-6.039-.757-.92-1.776-1.61-3.095-1.61H10.84a.854.854 0 0 1-.854-.853.854.854 0 0 1 .854-.853h1.183c1.81 0 3.84 1.163 4.573 2.578l4.05 6.625a.863.863 0 0 1 .069.152h3.05l-.974-1.672a.854.854 0 0 1 .307-1.168.852.852 0 0 1 .43-.115.854.854 0 0 1 .738.424l1.474 2.531h.752c.595.002 1.03-.063 1.88-.611.514-.407.88-.747 1.099-1.024 2.504-3.171 5.11-6.981 7.818-11.431.928-1.524.953-3.413.035-4.932-3.49-5.779-7.368-11.905-8.525-12.478-.614-.354-1.494-.642-2.62-.672h-.161l-1.389 2.38a.854.854 0 0 1-.738.425.852.852 0 0 1-.43-.118.852.852 0 0 1-.307-1.166l.887-1.521h-2.494a.842.842 0 0 1-.11.428L17.6 55.48c-.941 1.631-2.958 2.576-4.528 2.576h-1.228a.854.854 0 0 1-.854-.854.854.854 0 0 1 .854-.853h1.228c1.113 0 2.387-.79 3.02-1.668.422-.586 1.628-2.672 3.619-6.256h-2.266zm10.174 2.482 1.463 2.195a.854.854 0 0 1-.238 1.184.842.842 0 0 1-.471.143.851.851 0 0 1-.71-.38l-1.06-1.583 1.016-1.559zm-2.187 3.36 4.193 6.863a4.957 4.957 0 0 1-.012 5.213.99.99 0 0 1-.04.058l-.516.696a.852.852 0 0 1-1.194.177.853.853 0 0 1-.178-1.193l.493-.664a3.26 3.26 0 0 0-.01-3.398L24.4 55.852l1.032-1.584zm46.681 1.037c-.298.02-.596.12-.863.306-.461.32-.718.863-.727 1.424L70.31 70.85a1.706 1.706 0 0 0 1.68 1.732 1.71 1.71 0 0 0 1.735-1.682V60.414L83.76 71.42c1.28 1.26 2.774 1.26 4.068 0l9.693-10.826c-.034 6.022-.05 9.451-.05 10.289 0 1.256.698 1.271 1.64 1.271.972 0 1.772-.02 1.772-1.304V57.223c-.003-.708-.508-1.348-1.17-1.598-.662-.25-1.84 0-2.309.53L85.793 68.601a.169.169 0 0 1-.25.004L73.465 55.83a1.708 1.708 0 0 0-1.352-.525zm-26.855.162-.047.002a1.096 1.096 0 0 0-1.05 1.096v14.58a1.01 1.01 0 0 0 1.009.963h1.445l.047-.003c.536-.024.963-.465.963-1.007V66.24l12.537.004c2.945.095 6.504-1.479 6.504-4.45V59.94c0-3.152-3.808-4.472-7.039-4.473h-14.37zm66.744.107c-.766 0-1.387.3-1.387 1.067 0 .766.621 1.386 1.387 1.386h8.703l.055-.002c2.86.07 3.714 1.055 3.959 1.756l.021.065.01.033.016.06a1.076 1.076 0 0 1 .013.061l.01.057.01.054.006.053.004.049.002.045.001.06-.001.053-.003.055-.005.05v.102l-.004.066-.008.057-.008.043-.011.068-.012.051-.014.051-.017.055c-.004.009-.005.018-.008.027l-.022.057a1.027 1.027 0 0 1-.012.029l-.025.059-.03.06-.015.03-.035.062-.039.062c-.38.59-1.312 1.258-3.582 1.258h-9.86l-.095.002-.16.004-.174.008-.186.01-.133.01-.136.013-.14.014-.073.008-.147.017-.152.022-.154.023-.157.026a9.9 9.9 0 0 0-.16.029l-.162.033-.164.035c-1.84.422-3.947 1.511-3.947 4.227v3.627c0 1.15.344 1.438 1.187 1.424l.098-.004.102-.004.107-.008h20.266c.785.062 1.108-.2 1.224-.649l.016-.07a1.725 1.725 0 0 0 .027-.187l.006-.08.002-.041.004-.082v-.131l-.002-.088-.004-.086c-.043-.644-.311-1.06-1.273-1.06h-18.56v-2.467l.001-.157.004-.113.004-.074.006-.074.008-.07a.21.21 0 0 1 .003-.036l.01-.07.012-.069.014-.066.017-.065.018-.064c.162-.514.571-.881 1.554-1.05l.123-.02.13-.018.134-.015.14-.014.15-.012.075-.006.157-.008.164-.005.172-.006.177-.002h.09l9.28.076.03-.002c5.326-.205 6.958-2.017 7.298-3.453l.02-.094a2.68 2.68 0 0 0 .048-.367v-1.592c-.034-1.87-1.763-4.168-7.254-4.168h-8.744zm-81.783.03a.852.852 0 0 1 .691.404l3.041 4.924a5.266 5.266 0 0 1-.031 5.55l-6.64 10.485a.82.82 0 0 1-.085.107l-.994-1.595 6.278-9.91a3.548 3.548 0 0 0 .021-3.74l-3.041-4.923a.855.855 0 0 1 .277-1.175.85.85 0 0 1 .483-.127zm-6.985 2.038 2.088 3.23a5.006 5.006 0 0 1-.01 5.456l-2.462 3.77-3.778-6.067 4.162-6.388zm24.233.385h12.607c1.263 0 3.39 0 3.39 1.912v1.856c-.054 1.778-1.52 1.78-3.411 1.78l-12.586.046v-5.594zM26.922 68.512a.849.849 0 0 1 .469.17.852.852 0 0 1 .17 1.193l-2.649 3.533-.967-1.553 2.25-3.004a.854.854 0 0 1 .727-.34z"/></svg>
|
After Width: | Height: | Size: 4.2 KiB |
1
icons/pm2/pm2-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M58.766 11.541C46.704 37.514 39.518 32.482 17.959 32.482c-1.427 2.162-2.862 4.333-4.266 6.47h15.045a2.874 2.874 0 1 1 0 5.748H9.945a356.045 356.045 0 0 0-3.619 5.72l47.229-.332-2.116.002c2.86.058 7.487-1.616 9.727-5.137l11.137-17.6a2.872 2.872 0 0 1 3.965-.892 2.876 2.876 0 0 1 .892 3.967L66.022 48.033c-3.359 5.276-9.716 7.889-14.667 7.805l-48.443.355C.666 60.233 0 62.873.027 64.103c-.206 3.046.744 6.21 2.532 8.989h42.994c6.69-.735 12.625 2.047 17.806 8.345l10.782 17.43a2.875 2.875 0 0 1-.9 3.965 2.86 2.86 0 0 1-1.53.441c-.956 0-1.89-.475-2.436-1.343-6.647-10.776-10.694-16.87-12.142-18.286-2.173-2.122-4.955-4.787-11.58-4.787H6.17l3.836 6.092h15.351a2.874 2.874 0 1 1 0 5.748H13.625l3.615 5.744c25.87 0 29.466 2.874 38.348 20.018h7.535c-6.436-11.493-10.501-18.272-12.2-20.338-2.546-3.1-5.978-5.424-10.421-5.424h-3.988a2.874 2.874 0 1 1 0-5.748h3.988c6.095 0 12.935 3.916 15.404 8.682l13.64 22.318c.096.166.172.336.231.51h10.278l-3.283-5.629a2.874 2.874 0 0 1 1.033-3.932 2.872 2.872 0 0 1 1.447-.39c.989 0 1.95.51 2.484 1.426l4.975 8.525h2.527c2.003.006 3.472-.206 6.334-2.053l-.002-.002c1.733-1.369 2.969-2.518 3.703-3.449 8.436-10.684 17.215-23.52 26.338-38.51 3.124-5.132 3.206-11.492.116-16.61C113.968 36.37 100.904 15.73 97.007 13.8c-2.067-1.192-5.029-2.155-8.82-2.258h-.546l-4.678 8.018a2.873 2.873 0 0 1-2.486 1.425 2.857 2.857 0 0 1-1.446-.39 2.875 2.875 0 0 1-1.033-3.932l2.986-5.12h-8.398c0 .49-.112.984-.375 1.438L59.289 35.3c-3.169 5.496-9.969 8.681-15.256 8.681h-4.137a2.874 2.874 0 1 1 0-5.747h4.137c3.747 0 8.041-2.664 10.174-5.624 1.422-1.973 5.486-8.995 12.193-21.068h-7.634zm34.267 8.36 4.93 7.394a2.874 2.874 0 0 1-.797 3.986 2.857 2.857 0 0 1-1.592.483 2.87 2.87 0 0 1-2.394-1.28l-3.56-5.341 3.413-5.243zm-7.367 11.312 14.129 23.12a16.695 16.695 0 0 1-.041 17.56 3.408 3.408 0 0 1-.137.2l-1.736 2.344a2.876 2.876 0 1 1-4.62-3.423l1.66-2.239a10.973 10.973 0 0 0-.032-11.443l-12.7-20.783 3.477-5.336zm16.129 4.506a2.87 2.87 0 0 1 2.33 1.361l10.242 16.584c3.52 5.699 3.478 13.036-.105 18.695L91.89 107.68c-.084.133-.18.25-.282.364l-3.347-5.377 21.142-33.383c2.416-3.813 2.445-8.76.073-12.6L99.234 40.103a2.874 2.874 0 0 1 2.56-4.383zm-23.533 6.863 7.04 10.88a16.865 16.865 0 0 1-.036 18.384l-8.291 12.699-12.731-20.442 14.018-21.521zm12.423 36.615a2.863 2.863 0 0 1 1.58.572 2.874 2.874 0 0 1 .575 4.024l-8.922 11.898-3.262-5.236 7.586-10.111a2.872 2.872 0 0 1 2.444-1.147z"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
icons/processing/processing-line.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M70.34 4.598v28.695h.097c11.157 0 18.31 2.96 22.676 7.395C97.48 45.12 99.07 51.03 99.07 56.953c0 5.922-1.59 11.832-5.957 16.266-4.367 4.43-11.52 7.394-22.675 7.394h-.098v28.696h.097c35.16 0 57.555-26.172 57.555-52.356 0-26.183-22.394-52.355-57.555-52.355Zm.191.191c35.012.047 57.27 26.11 57.27 52.164 0 26.05-22.258 52.113-57.27 52.164v-28.32c11.133-.016 18.32-2.984 22.719-7.445 4.41-4.477 6.012-10.446 6.012-16.399 0-5.957-1.602-11.922-6.012-16.398-4.398-4.465-11.586-7.43-22.719-7.45ZM58.926 29.266l-.059.074-26.183 34.637-6.817-13.528-.086.043L0 63.285l13.285 26.36L1.352 105.43l23.136 17.218L82.063 46.48Zm.039.265L81.793 46.52l-57.344 75.863-22.832-16.988L13.38 89.832l5.86 11.629 25.866-12.832-12.324-24.461ZM25.78 50.707l6.774 13.441L13.41 89.473.258 63.367Zm6.871 13.629 12.2 24.207-25.528 12.664-5.816-11.543Zm0 0" style="fill:#124ed5"/></svg>
|
After Width: | Height: | Size: 925 B |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 440 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M64 0a50.912 50.912 0 00-50.912 50.912A50.912 50.912 0 0064 101.824a50.912 50.912 0 0050.912-50.912A50.912 50.912 0 0064 0zm7.881 17.676c5.624-.011 11.595 1.931 12.595 8.304.568 3.616.954 9.624-7.923 14.186 6.873 1.857 9.17 6.28 9.25 10.631.188 10.217-9.73 16.465-18.658 15.468l.066-5.156c7.905.907 11.744-4.246 11.915-9.086.175-4.96-4.17-8.382-11.915-8.23l-.12-4.85c9.697-.718 12.428-7.432 11.221-11.161-1.653-5.106-6.929-6.049-11.593-4.253l-.797 5.687-3.71-.12.318-9.447c1.818-1.043 5.503-1.965 9.351-1.973zM61.215 39.151v38.244c2.036-.147 4.784.56 7.273.958v4.19l-22.072-.013v-4.252c2.378-.327 4.575-.87 7.175-.93V44.526c-2.928-.05-5.683-.692-7.07-1.169v-4.08l14.695-.125zM12.038 116.27c-.287 0-.647 0-1.031-.048v3.478c.72.048 1.463.168 2.087.289v1.943H5.802v-1.943a17.75 17.75 0 012.087-.289v-11.729a17.675 17.675 0 01-2.087-.288v-1.943h1.872c.767 0 2.878-.096 4.557-.096 3.958 0 6.14 1.847 6.14 5.013 0 3.142-2.398 5.613-6.333 5.613zm.05-8.084c-.385 0-.72 0-1.08.024v5.397c.311.048.623.072.911.072 1.895-.024 3.214-1.08 3.214-2.83 0-1.631-.911-2.663-3.046-2.663zm15.976 4.582c-2.447-.456-3.55.983-3.55 4.293v2.638c.719.048 1.463.168 2.086.288v1.944h-7.22v-1.944c.624-.12 1.367-.239 2.086-.288v-7.338a23.93 23.93 0 00-2.086-.24v-1.92c1.511-.191 3.358-.263 4.965-.215 0 .623-.072 1.582-.216 2.423h.048c.576-1.512 1.728-2.831 4.03-2.663zm6.885 9.403c-3.382 0-5.565-1.75-5.565-5.997 0-3.717 2.47-6.404 6.093-6.404 3.382 0 5.565 1.872 5.565 5.973 0 3.742-2.519 6.428-6.093 6.428zm.312-9.81c-1.368 0-2.71 1.055-2.71 3.501 0 2.447.887 3.694 2.662 3.694 1.511 0 2.663-1.223 2.663-3.646-.001-2.302-.816-3.55-2.615-3.55zm13.122 9.787c-3.478 0-5.71-1.727-5.71-5.782 0-3.718 1.92-6.572 6.285-6.572.912 0 1.919.144 2.782.407v3.838h-1.967c-.096-.576-.192-1.103-.24-1.583-.287-.096-.647-.12-.983-.12-1.655 0-2.687 1.367-2.687 3.622 0 2.182.816 3.526 3.214 3.526.84 0 1.8-.192 2.519-.528l.216 2.638c-.982.313-2.062.554-3.43.554zm15.52-5.686h-7.387c-.024 2.231 1.08 3.31 3.286 3.31 1.175 0 2.447-.264 3.478-.744l.288 2.375c-1.271.504-2.782.767-4.27.767-3.79 0-5.9-1.895-5.9-6.093 0-3.646 2.015-6.333 5.589-6.333 3.478 0 5.013 2.375 5.013 5.325 0 .41-.025.89-.097 1.393zm-5.012-4.461c-1.272 0-2.16.935-2.327 2.375h4.39C61 112.888 60.185 112 58.89 112zm10.291 10.17c-.911 0-2.135-.12-3.118-.336v-3.574h1.944c.12.48.192 1.033.24 1.56.335.072.815.12 1.2.12 1.223 0 2.062-.527 2.062-1.415 0-2.087-5.757-.984-5.757-4.941 0-2.16 1.752-3.814 5.133-3.814.888 0 2.015.12 3.095.36v3.43h-1.943c-.12-.48-.192-1.032-.24-1.536a5.72 5.72 0 00-1.08-.12c-1.295 0-1.895.528-1.895 1.32 0 2.11 5.757 1.127 5.757 4.87 0 2.325-2.088 4.076-5.398 4.076zm10.532 0c-.912 0-2.135-.12-3.119-.336v-3.574h1.944c.12.48.192 1.033.24 1.56.336.072.815.12 1.199.12 1.223 0 2.064-.527 2.064-1.415 0-2.087-5.758-.984-5.758-4.941 0-2.16 1.752-3.814 5.133-3.814.888 0 2.015.12 3.096.36v3.43H82.57c-.12-.48-.192-1.032-.24-1.536a5.714 5.714 0 00-1.08-.12c-1.295 0-1.895.528-1.895 1.32 0 2.11 5.757 1.127 5.757 4.87 0 2.325-2.088 4.076-5.398 4.076zm6.886-.24v-1.943c.623-.12 1.367-.24 2.086-.289v-7.338a23.9 23.9 0 00-2.087-.24v-1.92c1.512-.191 3.358-.263 5.133-.215v9.714c.672.048 1.367.168 1.944.289v1.943h-7.077zm3.598-13.456a1.88 1.88 0 01-1.896-1.871c0-1.008.84-1.848 1.896-1.848 1.054 0 1.918.816 1.918 1.848 0 1.031-.863 1.87-1.918 1.87zm13.937 5.828c0-1.247-.336-1.99-1.464-1.99-1.56 0-2.783 1.775-2.783 3.861v3.527c.576.048 1.224.12 1.752.264v1.966h-6.885v-1.943c.625-.12 1.368-.24 2.087-.288v-7.34a23.917 23.917 0 00-2.087-.24v-1.919c1.512-.191 3.358-.263 4.965-.215 0 .551-.047 1.51-.168 2.135l.025.024c.72-1.416 2.11-2.4 4.053-2.4 2.686 0 3.55 1.728 3.55 3.814v6.141c.696.048 1.391.168 1.967.289v1.943h-5.013v-7.629zM115.506 128c-3.166 0-5.11-1.2-5.11-3.527 0-1.247.84-2.399 1.824-2.877-.72-.36-1.176-.984-1.176-1.823 0-.912.575-1.75 1.39-2.11-1.079-.6-1.75-1.776-1.75-3.335 0-2.495 1.799-4.581 5.398-4.581.766 0 1.439.096 2.086.264h4.03v2.399h-1.608c.36.36.6.911.6 1.583 0 2.59-1.8 4.365-5.253 4.365-.36 0-.768-.024-1.104-.097-.383.168-.551.48-.551.768 0 .552.455.744 1.846.744h1.847c2.59 0 4.101 1.2 4.101 3.454.002 2.59-2.588 4.773-6.57 4.773zm1.631-5.805h-2.662c-.673.384-1.055 1.032-1.055 1.703 0 1.104 1.008 1.751 2.542 1.751 1.99 0 3.07-.84 3.07-2.014 0-.816-.575-1.44-1.895-1.44zm-1.175-10.218c-1.464 0-2.351.887-2.351 2.158 0 1.344.84 2.135 2.351 2.135 1.392 0 2.303-.767 2.303-2.11s-.816-2.183-2.303-2.183z"/></svg>
|
Before Width: | Height: | Size: 4.3 KiB |