1
0
Fork 0
This commit is contained in:
4immerjung 2024-05-04 08:28:08 +02:00
commit da3c20fa26
138 changed files with 1601 additions and 243 deletions

View File

@ -5,12 +5,12 @@ assignees: walkxcode
body:
- type: markdown
attributes:
value: "Thank you for your interest in contributing to our icon repository! To ensure that everything runs smoothly, we've set out some guidelines for contributors.\n## 🌟 Icon Specifications\n\n- Each icon should include both a **PNG** and **SVG** version. If an **SVG** cannot be found, then only a **PNG** version is required.\n\n- Each icon should be in **PNG** format and have a height of exactly **512px**. Width does not matter. ❗️(No upscales! If the correct size cannot be found, a smaller height will be accepted.)\n\n- Icons should be named after their full name, using the [Kebab Case](https://wiki.c2.com/?KebabCase) naming convention. For example, \"Facebook Messenger\" should be named `facebook-messenger.png`.\n\n- Monochrome icons should default to a dark version. Light versions should be named `service-light.png`. If a light version is not available, use [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to change its color.\n"
value: "Thank you for your interest in contributing to our icon repository! To ensure smooth collaboration, we've established clear guidelines for contributors.\n## 🌟 Icon Specifications\n\n- Icons should be provided in both `PNG` and `SVG` formats. Formats like `JPEG` or `WEBP` will not be accepted.\n - If an `SVG` version is unavailable, a `PNG` version alone suffices.\n - Conversely, if a `PNG` version is missing, it can be generated using [Ezgif SVG to PNG](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md#-converting-svg-to-png).\n\n- `PNG` files should have a height of exactly `512px` Width can vary, but a 1:1 aspect ratio is preferred.\n - ❗ Exceptions for upscales will be made only if the correct or a downscaled version cannot be obtained.\n - Downsizing can be accomplished using [iLoveIMG Resize](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md#-downscaling-pngs).\n\n- Icons should be named using the [Kebab Case](https://wiki.c2.com/?KebabCase) convention, reflecting their full name. For instance, \"Facebook Messenger\" should be named `facebook-messenger.png`.\n\n- Monochrome icons should default to a dark version. Light versions should be named `name-light.png`. If a light version is absent, utilize [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to adjust its color.\n"
- type: checkboxes
attributes:
label: Contribution Guidelines
options:
- label: I have read and agree to the [Contribution Guidelines](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md)
- label: I have read and agree to the [Contribution Guidelines](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md)
required: true
- type: textarea
id: icon-name

View File

@ -28,5 +28,5 @@ jobs:
git config --global user.email "noreply@walkx.fyi"
git config --global user.name "Dashboard Icons Bot"
git add -A
git commit -m ":rocket: Generates ICONS" || exit 0
git commit -m ":construction_worker: Generates ICONS.md" || exit 0
git push

View File

@ -2,9 +2,9 @@ name: 🗜️ PNG Compression
on:
schedule:
- cron: '0 0 * * 0'
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
compress-images:
runs-on: ubuntu-latest
@ -15,18 +15,18 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y zopfli
- name: Compress PNGs
run: |
echo "🖼️ Compressing PNGs..."
echo "Compressing PNGs..."
find png/ -iname "*.png" -print0 | xargs -0 -P 4 -I{} sh -c 'echo "Compressing {}"; zopflipng -y {} {}' || true
- name: Load to GitHub
run: |-
git diff
git config --global user.email "noreply@walkx.fyi"
git config --global user.name "Dashboard Icons Bot"
git add -A
git commit -m ":clamp: Compresses PNGs" || exit 0
git commit -m ":children_crossing: Compresses PNGs" || exit 0
git pull --ff-only
git push

32
.gitignore vendored Normal file
View File

@ -0,0 +1,32 @@
### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
### macOS Patch ###
# iCloud generated files
*.icloud

View File

@ -12,7 +12,7 @@ Harassment, intimidation, discrimination, or any other inappropriate conduct or
## 📢 Reporting
If you believe someone is violating the code of conduct, please report it immediately to contact@walkx.fyi. All reports will be reviewed and investigated promptly and confidentially.
If you believe someone is violating the code of conduct, please report it immediately to walkxnl@gmail.com. All reports will be reviewed and investigated promptly and confidentially.
## 🚨 Consequences

View File

@ -1,32 +1,50 @@
# 🎉 Contributing Guidelines
# 🤝 Contribution Guidelines
Thank you for your interest in contributing to our icon repository! To ensure that everything runs smoothly, we've set out some guidelines for contributors.
We appreciate your interest in contributing to our icon repository! To ensure smooth collaboration, kindly adhere to the following guidelines:
## 🌟 Icon Specifications
- Each icon should include both a **PNG** and **SVG** version. If an **SVG** cannot be found, then only a **PNG** version is required.
- Each icon should be in **PNG** format and have a height of exactly **512px**. Width does not matter. ❗️(No upscales! If the correct size cannot be found, a smaller height will be accepted.)
- Icons should be named after their full name, using the [Kebab Case](https://wiki.c2.com/?KebabCase) naming convention. For example, "Facebook Messenger" should be named `facebook-messenger.png`.
- Monochrome icons should default to a dark version. Light versions should be named `service-light.png`. If a light version is not available, use [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to change its color.
- Icons should be provided in both `PNG` and `SVG` formats. Other formats like `JPEG` or `WEBP` will not be accepted.
- In cases where an `SVG` version is unavailable, a `PNG` version alone suffices.
- Conversely, if a `PNG` version is missing, it can be generated using [Ezgif SVG to PNG](#-converting-svg-to-png).
- `PNG`s should maintain a height of exactly `512px`, while width can vary. However, a 1:1 aspect ratio is preferred.
- ❗ Avoid upscales! Exceptions will be made only if the correct or a downscaled version cannot be obtained.
- Downsizing can be accomplished using [iLoveIMG Resize](#-downscaling-pngs).
- Icons should be named using the [Kebab Case](https://wiki.c2.com/?KebabCase) convention, reflecting their full name. For instance, "Facebook Messenger" should be named `facebook-messenger.png`.
- Icons that are predominantly monochrome should default to a dark version. Light versions should be named `name-light.png`. If a light version is not available, use [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to adjust its color.
## 💻 Gitmoji Commits
- Please use [Gitmoji](https://gitmoji.dev/) in your commit messages. This helps us keep our commit history clear and easy to understand. For example, you might use the `🍱` emoji for a commit that updates an icon's color, or the `📝` emoji for a commit that updates the documentation.
- Use [Gitmoji](https://gitmoji.dev/) in your commit messages. This helps us keep our commit history clear and easy to understand. For instance, use the `🍱` emoji for commits related to updating icon colors, and `📝` for documentation updates.
## 🔀 Converting SVG to PNG
1. Go to https://ezgif.com/svg-to-png.
2. Upload the `SVG` file by clicking "Upload".
3. Set the "Height (optional)" field to `512`, leaving other settings as default.
4. Click "Convert to PNG!".
5. Click "Save" located at the bottom right under the converted image.
## ⤵️ Downscaling PNGs
1. Go to https://www.iloveimg.com/resize-image.
2. Upload the `PNG` file(s).
3. Adjust the "Height (px)" field to `512`, leaving other settings as default.
4. Click "Resize IMAGES".
5. Download the resized icon(s).
## 🤝 Contributing
1. Fork the repository to your own GitHub account.
1. Fork the repository to your GitHub account.
2. Clone the repository to your local machine.
3. Add your icon(s) to the repository, following the specifications listed above.
3. Add your icon(s) to the repository, adhering to the specified guidelines.
4. Push your changes to your fork.
5. Create a pull request in the main repository.
## 🚨 Code of Conduct
Please note that by contributing to this repository, you agree to abide by our code of conduct, which can be found in the [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) file in the repository.
Kindly note that contributing to this repository necessitates adherence to our code of conduct, outlined in the [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) file within the repository.
---
If you have any questions or concerns, please don't hesitate to reach out to me at contact@walkx.fyi. Happy contributing! 🙌
Should you have any queries or concerns, feel free to reach out to me using walkxnl@gmail.com. Happy contributing! 🙌

File diff suppressed because one or more lines are too long

View File

@ -2,11 +2,11 @@
Unless otherwise indicated, all images and assets in this repository, including product names, trademarks, and registered trademarks, are the property of their respective owners. These images and assets are used for identification purposes only and their use does not imply endorsement.
--------------------------------
---
**Code and Documentation**
Copyright (c) 2023 Bjorn Lammers
Copyright (c) 2024 Bjorn Lammers (walkxcode)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -1,79 +1,73 @@
<p align="center">
<h2 align="center"> 🟣 Dashboard Icons </h3>
<div align="center">
<h2 align="center"> 🚀 Dashboard Icons </h2>
<p align="center">
<a href="https://www.jsdelivr.com/package/gh/walkxcode/dashboard-icons">
<img src="https://img.shields.io/jsdelivr/gh/hy/walkxcode/dashboard-icons?color=%23A020F0" alt="JSdelivr weekly downloads badge">
</a>
</p>
<p align="center">
🚀 The best place to find icons for your dashboards.
The best source for dashboard icons.
<br />
<a href="#-icons"><strong>👀 See the icons</strong></a><a href="https://shop.walkx.fyi/l/donate" target="_blank"><strong>🙌🏻 Donate</strong></a>
<a href="#-icons"><strong>➡️ Explore the icons</strong></a>
<br />
<br />
</p>
</p>
</div>
# 📖 Table of Contents
- [🚀 Getting Started](#-getting-started)
- [📊 Dashboards](#-dashboards)
- [🛠️ Installation](#-installation)
- [🎨 Icons](#-icons)
- [🎉 Contributing Guidelines](#-contributing-guidelines)
- [📜 Legal](#-legal)
- [📖 Table of Contents](#-table-of-contents)
- [🚀 Getting Started](#-getting-started)
- [📊 Dashboards](#-dashboards)
- [✨ Usage](#-usage)
- [🎨 Icons](#-icons)
- [🎉 Contribution Guidelines](#-contribution-guidelines)
- [📜 Legal](#-legal)
## 🚀 Getting Started
### 📊 Dashboards
There are many Dashboards available that you can use with Dashboard Icons. Here are some of the popular ones.
Several dashboards now offer seamless integration with Dashboard Icons. Here are some of the top choices:
- [Homarr](https://github.com/ajnart/homarr)\*
- [Dashy](https://github.com/Lissy93/dashy)\*
- [Homer Dashboard](https://github.com/bastienwirtz/homer)
- [Heimdall](https://github.com/linuxserver/Heimdall)
- [Organizr(v2)](https://github.com/causefx/Organizr)
- [Flame](https://github.com/pawelmalak/flame)
- [SUI](https://github.com/jeroenpardon/sui)
- [Homepage](https://github.com/benphelps/homepage)\*
- [Homepage](https://github.com/gethomepage/homepage)
- [Homarr](https://github.com/ajnart/homarr)
- [Dashy](https://github.com/Lissy93/dashy)
**Note:** Dashboards with a \* have native integration with Dashboard Icons.
### 🛠️ Installation
**Tip!** You can access Dashboard Icons online, faster, by using `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png`. Just replace `example` with the name of the icon!
### ✨ Usage
To download an icon from the [icons page](#-icons), simply `Right click > Save link as`.
For non-desktop operating systems or people who prefer to use the terminal:
For non-desktop operating systems or those who prefer using the terminal:
*Replace `example` with the icon's name, and `png` with `svg` if needed.*
```sh
$ curl -O https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png
curl -O https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png
```
or
```sh
$ wget https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png
wget https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png
```
**💡 Tip!** Access Dashboard Icons online faster via `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png`, replacing `example` with the icon name!
## 🎨 Icons
**⚠️ Warning!** Going to this page will load every single icon in the repository. This might cause:
- 📉 An excessive amount of data use.
**⚠️ Warning!** Visiting this page will load every single icon in the repository. This may cause:
- 📉 Excessive data usage.
- 💻 System slowdowns.
- 🌐 Browser crashes.
*If your device cannot handle loading more than 1000 images, we advise to not go to this page.*
*If your device cannot handle loading more than 1000 images or if you are on a limited data connection, we advise against visiting this page.*
➡️ Click [**here**](ICONS.md) to display all icons.
➡️ Click [**here**](ICONS.md) to view all icons.
## 🎉 Contributing Guidelines
Please read the [Contributing Guidelines](CONTRIBUTING.md) before contributing to this project.
## 🎉 Contribution Guidelines
Please review the [Contribution Guidelines](CONTRIBUTING.md) before contributing to this project.
## 📜 Legal
Please read our [LICENSE](LICENSE) for information regarding the use of our software and assets. By accessing or using this repository, you agree to be bound by the terms and conditions of the license.
If you have any questions or concerns regarding the license, please contact us at contact@walkx.fyi before using or distributing the contents of this repository.
Read our [LICENSE](LICENSE) for information regarding the use of our software and assets. By accessing or using this repository, you agree to be bound by the terms and conditions of the license.
For questions or concerns regarding the license, contact me at walkxnl@gmail.com before using or distributing the contents of this repository.

View File

@ -1,14 +1,14 @@
<p align="center">
<h2 align="center"> 🟣 Dashboard Icons </h3>
<h2 align="center"> 🚀 Dashboard Icons </h3>
<p align="center">
<a href="https://www.jsdelivr.com/package/gh/walkxcode/dashboard-icons">
<img src="https://img.shields.io/jsdelivr/gh/hy/walkxcode/dashboard-icons?color=%23A020F0" alt="JSdelivr weekly downloads badge">
</a>
</p>
<p align="center">
🚀 The best place to find icons for your dashboards.
The best source for dashboard icons.
<br />
<a href="https://github.com/walkxcode/dashboard-icons/"><strong>⬅️ Back to repo</strong></a><a href="https://shop.walkx.fyi/l/donate" target="_blank"><strong>🙌🏻 Donate</strong></a>
<a href="https://github.com/walkxcode/dashboard-icons/"><strong>⬅️ Back to repo</strong></a>
<br />
<br />
</p>

BIN
png/anything-llm-dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
png/anything-llm-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
png/apache-airflow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
png/avigilon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
png/azure-devops.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

BIN
png/caldera.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

BIN
png/chainguard.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
png/collabora-online.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
png/cosign.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
png/cribl-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

BIN
png/cribl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

BIN
png/f5-networks.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
png/feishin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
png/flaresolverr.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
png/flarum.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
png/fulcio.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
png/gitsign.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
png/grype.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
png/hedgedoc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
png/helm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
png/hilook.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
png/hortusfox.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

BIN
png/hostinger.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
png/kbin-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
png/kbin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 11 KiB

BIN
png/lubelogger.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

BIN
png/mango.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

BIN
png/misp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

BIN
png/mkdocs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
png/netbird.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
png/network-ups-tools.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

BIN
png/nicotine-plus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
png/nightscout-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

BIN
png/nightscout.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 21 KiB

BIN
png/nut.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

BIN
png/observo-ai.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
png/open-webui-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

BIN
png/open-webui.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

BIN
png/owntracks.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
png/palo-alto.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
png/passbolt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
png/peanut.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
png/perlite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
png/plexripper.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

BIN
png/policycontroller.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
png/porkbun.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
png/prusa-research.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
png/purelymail.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
png/rallly.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
png/reactive-resume.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
png/rekor.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
png/restic.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

BIN
png/scanservjs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
png/sigstore.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
png/sonatype-repository.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
png/sophos.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
png/spiderfoot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

BIN
png/stb-proxy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
png/syft.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
png/trivy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
png/warpgate.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
png/wiki-text.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

BIN
png/wikijs-full.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

BIN
png/windmill.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
png/wolfi-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

BIN
png/wolfi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
png/zyxel-networks.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

17
svg/anything-llm-dark.svg Normal file
View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="svg-2099287481_1632" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px" viewBox="0 0 244.6 244.6" style="enable-background:new 0 0 244.6 244.6;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#232628;}
</style>
<path class="st0" d="M219.6,244.6H25c-13.8,0-25-11.2-25-25V25C0,11.2,11.2,0,25,0h194.6c13.8,0,25,11.2,25,25v194.6
C244.6,233.3,233.3,244.6,219.6,244.6z"/>
<path class="st1" d="M200.9,84.3v76c0,6.5-5.3,11.9-11.9,11.9h-28.6c-3.7,0-7.1-1.7-9.4-4.6l-12.8-18c-0.8-1-0.8-2.3,0-3.3l3.3-4.2
c0.9-1.2,2.6-1.4,3.8-0.4c0.2,0.1,0.3,0.3,0.4,0.4l13.6,19c0.3,0.3,0.6,0.5,1,0.5H189c0.7,0,1.3-0.6,1.3-1.3v-76
c0-0.7-0.6-1.3-1.3-1.3h-28.6c-0.4,0-0.8,0.2-1,0.5l-65.8,84.1c-2.2,2.9-5.7,4.6-9.3,4.6H55.6c-6.5,0-11.9-5.3-11.9-11.9v-76
c0-6.5,5.3-11.9,11.9-11.9h28.6c3.7,0,7.1,1.7,9.3,4.6l14,19.2c0.8,1,0.8,2.3,0,3.3l-3.3,4.2c-1.1,1.4-3.2,1.4-4.2,0L85.2,83.5
c-0.2-0.3-0.6-0.5-1-0.5H55.6c-0.7,0-1.3,0.6-1.3,1.3v76c0,0.7,0.6,1.3,1.3,1.3h28.6c0.4,0,0.8-0.2,1-0.5l19.8-25.3l20-25.6L151,77
c2.3-2.9,5.7-4.6,9.4-4.6H189C195.6,72.4,200.9,77.8,200.9,84.3L200.9,84.3z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="svg-2099287481_1632" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px" viewBox="0 0 244.6 244.6" style="enable-background:new 0 0 244.6 244.6;" xml:space="preserve">
<style type="text/css">
.st0{fill:#232628;}
.st1{fill:#FFFFFF;}
</style>
<path class="st0" d="M219.6,244.6H25c-13.8,0-25-11.2-25-25V25C0,11.3,11.2,0,25,0h194.6c13.8,0,25,11.2,25,25v194.6
C244.6,233.3,233.3,244.6,219.6,244.6z"/>
<path class="st1" d="M200.9,84.3v76c0,6.5-5.3,11.9-11.9,11.9h-28.6c-3.7,0-7.1-1.7-9.4-4.6l-12.8-18c-0.8-1-0.8-2.3,0-3.3l3.3-4.2
c0.9-1.2,2.6-1.4,3.8-0.4c0.2,0.1,0.3,0.3,0.4,0.4l13.6,19c0.3,0.3,0.6,0.5,1,0.5H189c0.7,0,1.3-0.6,1.3-1.3v-76
c0-0.7-0.6-1.3-1.3-1.3h-28.6c-0.4,0-0.8,0.2-1,0.5l-65.8,84.1c-2.2,2.9-5.7,4.6-9.3,4.6H55.6c-6.5,0-11.9-5.3-11.9-11.9v-76
c0-6.5,5.3-11.9,11.9-11.9h28.6c3.7,0,7.1,1.7,9.3,4.6l14,19.2c0.8,1,0.8,2.3,0,3.3l-3.3,4.2c-1.1,1.4-3.2,1.4-4.2,0L85.2,83.5
c-0.2-0.3-0.6-0.5-1-0.5H55.6c-0.7,0-1.3,0.6-1.3,1.3v76c0,0.7,0.6,1.3,1.3,1.3h28.6c0.4,0,0.8-0.2,1-0.5l19.8-25.3l20-25.6L151,77
c2.3-2.9,5.7-4.6,9.4-4.6H189C195.6,72.4,200.9,77.8,200.9,84.3L200.9,84.3z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

11
svg/apache-airflow.svg Normal file
View File

@ -0,0 +1,11 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
<path d="m2.5441 127 60.809-62.332a1.124 1.124 0 0 0 0.1359-1.4368c-3.6977-5.1625-10.521-6.0578-13.05-9.5268-7.4903-10.275-9.3909-16.092-12.61-15.731a0.98374 0.98374 0 0 0-0.58464 0.3085l-21.966 22.518c-12.638 12.944-14.454 41.475-14.782 65.367a1.1908 1.1908 0 0 0 2.0473 0.83273z" fill="#017cee"/>
<path d="m126.99 125.46-62.332-60.813a1.124 1.124 0 0 0-1.4389-0.1359c-5.1625 3.6998-6.0578 10.521-9.5268 13.05-10.275 7.4903-16.092 9.3909-15.731 12.61a0.98374 0.98374 0 0 0 0.3085 0.58248l22.518 21.966c12.944 12.638 41.475 14.454 65.367 14.782a1.1908 1.1908 0 0 0 0.83489-2.0408z" fill="#00ad46"/>
<path d="m60.792 112.72c-7.076-6.9035-10.355-20.559 3.2058-48.719-22.046 9.8525-29.771 22.803-25.972 26.511z" fill="#04d659"/>
<path d="m125.45 1.0113-60.807 62.332a1.1218 1.1218 0 0 0-0.1359 1.4368c3.6998 5.1625 10.519 6.0578 13.05 9.5268 7.4903 10.275 9.393 16.092 12.61 15.731a0.97943 0.97943 0 0 0 0.58464-0.3085l21.966-22.518c12.638-12.944 14.454-41.475 14.782-65.367a1.193 1.193 0 0 0-2.0495-0.83273z" fill="#00c7d4"/>
<path d="m112.73 67.211c-6.9035 7.076-20.559 10.355-48.721-3.2058 9.8525 22.046 22.803 29.771 26.511 25.972z" fill="#11e1ee"/>
<path d="m1.0017 2.5495 62.332 60.807a1.124 1.124 0 0 0 1.4368 0.1359c5.1625-3.6998 6.0578-10.521 9.5268-13.05 10.275-7.4903 16.092-9.3909 15.731-12.61a0.99022 0.99022 0 0 0-0.3085-0.58463l-22.518-21.966c-12.944-12.638-41.475-14.454-65.367-14.782a1.1908 1.1908 0 0 0-0.83273 2.0495z" fill="#e43921"/>
<path d="m67.212 15.284c7.076 6.9035 10.355 20.559-3.2058 48.721 22.046-9.8525 29.771-22.805 25.972-26.511z" fill="#ff7557"/>
<path d="m15.279 60.8c6.9035-7.076 20.559-10.355 48.721 3.2058-9.8525-22.046-22.803-29.771-26.511-25.972z" fill="#0cb6ff"/>
<circle cx="64.009" cy="63.995" r="2.7182" fill="#4a4848"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 831 B

30
svg/avigilon.svg Normal file
View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 28.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 3664.4 512" style="enable-background:new 0 0 3664.4 512;" xml:space="preserve">
<style type="text/css">
.st0{fill:#005FB8;}
</style>
<g>
<path class="st0" d="M1194.2,11.5h-66.9c-5.7,0-9.4,3.8-9.4,9.4v470.4c0,5.7,3.8,9.4,9.4,9.4h66.9c5.7,0,9.4-3.8,9.4-9.4V20.9
C1203.7,16.2,1199.9,11.5,1194.2,11.5z M2046.4,11.5h-66.9c-5.7,0-9.4,3.8-9.4,9.4v470.4c0,5.7,3.8,9.4,9.4,9.4h66.9
c5.7,0,9.4-3.8,9.4-9.4V20.9C2055.8,16.2,2052,11.5,2046.4,11.5z M3656.4,12.4h-67.9c-4.7,0-9.4,3.8-9.4,9.4v306.4
c0,5.7-7.5,8.5-12.3,3.8L3357.6,20.9c-3.8-4.7-9.4-8.5-15.1-8.5h-84.8c-4.7,0-9.4,4.7-9.4,8.5v471.3c0,4.7,4.7,9.4,9.4,9.4h66.9
c6.6,0,9.4-4.7,9.4-9.4v-328c0-6.6,8.5-9.4,12.3-3.8L3571.6,495c2.8,4.7,8.5,7.5,13.2,7.5h68.8c5.7,0,10.4-2.8,10.4-10.4V21.8
C3665.9,17.1,3661.1,12.4,3656.4,12.4L3656.4,12.4z M2552.6,414.9h-241.3c-4.7,0-9.4-3.8-9.4-9.4V20.9c0-4.7-3.8-9.4-9.4-9.4h-67.9
c-4.7,0-9.4,3.8-9.4,9.4v470.4c0,4.7,3.8,9.4,9.4,9.4h327.1c4.7,0,9.4-3.8,9.4-9.4v-67.9C2562,419.6,2558.2,414.9,2552.6,414.9z
M360,489.4l-25.5-54.7c-1.9-3.8-5.7-6.6-9.4-6.6H185.6c-3.8,0-7.5,2.8-9.4,6.6l-25.5,54.7c-1.9,4.7,0.9,12.3,7.5,12.3h195.1
C359.1,501.6,362.8,495,360,489.4z"/>
<path class="st0" d="M288.4,20.9c-2.8-5.7-8.5-9.4-14.1-9.4h-37.7c-6.6,0-12.3,3.8-14.1,9.4L0.8,489.4c-2.8,5.7,1.9,12.3,7.5,12.3
h75.4c3.8,0,7.5-2.8,9.4-5.7l154.6-331.8c2.8-5.7,10.4-5.7,13.2,0L416.6,495c1.9,3.8,5.7,5.7,9.4,5.7h75.4c6.6,0,10.4-6.6,7.5-12.3
C508.9,488.4,288.4,20.9,288.4,20.9z M779.5,492.2c-2.8,5.7-8.5,9.4-14.1,9.4h-37.7c-6.6,0-12.3-3.8-14.1-9.4L492,23.7
c-2.8-5.7,1.9-12.3,7.5-12.3h75.4c3.8,0,7.5,2.8,9.4,5.7L738.9,348c2.8,5.7,10.4,5.7,13.2,0L907.7,18.1c1.9-3.8,5.7-5.7,9.4-5.7
h75.4c6.6,0,10.4,6.6,7.5,12.3C1000,24.7,779.5,492.2,779.5,492.2z M2872.1,1.1c-141.4,0-255.5,115-255.5,255.5
s115,255.5,255.5,255.5s255.5-115,255.5-255.5S3013.5,1.1,2872.1,1.1z M2872.1,426.2c-93.3,0-169.7-76.4-169.7-169.7
s76.4-169.7,169.7-169.7c93.3,0,169.7,76.4,169.7,169.7C3042.8,350.8,2966.4,426.2,2872.1,426.2z M1839.9,236.7
c0-5.7-4.7-9.4-10.4-9.4h-194.2c-5.7,0-9.4,4.7-9.4,9.4v55.6c0,5.7,4.7,9.4,9.4,9.4h98c11.3,0,13.2,6.6,10.4,15.1
c-25.5,66.9-92.4,114.1-169.7,108.4c-81.1-5.7-148-68.8-157.4-149.9c-11.3-102.7,68.8-189.5,168.7-189.5c45.2,0,85.8,17,115.9,46.2
c3.8,3.8,8.5,5.7,14.1,5.7h83.9c5.7,0,9.4-6.6,6.6-11.3c-48.1-82-141.4-134.8-246-125.4c-118.8,11.3-215.9,106.5-229.1,225.3
C1314,381,1434.6,512,1585.4,512c137.6,0,249.8-108.4,255.5-244.1v-12.3C1840.9,249.9,1840.9,243.3,1839.9,236.7L1839.9,236.7z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

1
svg/azure-devops.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><defs><linearGradient id="a" x1="9" y1="16.97" x2="9" y2="1.03" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0078d4"/><stop offset=".16" stop-color="#1380da"/><stop offset=".53" stop-color="#3c91e5"/><stop offset=".82" stop-color="#559cec"/><stop offset="1" stop-color="#5ea0ef"/></linearGradient></defs><path d="M17 4v9.74l-4 3.28-6.2-2.26V17l-3.51-4.59 10.23.8V4.44zm-3.41.49L7.85 1v2.29L2.58 4.84 1 6.87v4.61l2.26 1V6.57z" fill="url(#a)"/></svg>

After

Width:  |  Height:  |  Size: 524 B

1
svg/chainguard.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 77 66"><path fill="#fff" d="M76.286 45.285c-.41-4.206-5.163-5.609-11.177-7.372-1.406-.412-2.853-.835-4.26-1.31 1.16-2.526 2.32-6.073 1.499-11.259C60.685 14.817 52.074 0 38.156 0 24.24 0 15.627 14.817 13.965 25.344c-.822 5.186.338 8.733 1.498 11.26-1.406.474-2.853.897-4.26 1.31C5.19 39.675.438 41.067.027 45.284c-.154 1.547.37 3.032 1.478 4.187 1.54 1.598 4.26 2.588 8.109 2.928-.298.856-.421 1.66-.36 2.444.226 3.093 2.874 6.702 9.597 6.702 3.551 0 7.215-1.3 10.09-3.578C30.386 61.907 33.526 66 38.165 66c4.64 0 7.79-4.104 9.228-8.032 2.873 2.278 6.527 3.578 10.089 3.578 6.733 0 9.37-3.61 9.596-6.702.062-.784-.061-1.578-.359-2.444 3.85-.34 6.58-1.33 8.109-2.928 1.088-1.155 1.611-2.64 1.457-4.187Z"/><path fill="#4445E7" d="M73.186 45.595c-.318-3.269-9.894-4.331-16.699-7.28 1.489-2.96 3.747-6.31 2.772-12.476-1.304-8.197-8.386-22.705-21.113-22.705S18.337 17.631 17.033 25.84c-.975 6.166 1.294 9.517 2.772 12.476-6.795 2.949-16.371 4.021-16.7 7.28-.297 3.02 5.522 4.124 12.081 3.732-1.652 2.01-2.946 3.918-2.843 5.29.164 2.299 2.617 3.794 6.487 3.794 4.331 0 11.023-2.732 12.614-10.115 0 0-.657 2.96-.298 5.795.431 3.382 2.977 8.764 7 8.764s6.569-5.382 7-8.764c.36-2.836-.298-5.795-.298-5.795 1.591 7.383 8.273 10.115 12.614 10.115 3.87 0 6.323-1.495 6.487-3.794.103-1.372-1.2-3.29-2.843-5.29 6.559.392 12.378-.711 12.08-3.732ZM24.813 15.394c-.76-.65-.554-2.052.452-3.135 1.006-1.082 2.443-1.443 3.202-.793.76.65.555 2.051-.451 3.134-1.006 1.083-2.443 1.433-3.203.794Zm6.928 18.683c-3.13 0-5.665-2.546-5.665-5.691s2.535-5.692 5.665-5.692 5.666 2.547 5.666 5.692c0 3.134-2.535 5.691-5.665 5.691Zm3.46-22.415c-2.207.99-4.558.65-5.256-.753-.698-1.413.524-3.351 2.73-4.341 2.207-.99 4.558-.65 5.256.753.697 1.402-.524 3.35-2.73 4.34Zm15.241 22.415c-3.13 0-5.666-2.546-5.666-5.691s2.536-5.692 5.666-5.692c3.13 0 5.666 2.547 5.666 5.692 0 3.134-2.535 5.691-5.666 5.691Zm.462-5.732 2.083-2.465a3.526 3.526 0 0 0-2.545-1.082 3.565 3.565 0 0 0-3.562 3.577c0 1.98 1.591 3.578 3.562 3.578a3.565 3.565 0 0 0 3.562-3.578v-.03h-3.1Zm-15.611 0v.03c0 1.98-1.591 3.578-3.562 3.578a3.565 3.565 0 0 1-3.561-3.578c0-1.98 1.59-3.578 3.561-3.578.996 0 1.899.413 2.546 1.083l-2.084 2.465h3.1Z"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

1
svg/collabora-online.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

22
svg/cosign.svg Normal file
View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 125 120">
<defs>
<style>
.cls-1 {
fill: #faf7ef;
}
.cls-2 {
fill: #5a9ecc;
}
</style>
</defs>
<path class="cls-1" d="m19.7339916,42.6312151c-.2819824.2368164-.5772095.4802246-.7871094.7770996-5.5400391,7.8378906-5.963501,16.0563965-1.7913208,24.6013184.1445312.2958984.1744995.8955078.6369629.7495117.4475708-.1411133.3234253-.6958008.2644043-1.0898438-.2091064-1.3942871-.4000854-2.7937012-.6747437-4.1757812-1.1710205-5.8945312-.6853027-11.5917969,1.9140015-17.0634766.3968506-.8352051.6983032-1.7172852,1.020752-2.5859375.1447754-.390625.177002-.7978516-.0599365-1.1450195-.1777954-.1933594-.3771973-.1899414-.5230103-.0678711Z"/>
<path class="cls-1" d="m77.3126659,7.8157855c.8335571.2570801,1.664978.5258789,2.5092773.7431641,3.6004639.927002,6.6469116,2.7248535,9.0009766,5.640625.359375.4448242.7702026.8496094,1.168335,1.2619629.178833.1855469.3973389.3127441.6543579.2734375.1555176-.0471191.2070923-.1591797.1779785-.2731934-.0563965-.2207031-.112915-.4504395-.222229-.6469727-2.8853149-5.1899414-7.3543091-7.6286621-13.2368164-7.5927734-.2037964.0012207-.5460815-.1425781-.5886841.1540527-.0411987.2873535.3013306.3671875.5368042.4396973Z"/>
<path class="cls-1" d="m106.0054149,59.5340472c.163147-21.7119141-15.2355347-40.8850098-36.1751709-45.2524414-23.3215942-4.8649902-42.4655151,8.4853516-49.3034668,22.1425781,1.496521-1.8442383,2.7498169-3.6088867,4.2210693-5.1677246,12.1602783-12.8837891,29.5657349-17.5368652,45.5683594-13.6147461,6.8934326,1.6894531,13.5281982,4.9604492,19.3685303,9.8664551,10.4701538,8.7949219,15.7736206,22.2143555,14.6230469,35.3530273-.3206177,3.6616211-1.1417847,7.3012695-2.4928589,10.8129883-7.6157227,19.7946777-28.7977905,31.4790039-50.5445557,27.7958984-11.9971924-2.0322266-21.7636719-7.9013672-29.3483276-17.453125,6.7340698,12.6591797,25.4223633,24.2209473,45.7973633,20.5454102,22.3269653-4.0273438,38.118042-22.6845703,38.2860107-45.0283203Z"/>
<path class="cls-1" d="m105.8782787,83.019887c-.4285889-.1914062-.7036133.3061523-.9206543.6401367-.7685547,1.182373-1.5537109,2.355957-2.2650146,3.5727539-3.0332642,5.1879883-7.1756592,9.1293945-12.7501221,11.5002441-.8509521.3618164-1.661499.8217773-2.4790039,1.2580566-.3673706.1962891-.6616821.4794922-.7146606.8967285.0048218.2624512.15625.392334.3464355.3972168.368042.0100098.7503662.0239258,1.1044312-.059082,9.3447266-2.1911621,15.112915-8.060791,17.6580811-17.2226562.0881958-.3173828.4633789-.7858887.0205078-.9833984Z"/>
<path class="cls-2" d="m109.9423045,38.9820452c-7.100769-6.0888672-7.9071655-9.5507812-10.3548584-19.015625-2.6619263-10.2941895-16.9299927-19.2294922-27.3804321-16.9968262-8.0006104,1.7094727-15.8115234,2.1591797-23.7595215.2648926-.8413086-.2004395-1.7322998-.2233887-2.6032104-.2626953-4.2260742-.1911621-7.663208,1.347168-10.2867432,4.6999512-1.5772095,2.0158691-2.961853,4.1655273-4.1110229,6.434082-3.048645,6.0185547-7.7230835,10.2897949-13.6537476,13.3623047-2.7096558,1.4038086-5.385498,2.9226074-7.8926392,4.65625-3.8612061,2.6691895-7.0163574,5.9614258-7.6196899,10.9406738-.4396973,3.6276855.6728516,6.9763184,2.3781128,10.048584,3.1351318,5.6479492,4.6774902,11.5854492,4.0576172,17.4433594,0,2.4206543-.0651855,4.2441406.0117798,6.0617676.2650757,6.2590332,1.7304688,11.9863281,7.2492676,15.8515625,2.0961914,1.4682617,4.3218384,2.7392578,6.675293,3.697998,6.8986206,2.8095703,12.4552612,7.1447754,16.2451172,13.6447754.5064087.8684082,1.2446289,1.6140137,1.9368896,2.359375,3.1467285,3.3884277,7.0062256,5.0959473,11.6685181,4.942627,3.4735718-.1142578,6.7943115-.9423828,9.9241333-2.3574219,9.3667603-4.2351074,18.8435669-7.8881836,29.1243286-9.5373535,7.2749634-1.1672363,12.0172119-6.1279297,14.5369873-13.1069336.8239136-2.2819824,1.2300415-4.6474609,1.5775146-7.017334.6915283-4.7163086,2.9851685-8.2839355,7.1491089-10.6445312.9477539-.5375977,1.3181763-1.1594238,2.2012329-1.800293,3.1641846-2.2956543,5.0458374-5.3869629,5.6109009-9.260498.5878906-4.0300293-.2290649-7.8166504-2.0206909-11.4313965-2.6206055-5.2871094-6.2943115-9.2304688-10.6642456-12.9772949ZM77.3645458,7.2220355c5.8825073-.0358887,10.3515015,2.402832,13.2368164,7.5927734.109314.1965332.1658325.4262695.222229.6469727.0291138.1140137-.0224609.2260742-.1779785.2731934-.257019.0393066-.4755249-.0878906-.6543579-.2734375-.3981323-.4123535-.80896-.8171387-1.168335-1.2619629-2.3540649-2.9157715-5.4005127-4.713623-9.0009766-5.640625-.8442993-.2172852-1.6757202-.486084-2.5092773-.7431641-.2354736-.0725098-.5780029-.1523438-.5368042-.4396973.0426025-.2966309.3848877-.152832.5886841-.1540527ZM20.3169383,43.8441058c-.3224487.8686523-.6239014,1.7507324-1.020752,2.5859375-2.5993042,5.4716797-3.085022,11.1689453-1.9140015,17.0634766.2746582,1.3820801.4656372,2.7814941.6747437,4.1757812.059021.394043.1831665.9487305-.2644043,1.0898438-.4624634.1459961-.4924316-.4536133-.6369629-.7495117-4.1721802-8.5449219-3.7487183-16.7634277,1.7913208-24.6013184.2098999-.296875.505127-.5402832.7871094-.7770996.145813-.1220703.3452148-.1254883.5230103.0678711.2369385.347168.2047119.7543945.0599365,1.1450195Zm1.6051025,40.1728516c7.5846558,9.5517578,17.3511353,15.4208984,29.3483276,17.453125,21.7467651,3.6831055,42.928833-8.0012207,50.5445557-27.7958984,1.3510742-3.5117188,2.1722412-7.1513672,2.4928589-10.8129883,1.1505737-13.1386719-4.1528931-26.5581055-14.6230469-35.3530273-5.840332-4.9060059-12.4750977-8.177002-19.3685303-9.8664551-16.0026245-3.9221191-33.4080811.730957-45.5683594,13.6147461-1.4712524,1.5588379-2.7245483,3.3234863-4.2210693,5.1677246,6.8379517-13.6572266,25.9818726-27.0075684,49.3034668-22.1425781,20.9396362,4.3674316,36.3383179,23.5405273,36.1751709,45.2524414-.1679688,22.34375-15.9590454,41.0009766-38.2860107,45.0283203-20.375,3.6755371-39.0632935-7.8862305-45.7973633-20.5454102Zm53.9451904-24.2729492l-1.4141846.942627c-.9428711.7072754-2.3570557.4711914-3.0641479-.4714355l-13.6706543-18.855957c-.7073364-.9431152-.4715576-2.3571777.4713135-3.0644531l1.4141235-.9428711c.9428711-.7072754,2.3570557-.4709473,3.0641479.4716797l13.6709595,18.8564453c.7068481.942627.4713135,2.3566895-.4715576,3.0639648Zm4.2427368,4.0068359c.7070923-.4716797,1.4141846-.2358398,1.4141846.7072754l.4713135,4.7141113c0,.942627-.7070923,1.4140625-1.4141846.942627l-4.2424927-2.1208496c-.7073364-.4716797-.7073364-1.1789551,0-1.6501465l3.7711792-2.5930176Zm-12.2567139,1.8857422c1.1786499.4711914,1.6499023,2.1210938,1.1786499,3.2998047-.7070923,1.4143066-2.3570557,1.8857422-3.5354614,1.1784668-4.9498901-2.5925293-8.2497559-1.4140625-12.2565308-.2358398-1.8857422.7072754-3.5357056,1.1784668-5.6572266,1.4143066h-1.4141235c-1.885498,0-4.0067749-.4711914-6.3640747-1.4143066-1.1784058-.4714355-1.885498-1.8850098-1.4141846-3.2998047.4715576-1.1784668,1.8857422-1.8852539,3.2999268-1.4143066,2.121521.7075195,4.007019,1.1789551,5.4212036.9428711,1.6499023-.2353516,3.0643311-.7070312,4.7140503-1.1784668,4.4785767-1.1784668,9.4281616-2.8283691,16.027771.7072754Zm38.0045166,18.3666992c-2.545166,9.1618652-8.3133545,15.0314941-17.6580811,17.2226562-.3540649.0830078-.7363892.0690918-1.1044312.059082-.1901855-.0048828-.3416138-.1347656-.3464355-.3972168.0529785-.4172363.34729-.7004395.7146606-.8967285.8175049-.4362793,1.6280518-.8962402,2.4790039-1.2580566,5.5744629-2.3708496,9.7168579-6.3122559,12.7501221-11.5002441.7113037-1.2167969,1.49646-2.3903809,2.2650146-3.5727539.217041-.3339844.4920654-.831543.9206543-.6401367.4428711.1975098.067688.6660156-.0205078.9833984Z"/>
<path class="cls-1" d="m62.6678295,37.823598c-.7070923-.942627-2.1212769-1.1789551-3.0641479-.4716797l-1.4141235.9428711c-.9428711.7072754-1.1786499,2.1213379-.4713135,3.0644531l13.6706543,18.855957c.7070923.942627,2.1212769,1.1787109,3.0641479.4714355l1.4141846-.942627c.9428711-.7072754,1.1784058-2.1213379.4715576-3.0639648l-13.6709595-18.8564453Z"/>
<path class="cls-1" d="m47.111433,66.1077776c-1.4141846.236084-3.2996826-.2353516-5.4212036-.9428711-1.4141846-.4709473-2.8283691.2358398-3.2999268,1.4143066-.4713135,1.4147949.2357788,2.8283691,1.4141846,3.2998047,2.3572998.9431152,4.4785767,1.4143066,6.3640747,1.4143066h1.4141235c2.121521-.2358398,3.7714844-.7070312,5.6572266-1.4143066,4.0067749-1.1782227,7.3066406-2.3566895,12.2565308.2358398,1.1784058.7072754,2.8283691.2358398,3.5354614-1.1784668.4712524-1.1787109,0-2.8286133-1.1786499-3.2998047-6.5996094-3.5356445-11.5491943-1.8857422-16.027771-.7072754-1.6497192.4714355-3.0641479.9431152-4.7140503,1.1784668Z"/>
<path class="cls-1" d="m76.3387889,67.9940081l4.2424927,2.1208496c.7070923.4714355,1.4141846,0,1.4141846-.942627l-.4713135-4.7141113c0-.9431152-.7070923-1.1789551-1.4141846-.7072754l-3.7711792,2.5930176c-.7073364.4711914-.7073364,1.1784668,0,1.6501465Z"/>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

180
svg/flaresolverr.svg Normal file
View File

@ -0,0 +1,180 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="256"
height="256"
viewBox="0 0 256 256"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="flaresolverr_logo.svg"
inkscape:export-filename="C:\Users\Diego\Desktop\flaresolverr_logo.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.64"
inkscape:cx="-88.263072"
inkscape:cy="-93.571587"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px"
showborder="true" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-796.36219)">
<g
id="g4177"
transform="matrix(0.51436047,0,0,0.59495735,-334.60687,650.43877)">
<g
id="g4141" />
<g
id="g4143" />
<g
id="g4145" />
<g
id="g4147" />
<g
id="g4149" />
<g
id="g4151" />
<g
id="g4153" />
<g
id="g4155" />
<g
id="g4157" />
<g
id="g4159" />
<g
id="g4161" />
<g
id="g4163" />
<g
id="g4165" />
<g
id="g4167" />
<g
id="g4169" />
<g
id="g4263"
transform="matrix(0.94954959,0,0,0.94954959,-111.49858,393.65111)">
<g
id="g4269" />
<g
id="g4342"
transform="translate(736.24631,-345.97247)">
<path
style="fill:#9dc6fb"
inkscape:connector-curvature="0"
d="m 584.32729,454.42324 c -0.995,-51.995 -44.49,-93.257 -96.488,-91.376 -7.616,0.273 -14.792,-3.862 -18.446,-10.55 -22.605,-41.376 -66.519,-69.441 -116.989,-69.441 -51.757,0 -96.596,29.528 -118.647,72.648 -6.423,12.56 -19.224,10.9 -24.689,10.9 -40.126,0 -74.199,25.852 -86.512,61.804 -2.046,5.973 -6.938,10.463 -12.894,12.556 -22.389998,7.87 -38.250998,29.605 -37.275998,54.902 1.163,30.174 26.849,53.631 57.044998,53.631 l 359.817,0 c 52.291,0 96.08,-42.793 95.079,-95.074 z"
id="path4285" />
<path
style="fill:#80b4fb"
inkscape:connector-curvature="0"
d="m 190.59629,495.86724 c -0.975,-25.298 14.885,-47.033 37.276,-54.902 5.956,-2.094 10.848,-6.584 12.894,-12.556 12.313,-35.952 46.385,-61.804 86.512,-61.804 5.465,0 18.265,1.66 24.688,-10.9 13.005,-25.43 33.94,-46.125 59.541,-58.832 -17.812,-8.834 -37.873,-13.816 -59.103,-13.816 -51.757,0 -96.596,29.528 -118.647,72.648 -6.423,12.56 -19.224,10.9 -24.689,10.9 -40.126,0 -74.199,25.852 -86.512,61.804 -2.046,5.973 -6.938,10.463 -12.894,12.556 -22.389998,7.87 -38.250998,29.605 -37.275998,54.902 1.163,30.174 26.849,53.63 57.044998,53.63 l 118.21,0 c -30.196,0 -55.881,-23.457 -57.045,-53.63 z"
id="path4287" />
</g>
</g>
</g>
<g
id="g4241"
transform="matrix(0.1453379,0,0,0.1453379,47.012211,854.83732)"
style="fill:#4d4d4d">
<g
id="g4197"
style="fill:#4d4d4d;fill-opacity:1">
<path
id="path4201"
d="m 867.699,356.238 -31.5,-26.6 c -9.699,-8.2 -24,-7.8 -33.199,0.9 l -17.4,16.3 c -14.699,-7.1 -30.299,-12.1 -46.4,-15 l -4.898,-24 c -2.5,-12.4 -14,-21 -26.602,-20 l -41.1,3.5 c -12.6,1.1 -22.5,11.4 -22.9,24.1 l -0.799,24.4 c -15.801,5.7 -30.701,13.5 -44.301,23.3 l -20.799,-13.8 c -10.602,-7 -24.701,-5 -32.9,4.7 l -26.6,31.7 c -8.201,9.7 -7.801,24 0.898,33.2 l 18.201,19.399 c -6.301,14.2 -10.801,29.101 -13.4,44.4 l -26,5.3 c -12.4,2.5 -21,14 -20,26.601 l 3.5,41.1 c 1.1,12.6 11.4,22.5 24.1,22.9 l 28.1,0.899 c 5.102,13.4 11.801,26.101 19.9,38 l -15.699,23.7 c -7,10.6 -5,24.7 4.699,32.9 l 31.5,26.6 c 9.701,8.2 24,7.8 33.201,-0.9 l 20.6,-19.3 c 13.5,6.3 27.699,11 42.299,13.8 l 5.701,28.2 c 2.5,12.4 14,21 26.6,20 l 41.1,-3.5 c 12.6,-1.1 22.5,-11.399 22.9,-24.1 l 0.9,-27.601 c 15,-5.3 29.199,-12.5 42.299,-21.399 l 22.701,15 c 10.6,7 24.699,5 32.9,-4.7 l 26.6,-31.5 c 8.199,-9.7 7.799,-24 -0.9,-33.2 L 872.7,592.138 c 6.701,-14.2 11.602,-29.2 14.4,-44.601 l 25,-5.1 c 12.4,-2.5 21,-14 20,-26.601 l -3.5,-41.1 c -1.1,-12.6 -11.4,-22.5 -24.1,-22.9 l -25.1,-0.8 c -5.201,-14.6 -12.201,-28.399 -20.9,-41.2 l 13.699,-20.6 c 7.201,-10.598 5.201,-24.798 -4.5,-32.998 z M 712.801,593.837 c -44.4,3.801 -83.602,-29.3 -87.301,-73.699 -3.801,-44.4 29.301,-83.601 73.699,-87.301 44.4,-3.8 83.602,29.301 87.301,73.7 3.801,44.401 -29.301,83.601 -73.699,87.3 z"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1" />
<path
id="path4203"
d="m 205,704.438 c -12.6,1.3 -22.3,11.899 -22.4,24.6 l -0.3,25.3 c -0.2,12.7 9.2,23.5 21.8,25.101 l 18.6,2.399 c 3.1,11.301 7.5,22.101 13.2,32.301 l -12,14.8 c -8,9.899 -7.4,24.1 1.5,33.2 l 17.7,18.1 c 8.9,9.1 23.1,10.1 33.2,2.3 l 14.899,-11.5 c 10.5,6.2 21.601,11.101 33.2,14.5 l 2,19.2 c 1.3,12.6 11.9,22.3 24.6,22.4 l 25.301,0.3 c 12.699,0.2 23.5,-9.2 25.1,-21.8 l 2.3,-18.2 c 12.601,-3.101 24.601,-7.8 36,-14 l 14,11.3 c 9.9,8 24.101,7.4 33.201,-1.5 l 18.1,-17.7 c 9.1,-8.899 10.1,-23.1 2.301,-33.2 L 496.6,818.438 c 6.6,-11 11.701,-22.7 15.201,-35 l 16.6,-1.7 c 12.6,-1.3 22.299,-11.9 22.4,-24.6 l 0.299,-25.301 c 0.201,-12.699 -9.199,-23.5 -21.799,-25.1 l -16.201,-2.1 c -3.1,-12.2 -7.699,-24 -13.699,-35 l 10.1,-12.4 c 8,-9.9 7.4,-24.1 -1.5,-33.2 l -17.699,-18.1 c -8.9,-9.101 -23.102,-10.101 -33.201,-2.3 l -12.101,9.3 c -11.399,-6.9 -23.6,-12.2 -36.399,-15.8 L 407,581.437 c -1.3,-12.601 -11.899,-22.3 -24.6,-22.4 l -25.3,-0.3 c -12.7,-0.2 -23.5,9.2 -25.101,21.8 l -2,15.601 c -13.199,3.399 -25.899,8.6 -37.699,15.399 l -12.5,-10.2 c -9.9,-8 -24.101,-7.399 -33.201,1.5 l -18.2,17.801 c -9.1,8.899 -10.1,23.1 -2.3,33.199 l 10.7,13.801 c -6.2,11 -11.1,22.699 -14.3,35 l -17.499,1.8 z m 163.3,-28.601 c 36.3,0.4 65.399,30.301 65,66.601 -0.4,36.3 -30.301,65.399 -66.601,65 -36.3,-0.4 -65.399,-30.3 -65,-66.601 0.401,-36.299 30.301,-65.399 66.601,-65 z"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1" />
</g>
<g
id="g4205"
style="fill:#4d4d4d" />
<g
id="g4207"
style="fill:#4d4d4d" />
<g
id="g4209"
style="fill:#4d4d4d" />
<g
id="g4211"
style="fill:#4d4d4d" />
<g
id="g4213"
style="fill:#4d4d4d" />
<g
id="g4215"
style="fill:#4d4d4d" />
<g
id="g4217"
style="fill:#4d4d4d" />
<g
id="g4219"
style="fill:#4d4d4d" />
<g
id="g4221"
style="fill:#4d4d4d" />
<g
id="g4223"
style="fill:#4d4d4d" />
<g
id="g4225"
style="fill:#4d4d4d" />
<g
id="g4227"
style="fill:#4d4d4d" />
<g
id="g4229"
style="fill:#4d4d4d" />
<g
id="g4231"
style="fill:#4d4d4d" />
<g
id="g4233"
style="fill:#4d4d4d" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

21
svg/flarum.svg Normal file
View File

@ -0,0 +1,21 @@
<?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 300 300">
<defs>
<linearGradient id="b" x1="50%" x2="50%" y1="0%" y2="100%">
<stop offset="0%" stop-color="#EA3636"/>
<stop offset="100%" stop-color="#F37440"/>
</linearGradient>
<pattern id="d" width="512" height="512" x="-512" y="-512" patternUnits="userSpaceOnUse">
<use xlink:href="#a"/>
</pattern>
<path id="c" d="M0 0h300v300H0z"/>
</defs>
<g fill="none" fill-rule="evenodd">
<use xlink:href="#c" fill="url(#b)"/>
<use xlink:href="#c" fill="url(#d)" fill-opacity=".03"/>
<g>
<path fill="#DCDCDC" d="M160.24 178v55.15L91.8 188.38l-2.75-1.8-5.97-3.9a8.84 8.84 0 0 1-2.6-2.65l79.76-2.03Z"/>
<path fill="#FFF" d="M82.38 66.09A3.38 3.38 0 0 0 79 69.47v105.65c0 1.73.5 3.43 1.44 4.88a8.84 8.84 0 0 0 2.6 2.65l5.97 3.9 2.75 1.8s-11.35-8.37 2.46-8.37h126.95V66.1H82.38Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 996 B

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