diff --git a/.github/ISSUE_TEMPLATE/request_suggest.yml b/.github/ISSUE_TEMPLATE/request_suggest.yml index 03bfc8cc..7a6c2bf2 100644 --- a/.github/ISSUE_TEMPLATE/request_suggest.yml +++ b/.github/ISSUE_TEMPLATE/request_suggest.yml @@ -1,32 +1,34 @@ -name: "\U0001FA79 Requests & Suggestions" +name: "๐Ÿ” Requests & Suggestions" description: Suggest an icon or request changes -labels: "\U0001FA79 Requests & Suggestions" +labels: "๐Ÿ” Requests & Suggestions" assignees: walkxcode body: - type: markdown attributes: - 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" + value: | + Thank you for your interest in contributing to our icon repository! To ensure smooth collaboration, please make sure to read and agree to our [Contribution Guidelines](https://github.com/walkxcode/dashboard-icons/blob/main/CONTRIBUTING.md) before submitting your request. + - 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 attributes: label: Icon Name - description: What is the name of the icon you are contributing? + description: What is the name of the icon you are requesting or suggesting? placeholder: Enter icon name here validations: required: true + - type: textarea - id: icons + id: icon-details attributes: - label: Icon(s) - description: >- - Upload your icons here. You can do this by Copy-Pasting or Drag & - Dropping the images. - placeholder: Copy-Paste or Drag & Drop images here! + label: Icon Details + description: Provide any additional details or context for the icon request. + placeholder: Enter details here validations: required: false diff --git a/.github/workflows/compress_pngs.yml b/.github/workflows/compress_pngs.yml new file mode 100644 index 00000000..27dd5795 --- /dev/null +++ b/.github/workflows/compress_pngs.yml @@ -0,0 +1,33 @@ +name: Compress PNGs ๐Ÿ—œ๏ธ + +on: + schedule: + - cron: "0 0 * * 0" + workflow_dispatch: + +jobs: + compress_pngs: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Install Dependencies + run: | + sudo apt-get update + sudo apt-get install -y zopfli + + - name: Compress PNG Files + run: | + echo "Compressing PNGs..." + find png/ -iname "*.png" -print0 | xargs -0 -P 4 -I{} zopflipng -y {} {} + + - name: Commit and Push Changes + run: | + git config --global user.email "noreply@lammers.media" + git config --global user.name "Dashboard Icons Bot" + git add png/ + git commit -m ":compression: Compressed PNGs" || exit 0 + git pull --rebase + git push diff --git a/.github/workflows/generate_file_tree.yml b/.github/workflows/generate_file_tree.yml new file mode 100644 index 00000000..8a9f0e7d --- /dev/null +++ b/.github/workflows/generate_file_tree.yml @@ -0,0 +1,31 @@ +name: Generate File Tree ๐ŸŒณ + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + generate_file_tree: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Set Up Python + uses: actions/setup-python@v4 + with: + python-version: "3.9" + + - name: Generate File Tree + run: python scripts/generate_file_tree.py svg png webp + + - name: Commit and Push Changes + run: | + git config --global user.email "noreply@lammers.media" + git config --global user.name "Dashboard Icons Bot" + git add tree.json + git commit -m ":construction_worker: Generate file tree" || exit 0 + git push diff --git a/.github/workflows/generate_icons_page.yml b/.github/workflows/generate_icons_page.yml new file mode 100644 index 00000000..34e9d1ce --- /dev/null +++ b/.github/workflows/generate_icons_page.yml @@ -0,0 +1,31 @@ +name: Generate Icons Page ๐Ÿš€ + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + build_icons_page: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Set Up Python + uses: actions/setup-python@v4 + with: + python-version: "3.9" + + - name: Generate ICONS.md + run: python scripts/generate_icons_page.py + + - name: Commit and Push Changes + run: | + git config --global user.email "noreply@lammers.media" + git config --global user.name "Dashboard Icons Bot" + git add ICONS.md + git commit -m ":construction_worker: Generate ICONS.md" || exit 0 + git push diff --git a/.github/workflows/icons-page-generation.yml b/.github/workflows/icons-page-generation.yml deleted file mode 100644 index 6fc36d57..00000000 --- a/.github/workflows/icons-page-generation.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: ๐Ÿš€ Generates ICONS - -on: - push: - workflow_dispatch: -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python - uses: actions/setup-python@v4 - with: - python-version: "3.9" - architecture: "x64" - - - name: ICONS Generator - run: |- - python config/ci.py - cat ICONS.md - - - name: Load to GitHub - run: |- - git diff - git config --global user.email "noreply@lammers.media" - git config --global user.name "Dashboard Icons Bot" - git add -A - git commit -m ":construction_worker: Generates ICONS.md" || exit 0 - git push diff --git a/.github/workflows/png-compression.yml b/.github/workflows/png-compression.yml deleted file mode 100644 index a7428682..00000000 --- a/.github/workflows/png-compression.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: ๐Ÿ—œ๏ธ PNG Compression - -on: - schedule: - - cron: "0 0 * * 0" - workflow_dispatch: - -jobs: - compress-images: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - name: Install Dependencies - run: | - sudo apt-get update - sudo apt-get install -y zopfli - - - name: Compress PNGs - run: | - 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 ":children_crossing: Compresses PNGs" || exit 0 - git pull --ff-only - git push diff --git a/.github/workflows/validate_and_preview_icons.yml b/.github/workflows/validate_and_preview_icons.yml new file mode 100644 index 00000000..0cd89d7e --- /dev/null +++ b/.github/workflows/validate_and_preview_icons.yml @@ -0,0 +1,72 @@ +name: Validate and Preview Icons ๐Ÿ› ๏ธ + +on: + pull_request: + types: [opened, synchronize] + +jobs: + validate_icons: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Set Up Python + uses: actions/setup-python@v4 + with: + python-version: "3.9" + + - name: Install Dependencies + run: | + pip install cairosvg pillow + + - name: Run SVG to PNG and WEBP Conversion + run: python scripts/convert_svg_assets.py + + - name: Upload Converted Icons + uses: actions/upload-artifact@v3 + with: + name: converted-icons + path: | + png/*.png + webp/*.webp + + - name: Post Comment with Preview + uses: marocchino/sticky-pull-request-comment@v2 + with: + message: | + ## Icon Conversion Results + + **Total Icons Processed:** ${{ steps.process.outputs.total_icons }} + **Converted PNGs:** ${{ steps.process.outputs.converted_pngs }} + **Converted WEBPs:** ${{ steps.process.outputs.converted_webps }} + **Removed PNGs:** ${{ steps.process.outputs.removed_pngs }} + **Removed WEBPs:** ${{ steps.process.outputs.removed_webps }} + + ${{ steps.process.outputs.failed_files }} + + ### Preview of Converted Icons: + + ${{ steps.preview.outputs.icon_previews }} + - name: Set Output Variables + id: process + run: | + echo "::set-output name=total_icons::$(grep 'Total icons:' output.log | awk '{print $3}')" + echo "::set-output name=converted_pngs::$(grep 'Converted' output.log | awk '{print $2}')" + echo "::set-output name=converted_webps::$(grep 'Converted' output.log | awk '{print $5}')" + echo "::set-output name=removed_pngs::$(grep 'Removed' output.log | awk '{print $2}')" + echo "::set-output name=removed_webps::$(grep 'Removed' output.log | awk '{print $5}')" + echo "::set-output name=failed_files::$(grep 'The following files failed' -A 10 output.log)" + + - name: Generate Icon Previews + id: preview + run: | + ICONS=$(find png/ -type f -name "*.png") + PREVIEWS="" + for ICON in $ICONS; do + ICON_NAME=$(basename $ICON) + PREVIEW="![${ICON_NAME}](https://raw.githubusercontent.com/walkxcode/dashboard-icons/${{ github.event.pull_request.head.ref }}/png/${ICON_NAME})" + PREVIEWS="$PREVIEWS $PREVIEW" + done + echo "::set-output name=icon_previews::$PREVIEWS" diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index ac0e38e7..bacba7d4 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,23 +1,30 @@ -# ๐Ÿšจ Code of Conduct +## Code of Conduct -We are committed to providing a welcoming and harassment-free environment for everyone who wants to participate in our icon repository, regardless of gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, age, religion, or nationality. +We are committed to creating a welcoming and harassment-free environment for everyone who contributes to our icon repository. This includes people of all genders, gender identities, sexual orientations, disabilities, appearances, body sizes, races, ages, religions, and nationalities. -## ๐Ÿ’ฌ Communication +### Communication -All communication should be appropriate for a professional audience including people of many different backgrounds. Be respectful, considerate, and constructive in all communication, both online and offline. +All communication should be appropriate for a professional audience, respectful, constructive, and considerate of people from different backgrounds. Please aim to create a positive and inclusive atmosphere. -## ๐Ÿšซ Prohibited Behavior +### Prohibited Behavior -Harassment, intimidation, discrimination, or any other inappropriate conduct or behavior will not be tolerated. This includes, but is not limited to, the use of sexual language or imagery, deliberate intimidation, stalking, following, harassing photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention. +We do not tolerate harassment, intimidation, discrimination, or any other inappropriate conduct, whether in communication or behavior. Prohibited actions include: -## ๐Ÿ“ข Reporting +- The use of sexual language or imagery +- Deliberate intimidation or stalking +- Unwelcome sexual attention or harassment +- Inappropriate physical contact +- Disruptions during events or conversations +- Discrimination of any kind -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. +### Reporting -## ๐Ÿšจ Consequences +If you witness or experience behavior that violates this code of conduct, please report it immediately to [bjorn@lammers.media](mailto:bjorn@lammers.media). All reports will be reviewed confidentially and promptly, and appropriate actions will be taken. -Anyone found to be engaging in behavior that violates the code of conduct will be subject to appropriate action, which may include, but is not limited to, warning, removal from the repository, or banning from participation in the repository. +### Consequences -## ๐Ÿ‘ Acknowledgment +Anyone violating this code of conduct may face consequences, such as warnings, removal from the repository, or a ban from future participation. We take violations seriously to ensure a safe and welcoming environment for everyone. -We ask that all participants in this repository agree to abide by this code of conduct. By contributing to this repository, you agree to these terms and conditions. Thank you for helping us create a welcoming and inclusive environment for all. ๐Ÿ™ +### Acknowledgment + +By contributing to this repository, you agree to adhere to this code of conduct. Thank you for helping us create an inclusive and supportive environment for all contributors. \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cae56100..353fe49c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,50 +1,78 @@ -# ๐Ÿค Contribution Guidelines +![Contributions Welcome](https://img.shields.io/badge/contributions-welcome-brightgreen?style=flat-square) -We appreciate your interest in contributing to our icon repository! To ensure smooth collaboration, kindly adhere to the following guidelines: +## Contribution Guidelines -## ๐ŸŒŸ Icon Specifications +Thank you for your interest in contributing to the icon repository! To ensure smooth collaboration, please follow these guidelines. Your contributions help make this project better. -- 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. +## Table of Contents -## ๐Ÿ’ป Gitmoji Commits +- [Contribution Guidelines](#contribution-guidelines) +- [Table of Contents](#table-of-contents) +- [Icon Specifications](#icon-specifications) + - [Format](#format) + - [Cropping](#cropping) + - [Light and Dark Versions](#light-and-dark-versions) + - [File Naming](#file-naming) + - [Quality Requirements](#quality-requirements) +- [Git Commit Messages](#git-commit-messages) +- [Contribution Process](#contribution-process) +- [Code of Conduct](#code-of-conduct) +- [Contact](#contact) -- 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. +## Icon Specifications -## ๐Ÿ”€ Converting SVG to PNG +### Format -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. +- **SVG Format Required**: All icons must be submitted in SVG format. +- **Automatic PNG and WEBP Generation**: PNG and WEBP versions are generated automatically from the SVG files using the following settings: + - **Dimensions**: + - Height: 512 pixels + - Width: Auto (maintaining aspect ratio) + - **Transparency**: Enabled -## โคต๏ธ Downscaling PNGs +### Cropping -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). +- **Remove Empty Space**: Crop any empty space from your SVG files to ensure the icon is properly centered and sized. You can use [SVG Crop](https://svgcrop.com/) to assist with this. -## ๐Ÿค Contributing +### Light and Dark Versions -1. Fork the repository to your GitHub account. -2. Clone the repository to your local machine. -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. +- **Monochrome or Single Primary Color Icons**: + - If your icon is monochrome, please provide additional versions if applicable: + - **`-light` Version**: For icons primarily dark or using black as a main color, provide a `-light` version for light backgrounds. + - **`-dark` Version**: For icons primarily light or using white as a main color, provide a `-dark` version for dark backgrounds. + - **Examples**: + - A black logo should include a `-light` version where black is inverted. + - A multicolored logo using black should provide a `-light` version with the black replaced. + - **Tool Recommendation**: [DEEditor](https://deeditor.com/) can help adjust icon colors if needed. -## ๐Ÿšจ Code of Conduct +### File Naming -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. +- **Kebab Case**: Name your files using kebab case (lowercase words separated by hyphens). For example, "Nextcloud Calendar" becomes `nextcloud-calendar.svg`. + - **Note**: Filenames are automatically converted to kebab case, but please double-check your naming to avoid conflicts or errors. ---- +### Quality Requirements -Should you have any queries or concerns, feel free to reach out to me using walkxnl@gmail.com. Happy contributing! ๐Ÿ™Œ +- **No Upscaled Images**: Icons should maintain their original quality without artificial enlargement. +- **No Embedded Raster Images in SVGs**: Ensure that SVG files are true vector graphics without embedded raster images. + +## Git Commit Messages + +- **Use Gitmoji**: Incorporate [Gitmoji](https://gitmoji.dev/) in your commit messages to keep the commit history clear and expressive. For example: + - `:bento: Adds xxx` when adding new icons. + +## Contribution Process + +1. **Fork the Repository**: Create a fork of this repository on your GitHub account. +2. **Clone the Repository**: Clone your forked repository to your local machine. +3. **Add Your Icons**: Place your SVG icon(s) into the appropriate directory, following the specifications above. +4. **Commit Your Changes**: Commit your additions with clear and descriptive commit messages using Gitmoji. +5. **Push to Your Fork**: Push your committed changes to your forked repository on GitHub. +6. **Create a Pull Request**: Submit a pull request to the main repository for review. + +## Code of Conduct + +By contributing, you agree to abide by our [Code of Conduct](CODE_OF_CONDUCT.md). Please review it to understand the expectations for all participants. + +## Contact + +If you have any questions or need assistance, feel free to reach out at [bjorn@lammers.media](mailto:bjorn@lammers.media). I'm happy to help. \ No newline at end of file diff --git a/ICONS.md b/ICONS.md index 351bbf1a..25c922f8 100644 --- a/ICONS.md +++ b/ICONS.md @@ -1,21 +1,13 @@ -

-

๐Ÿš€ Dashboard Icons

-

- - JSdelivr weekly downloads badge - -

-

- The best source for dashboard icons. -
- โฌ…๏ธ Back to repo -
-
-

-

+![jsDelivr hits (GitHub)](https://img.shields.io/jsdelivr/gh/hy/walkxcode/dashboard-icons?style=flat-square&color=%23A020F0) + +## Dashboard Icons + +The best source for dashboard icons.
+[**โ† Back to repository**](https://github.com/walkxcode/dashboard-icons/) +
-13ft 2fauth-light 2fauth 3cx 5etools act actual adblock adguard-home adm adminer adsbexchange adventurelog airsonic airtel airvpn alarmpi albertheijn alertmanager algovpn aliexpress alist alloy alltube alma alpine amazon-light amazon amcrest-cloud amcrest amd-light amd ami-alt-light ami-alt ami amp ampache amvd android-auto android-light android-robot android anonaddy ansible anything-llm-dark anything-llm-light apache-airflow apache-cassandra apache-cloudstack apache-druid apache-openoffice apache-solr apache-subversion apache-tomcat apache apc apiscp app-store appdaemon apple-alt apple apprise arch archisteamfarm archivebox archiveteamwarrior arduino arggocd argocd ariang arm arris-light arris artifacthub artifactory aruba asana asciinema asrockrackipmi assetgrid asterisk astral-light astral asus-light asus-rog asus-router asus asustor-data-master asustor at-t atlassian-bamboo atlassian-confluence atlassian-jira atlassian-opsgenie atlassian-trello atlassian audacity audiobookshelf auracast authelia authentik-light authentik autobrr avg avigilon avmfritzbox aws-ecs aws awwesome awx axis azuracast azure-container-instances azure-container-service azure-devops azure-dns azure babybuddy backblaze bacula badge baikal bar-assistant barcodebuddy baserow basilisk bastillion bazarr-light bazarr beef-light beef beets benotes betanin bible-gateway bibliogram biedronka bing birdnet bitcoin bithumen bitwarden blocky blogger blue-iris bluetooth bluewallet bobcat-miner booksonic bookstack bootstrap borg borgbackup boundary box brave-dev brave brewpi brillcam brocade brother browserless-light browserless browsh btcpay-server buddy budget-zero budibase-light budibase buffalo bunkerweb-light bunkerweb buxfer c cabot cacti caddy cadvisor calckey caldera calibre-web calibre camera-ui canonical cardigann-light cardigann carrefour casaos castopod cc-light cc centos ceph cert-manager cert-warden chainguard changedetection-io channels chatgpt chatpad-ai checkmk cherry chevereto chiefonboarding chowdown chrome-beta chrome-canary chrome-dev chrome-devtools chrome-remote-desktop chrome chromecast-light chromecast chromium chronograf cilium cinny-light cinny cisco clash clashX closed-captioning-light closed-captioning cloud66 cloud9 cloudbeaver cloudcmd cloudflare-pages cloudflare-zero-trust cloudflare cloudpanel cockpit-cms-light cockpit-cms cockpit code-server code codeberg coder-light coder codestats-light codestats codex codimd-light codimd collabora-online commafeed concourse consul contabo coolify coredns coreos cosign costco couchpotato counter-strike-2 counter-strike-global-offensive cozy-cloud cozy cpanel cpp crafty-controller crater-invoice crazydomains cribl-light cribl cross-seed-square cross-seed crowdsec cryptomator cryptpad csharp css cups-light cups cura cyberchef d-link-wifi d-link dahua dart dashboard-icons dashdot dashy datadog davis dc-os dd-wrt-light dd-wrt ddns-updater debian deemix dell deluge deno-light deno denon-light denon deployarr develancacheui devtooly-light devtooly diagrams-net dietpi digital-ocean dillinger dim-light dim directadmin directus discord discourse diskover disney-plus-light disney-plus diun diyhue dlna docker-amd docker-compose docker-gc docker-mailserver docker-moby docker dockge-light dockge dockstarter docsify docspell docusaurus docuseal dogpile dokuwiki dolibarr dolphin domainmod domoticz dopplertask double-take dovecot dozzle draw-io draw draytek drone droppy duckdns duckduckgo duo duplicacy duplicati easy-gate-light easy-gate ebay eblocker eclipse-mosquitto edge-dev edge edgeos-light edgeos elastic-beats elastic-kibana elastic-logstash elastic elasticsearch electron element emacs emby embystat emq-light emq emqx emulatorjs enbizcard epson-iprint ersatztv erste-george erste esphome-alt esphome espressif etcd etesync ethereum etherpad evebox eweka excalidraw-light excalidraw f-droid f5-networks facebook-messenger facebook falcon-christmas falcon-player fast-com-light fast-com fastmail fedora-alt fedora feedly feishin fenrus-light fenrus ferdi ferdium fermentrack ferretdb-white ferretdb filebot filebrowser filecloud-light filecloud fileflows filegator filepizza filerun files filezilla finamp-dark finamp-light finamp findroid-dark findroid-light findroid fios-light fios firebase firefly firefox-beta firefox-developer-edition firefox-lite firefox-nightly firefox-reality firefox-send firefox fireshare firewalla flame flaresolverr flarum flat-notes flathub flatpak flexget flightaware flightradar24 flogo flood fluffychat fluidd flux-cd fly-io focalboard foldingathome fontawesome forgejo fortinet foscam fossil foundry-vtt franz freebox-delta freebox-pop freebox-revolution freedombox freeipa freenas-light freenas freenom freepbx freescout freshping freshrss friendica frigate-light frigate fronius fulcio funkwhale fusionauth-light fusionauth fusionpbx gamevault gameyfin-light gameyfin gaps gaseous gatsby gatus gboard geckoview gentoo gerbera get-iplayer ghost-light ghost ghostfolio gigaset git gitbook gitea gitee github-light github gitlab gitsign gladys-assistant glances-light glances glpi gluetun gmail go go2rtc-alt go2rtc goaccess godaddy-alt godaddy gogs gollum gonic goodreads google-admin google-admob google-alerts google-analytics google-assistant google-calendar google-chat google-classroom google-cloud-platform google-cloud-print google-compute-engine google-contacts google-docs google-domains google-drive google-earth google-fi google-fit google-fonts google-forms google-gemini google-home google-keep google-lens google-maps google-meet google-messages google-news google-one google-pay google-photos google-play-books google-play-games google-play google-podcasts google-scholar google-search-console google-sheets google-shopping google-sites google-slides google-street-view google-translate google-tv google-voice google-wallet google-wifi google gotify gpt4free grafana gramps grandstream grav-light grav graylog greenbone grist grocy grype guacamole-light guacamole hammond handbrake haproxy harbor hard-forum harvester hastypaste hasura hatsh-light hatsh hdhomerun headphones healthchecks-v2 healthchecks hedgedoc heimdall-light heimdall helium-token helm helper-scripts hetzner hexo hifiberry hikvision hilook hoarder-light hoarder homarr home-assistant-alt home-assistant-light home-assistant homebox homebridge homepage homer homeseer homey honeygain hoobs hoppscotch hortusfox hostinger hotio hp html huawei hubitat hugging-face huginn hugo humhub hydra hyperion i2p-light i2p i2pd icecast icinga idrac ihatemoney ilo immich influxdb infoblox insanelymac instagram inventree invidious invisioncommunity invoiceninja-light invoiceninja invoke-ai iobroker ionos-light ionos ipboard ipcamtalk ipfs irc iredmail ispconfig ispy it-tools-light it-tools jackett-light jackett jaeger jamstack java javascript jdownloader jdownloader2 jeedom jekyll jellyfin-vue jellyfin jellyseerr jellystat-light jellystat jelu jenkins jetbrains-fleet jetbrains-youtrack jio jira jitsi-meet jitsi joal joomla joplin julia jupyter kagi kaizoku kamatera kapacitor kapowarr kasm-workspaces kasm kasten-k10 kaufland kavita kbin-light kbin keenetic-new keenetic keila kerberos kestra keycloak keyoxide-alt keyoxide kibana kick kimai kinto kitana kitchenowl kiwix-light kiwix klipper ko-fi kodi koel koillection komga kopia kotlin kpn krusader kubernetes-dashboard kubernetes kutt lancache lanraragi lark lazylibrarian leanote leantime lemmy-light lemmy lemonldap-ng lets-encrypt libreddit libremdb librenms-light librenms libreoffice librephotos-light librephotos librespeed librex librey lidarr lidl lightning-terminal lighttpd linkace linkding linkedin linkstack linksys linkwarden-light linkwarden linode linux-mint linuxserver-io listmonk littlelink-custom lnbits lobe-chat locals-light locals logitech-gaming logitech-legacy-light logitech-legacy logitech-light logitech logstash loki longhorn lsio lua lubelogger lychee lynx mailcow mailcowsogo mailfence mailhog mailinabox mailu mainsail maintainerr mak makemkv maloja mango manjaro-linux mantisbt manyfold maptiler marginalia mariadb mastodon matomo matrix-light matrix-synapse-light matrix-synapse matrix mattermost mautic-light mautic mayan-edms mayan-light mcmyadmin mealie mediathekview mediawiki medusa mega-nz memos mempool meraki mercusys meshcentral meshtastic meta metabase metube microbin microsoft-azure microsoft-copilot microsoft-exchange microsoft-office microsoft-sharepoint microsoft-sql-server microsoft-teams microsoft-todo microsoft microsoft365-admin-center midjourney-light midjourney mikrotik minecraft mineos miniflux-light miniflux minimserver minio-light minio misp mkdocs mkvtoolnix mobaxterm mobotix modrinth mojeek molecule monero mongodb monica monit moodle motioneye mpm mqtt mstream mullvad-browser mullvad multi-scrobbler mumble musicbrainz mylar myspeed mysql n8n nagios nautical-backup navidrome ncore neko-light neko neo4j neocities neonlink netalertx netapp-light netapp netatmo netbird netboot netbox netcam-studio netdata netflix netgear-orbi netgear netlify netmaker netsurf network-ups-tools network-weathermap newegg newsblur nextcloud-blue nextcloud-calendar nextcloud-contacts nextcloud-cookbook nextcloud-cospend nextcloud-deck nextcloud-files nextcloud-ncdownloader nextcloud-news nextcloud-notes nextcloud-photos nextcloud-talk nextcloud-tasks nextcloud-timemanager nextcloud-white nextcloud nextdns nextjs nextpvr nginx-proxy-manager nginx nicotine-plus nightscout-light nightscout nitter nocobase-light nocobase nocodb node-red nodejs-alt nodejs nomad nomie nordvpn notesnook-light notesnook notifiarr notion-light notion nowshowing ntfy-light ntfy ntop ntopng nut nxfilter nxlog nzbget nzbhydra nzbhydra2-light nzbhydra2 obico obitalk observium observo-ai obsidian octoeverywhere octoprint oculus-light oculus odoo office-365 olivetin ollama omada ombi omnidb onedev-light onedev onlyoffice open-resume open-webui-light open-webui openai-light openai openeats opengarage opengist-light opengist openhab openmaptiles openmediavault openoffice openproject opensearch openspeedtest opensprinkler openstack openstreetmap opensuse openvas openvpn openwrt opera-beta opera-developer opera-mini-beta opera-mini opera-neon opera-touch opera opnsense oracle-cloud oracle orange orcaslicer organizr origin oscarr-light oscarr osticket outline overclockers overleaf overseerr ovh ovirt owasp-zap owncloud ownphotos-light ownphotos owntone owntracks p1ib pagerduty pairdrop palemoon palo-alto paperless-ng paperless-ngx paperless papermerge part-db-light part-db partkeepr passbolt passwordpusher-light passwordpusher passwork pastatool-light pastatool pastebin pastey patreon-white patreon paypal peanut peertube penpot-light penpot perlite petio pfsense pgadmin phantombot phoneinfoga-light phoneinfoga phoscon-light phoscon photonix-light photonix photoprism photostructure photoview php phpipam phpldapadmin phpmyadmin pi-alert pi-hole-unbound pi-hole pia piaware picsur pigallery2-light pigallery2 pikvm-light pikvm pinchflat pingdom pingvin-share pingvin pinry pinterest pioneer-light pioneer pirate-proxy pivpn piwigo pixelfed planka plant-it plausible pleroma plesk-light plesk plex-alt-light plex-alt plex-meta-manager-light plex-meta-manager plex plexdrive plexrequests plexripper plume pocketbase podgrab podify podnapisi policycontroller poly polywork porkbun portainer-alt portainer portus poste postgres powerbi powerdns powerpanel premium-mobile prime-video-light prime-video printer pritunl privacyidea private-internet-access privatebin projectsend prometheus proton-calendar proton-drive proton-mail proton-pass proton-vpn prowlarr proxmox-light proxmox prtg prusa-research-light prusa-research psitransfer pterodactyl pufferpanel purelymail pushfish pushover putty pve-helper-scripts pwndrop-light pwndrop pwpush-light pwpush pydio pyload python qbittorrent qdirstat qinglong qnap-alt qnap quant-ux questdb quetre qutebrowser r rabbitmq radarr-light radarr radicale rainloop-light rainloop rallly rancher raneto raritan-light raritan raspberrymatic raspberrypi rathole rclone rdt-client reactive-resume readarr readeck readthedocs-light readthedocs real-debrid realhosting recalbox recipesage recipya reddit redis rekor remmina remotely requestly requestrr resiliosync restic rhasspy-light rhasspy rhodecode rimgo-light rimgo riot rocketchat rocky-linux romm rompya rook roundcube router rpi-monitor rport rspamd rss-bridge rsshub rstudio rstudioserver ruby rumble rundeck runeaudio runonflux rust rustdesk rutorrent ryot-light ryot sabnzbd-alt sabnzbd safari-ios safari sagemcom salad samsung-internet sandstorm scanservjs schneider screenconnect scrutiny-light scrutiny scrypted seafile searx-light searx searxng selfhosted-light selfhosted semaphore send sendinblue sensu sentry seq serpbear servarr-light servarr serviio session sftpgo shaarli shell-light shell-tips-light shell-tips shell shellhub shellngn shelly shinobi shiori shlink shoko sickbeard sickchill sickgear signal-transparent signal sigstore silverbullet simplelogin sinusbot siyuan skylink-fibernet skype slaanesh slack slice slidev slink-light slink slskd smartfox smokeping snapcast-alt-light snapcast-alt snapcast snapchat snapdrop snappymail-light snappymail snibox snipe-it snippetbox sogo solid-invoice sonarqube sonarr sonatype-repository-light sonatype-repository sophos soulseek sourcegraph spamassassin sparkleshare specter-desktop speedtest-tracker-old speedtest-tracker sphinx-doc sphinx-relay sphinx spiderfoot splunk spoolman spotify spotnet sqlitebrowser squeezebox-server squidex sshwifty stalwart startpage stash statping-ng statping stb-proxy steam stirling-pdf storj storm strapi streama stremio stump-alt stump substreamer sunshine supermicro swarmpit swift swizzin syft symmetricom-light symmetricom sympa syncany synclounge-light synclounge syncthing synology-audio-station synology-calendar synology-chat synology-cloud-sync synology-contacts synology-document-viewer synology-download-station synology-drive-server synology-drive synology-dsm synology-file-station synology-mail-plus synology-mail-station synology-note-station synology-office synology-pdfviewer synology-photo-station synology-photos synology-surveillance-station synology-text-editor synology-video-station synology-webstation synology sysreptor tabula tacticalrmm taiga tailscale-light tailscale talos tandoor tandoorrecipes tanoshi tar1090 taskcafe tasmoadmin tasmota-light tasmota tautulli tdarr teamcity teamspeak technitium teedy telegraf telegram telekom teleport tenda terminal terraform teslamate thanos the-pirate-bay the-proxy-bay theia-light theia thelounge themepark theodinproject thingsboard thunderbird thunderhub-light thunderhub tiktok-light tiktok timemachines-light timemachines timetagger-light timetagger tinypilot tinytinyrss tipi todoist tolgee tooljet tor torrserver tp-link traccar traefik-proxy traefik traggo trakt transmission trash-guides trilium trivy troddit trudesk truenas-core truenas-enterprise truenas-scale truenas tube-archivist-light tube-archivist tubesync turbopack-light turbopack tux tvheadend tvp-vod twingate-light twingate twitch twitter typescript typo3 ubiquiti-networks ubiquiti ubooquity ubuntu-alt ubuntu uc-browser udemy ultimate-guitar umami-analytics-light umami-analytics umami-light umami umbrel unbound unifi-controller unifi-protect unifi unimus universal-media-server unmanic unraid-alt unraid untangle updog ups upsnap uptime-kuma urbackup-server urbackup valetudo vault-light vault vaultwarden-light vaultwarden veeam vercel-light vercel verizon vi viewtube vikunja virgin-media virtualmin virtualradarserver viseron vivaldi vmware-esxi vmware-horizon vmware-vcenter vmware-workstation vmware voip-info voip-ms volumio-light volumio voron vscode vultr vuplus wakapi wakatime-light wakatime wallabag wallos wanikani ward warpgate watcharr watcher watchtower watchyourlan waze wazuh-opaque wazuh wbo web-check-light web-check web-whisper webdav webhook webhookd webkit webmin webtools webtop webtorrent webtrees wekan wetty wg-gen-web-light wg-gen-web wger whats-up-docker-light whats-up-docker whatsapp whisparr whodb whoogle whooglesearch wifiman wiki-text wikijs-full wikijs windmill windows-10 windows-11 windows-7 windows-95 windows-98 windows-vista windows-xp wireguard wireshark wizarr wled wolfi-light wolfi woodpecker-ci-light woodpecker-ci wordpress-light wordpress workadventure wotdle-light wotdle wownero writefreely wud-light wud x-light x xbackbone xbrowsersync xcp-ng xen-orchestra xigmanas xmr xmrig xteve xwiki yaade yacht-light yacht yahoo-mail yahoo yandex yarn-social ycombinator ymarks ynab your-spotify yourls youtube-kids youtube-music youtube youtubedl yts yunohost-light yunohost zabbix zabka zammad zendesk zerotier zigbee2mqtt zipline-light zipline zitadel-light zitadel znc zohomail zoneminder zoom-alt zoom zoraxy zulip zwavejs2mqtt zyxel-communications zyxel-networks - -
+13ft 2fauth-light 2fauth act activepieces actual-budget adguard-home adminer adventure-log affine-light affine airsonic airtable airtel airvpn akkoma-light akkoma albert-heijn alertmanager aliexpress alist alloy alma-linux alpine-linux amazon-light amazon-prime amazon-web-services-light amazon-web-services amazon amd-light amd android-auto-dark android-auto android-robot android anonaddy ansible-light ansible apache-airflow apache-answer apache-cassandra apache-druid apache-openoffice apache-solr apache-subversion apache-tomcat-light apache-tomcat apache apc apiscp app-store appflowy apple-alt apple-light apple-music apple-tv-plus-light apple-tv-plus apple appwrite ara-records-ansible arch-linux arduino argo-cd arm artifacthub aruba asana asciinema astral astuto-light astuto asus-rog asus-router asus asustor at-t atlassian-bamboo atlassian-bitbucket atlassian-jira atlassian-opsgenie atlassian-trello atlassian atuin-light atuin audacity audiobookshelf auracast authelia authentik authman autobrr automad-light automad avigilon avm-fritzbox-light avm-fritzbox aws-ecs aws-light aws awwesome azuracast azure-container-instances azure-container-service azure-devops azure-dns azure backblaze backrest-light backrest bar-assistant baserow bazarr-dark bazarr beaver-habit-tracker-light beaver-habit-tracker beef-light beef beszel-light beszel biblioreads-light biblioreads bigcapital bing bitbucket bitcoin bitwarden blocky blogger bluesky bluetooth booklogr-light booklogr bookstack bootstrap borg borgmatic-light borgmatic boundary box brave broadcastchannel-light broadcastchannel brocade brother browserless-light browserless browsh budgetbee-light budgetbee budibase bunkerweb c cacti caddy cal-com-light cal-com calibre-web calibre canonical caprover carrefour casaos castopod cc-light cc centos ceph cert-manager cert-warden-light cert-warden chainguard changedetection channels-dvr chatgpt chatpad-ai checkmk chevereto chirpy chrome-canary chrome-dev chrome-devtools chrome-remote-desktop chrome chromium cilium-light cilium cinny-light cinny cisco clickhouse cloud66 cloud9-light cloud9 cloudbeaver cloudflare-pages cloudflare-zero-trust cloudflare cloudpanel cockpit-cms-light cockpit-cms cockpit-light cockpit code codeberg coder-light coder codestats-light codestats codex-light codex collabora-online commafeed-light commafeed commento-light commento compreface concourse confluence consul contabo converse-light converse coolify coredns coreos cosign costco couchdb counter-analytics cozy cpanel cpp crafty-controller crowdsec cryptomator cryptpad csharp css-light css ctfreak cups-light cups cura cyberchef czkawka d-link dalibo dart datadog davical dawarich dc-os ddclient ddns-updater debian-linux defguard dell deluge deno-light deno denon-light denon deployarr diagrams-net digital-ocean dillinger-light dillinger directadmin directus discord discourse-light discourse disney-plus dlna docassemble-light docassemble docker-engine docker-mailserver-light docker-mailserver docker-moby docker-volume-backup docker dockge docking-station docsify docspell documenso docusaurus docuseal dokemon dokuwiki double-take-dark double-take dovecot dozzle draw-io draytek dropbox dropout-light dropout droppy-dark droppy dub-light dub duckdns-light duckdns duckduckgo duo duplicati easy-gate-light easy-gate ebay eblocker edge-dev edge elastic-beats elastic-kibana elastic-logstash elastic elasticsearch electron electronic-arts element eleventy-light eleventy elysian emacs emby emq-light emq emqx emulatorjs enbizcard enclosed-light enclosed endless-light endless endurain epic-games-light epic-games erste-george erste esphome-alt-light esphome-alt esphome-light esphome espressif etcd etesync ethereum etherpad evcc excalidraw f-droid facebook-messenger facebook fast-com-light fast-com fasten-health fastmail fedora-alt fedora feedbase-light feedbase feedbin-light feedbin feedly feedlynx-light feedlynx fenrus ferdium ferretdb fider filebot filebrowser filecloud fileflows filegator filerun files filestash filezilla finamp findroid fios-light fios firebase firefly-iii firefly firefox-beta firefox-developer-edition firefox-lite firefox-nightly firefox-reality firefox-send firefox firewalla fittrackee fladder flaresolverr flarum flathub flatnotes flatpak flightradar24-light flightradar24 flood fluffychat-dark fluffychat fluidd flux-cd fly-io focalboard foldingathome fontawesome forgejo forte-light forte fortinet fossil franz freedombox freeipa freenas freenom freepbx freshping-dark freshping freshrss friendica frigate-light frigate fritzbox-light fritzbox fronius fulcio funkwhale-light funkwhale fusionauth garage gatsby gatus gboard geckoview gentoo-linux gerbera get-iplayer ghostfolio gigaset gimp git gitbook gitea gitee github-light github gitlab gitsign gladys-assistant glance-light glance glances-light glances glpi gluetun gmail go goaccess-light goaccess godaddy-alt godaddy gollum goodreads google-admin google-admob google-alerts google-analytics google-assistant google-calendar google-chat google-chrome google-classroom google-cloud-platform google-cloud-print google-compute-engine google-contacts google-docs google-domains google-drive google-earth google-fi google-fit google-fonts google-forms google-gemini google-home google-keep google-lens google-maps google-meet google-messages google-news google-one google-pay google-photos google-play-books google-play-games google-play google-podcasts google-scholar google-search-console google-sheets google-shopping google-sites google-slides google-street-view google-tag-manager google-translate google-tv google-voice google-wallet google-wifi google gotify gotosocial gpt4free grafana gramps grandstream grav-light grav graylog greenbone-light greenbone grimoire grist grocy guacamole-light guacamole hacker-news hammond-light hammond handbrake haproxy haptic-light haptic harbor harvester hashicorp-boundary hashicorp-consul hashicorp-nomad hashicorp-packer hashicorp-terraform hashicorp-vagrant hashicorp-vault hashicorp-waypoint hastypaste hasura hatsh-light hatsh hbo-light hbo hdhomerun-light hdhomerun headscale healthchecks hedgedoc heimdall-light heimdall helium-token helm hetzner hexo heyform hifiberry hikvision hilook hivedav hoarder-light hoarder hollo-light hollo homarr home-assistant-alt home-assistant homebox-light homebox homebridge homer homey hoobs hoppscotch hostinger hotio hp html-light html huawei hubitat hubzilla hugging-face huginn hugo hulu humhub hydra hyperpipe-light hyperpipe i2p-light i2p i2pd icecast icinga-light icinga idrac ilo immich-frame-light immich-frame immich-kiosk-light immich-kiosk immich influxdb infoblox inoreader instagram inventree invidious invisioncommunity invoice-ninja-light invoice-ninja invoke-ai iobroker ionos ipboard ipfs-light ipfs ispconfig it-tools-light it-tools jackett-light jackett jaeger jamstack java javascript-light javascript jeedom jekyll jellyfin jellyseerr jellystat jelu jenkins jetbrains-youtrack jio jira jitsi-meet jitsi joomla joplin julia jupyter jwt-io-light jwt-io kagi kamatera kanboard-light kanboard kanidm kapowarr kasm-workspaces kasm kasten-k10 kaufland kavita kbin keenetic-alt keenetic keepassxc keila kerberos kestra keycloak keyoxide-alt keyoxide kibana kick-light kick kimai kinto kitana kitchenowl kiwix-light kiwix klipper ko-fi kodi koel koillection-light koillection komga kontoj kopia kotlin kpn krakend krusader kubernetes-dashboard kubernetes kutt kyoo lancommander-light lancommander lark lastpass leanote leantime lemmy-light lemmy lets-encrypt libreddit-light libreddit librenms libreoffice-light libreoffice librespeed-light librespeed librewolf librum lidarr lidl lighttpd limesurvey linguacafe linkace linkding linkedin linkstack linode linux-mint linux linuxgsm linuxserver-io liremdb listmonk littlelink-custom lnbits locals-light locals lodestone logitech-gaming logitech-legacy logitech-light logitech logseq logstash logto loki longhorn lua lunasea lynx-light lynx mail-in-a-box mailchimp-light mailchimp mailcow mailfence mailgun mailjet mainsail maintainerr manjaro-linux manyfold maptiler mariadb mastodon matomo matrix-light matrix-synapse-light matrix-synapse matrix mattermost mautic max mayan-edms-light mayan-edms maybe mbin mealie medama mediathekview mediawiki mediux medusa-light medusa mega-nz-dark mega-nz meilisearch memories-light memories meraki mercusys mergeable-dark mergeable meshping-light meshping meshtastic meta metabase metube microsoft-365-admin-center microsoft-365 microsoft-access microsoft-azure microsoft-bing microsoft-copilot microsoft-edge microsoft-excel microsoft-exchange microsoft-office microsoft-onedrive microsoft-onenote microsoft-outlook microsoft-powerpoint microsoft-sharepoint microsoft-sql-server-light microsoft-sql-server microsoft-teams microsoft-to-do microsoft-windows microsoft-word microsoft mikrotik-light mikrotik minecraft miniflux-light miniflux minio-light minio misskey-light misskey mitra mixpost mkdocs-light mkdocs mobilizon mobotix-light mobotix modrinth mojeek monero mongodb monica-light monica moodle-light moodle morphos mosquitto motioneye-dark motioneye mqtt mstream mullvad-browser mullvad-vpn mullvad multi-scrobbler mumble-light mumble music-assistant-light music-assistant musicbrainz myheats-light myheats myspeed mysql n8n nagios nasa navidrome-light navidrome neko-light neko neo4j neocities neodb neonlink netalertx-light netalertx netapp-light netapp netatmo netbird netboot netbox netdata netflix netgear-light netgear netlify netsurf-light netsurf network-ups-tools newegg newsblur nextcloud-blue nextcloud-calendar nextcloud-contacts nextcloud-cookbook nextcloud-cospend nextcloud-deck nextcloud-files nextcloud-ncdownloader nextcloud-news nextcloud-notes nextcloud-photos nextcloud-social nextcloud-tables nextcloud-tasks nextcloud-timemanager nextcloud-white nextcloud nextcloudpi nextdns nexterm nextjs-light nextjs nginx-proxy-manager nginx nicotine-plus nightscout-light nightscout nintendo-switch nitter nixos nocodb node-red nodebb nodejs-alt nodejs nomad nomie nordvpn note-mark notesnook-light notesnook notion-light notion ntfy nut nvidia nzbhydra2-light nzbhydra2 obico obsidian obtainium octoprint oculus-light oculus odoo office-365 olivetin-light olivetin ollama omada ombi omnidb omnivore onedev-light onedev oneuptime-light oneuptime onlyoffice open-resume open-source-initiative openai-light openai openchangelog-light openchangelog openeats-light openeats openemr-light openemr opengist-light opengist openhab openldap openmediavault openoffice openpanel-light openpanel openproject openreads opensearch openspeedtest openstack openstreetmap opensuse opentalk opentofu openvas openvpn openwrt opera-touch opera opnform opnsense oracle-cloud oracle orange origin oscarr-light oscarr osticket outline-light outline overleaf overseerr ovh ovirt-light ovirt owncast owncloud owntone owntracks oxker-light oxker p1ib pagerduty palemoon palo-alto paperless-ng paperless-ngx paperless papermark-light papermark papermerge-light papermerge parseable part-db-light part-db partkeepr passbolt passwork pastebin-dark pastebin patreon-light patreon payload-light payload paypal pdfding-light pdfding peacock-light peacock peanut-light peanut peertube pelican-panel penpot-light penpot peppermint pepperminty-wiki perlite pfsense-light pfsense pg-back-web pgadmin phanpy phoneinfoga-light phoneinfoga phorge-light phorge phoscon-light phoscon photonix-light photonix photopea photoprism-light photoprism photostructure-dark photostructure photoview php-light php phpmyadmin pi-hole pia picsur-light picsur pigallery2 pikapods pingdom-light pingdom pingvin-dark pingvin-share-dark pingvin-share pingvin pinkary pinterest pioneer-light pioneer piped pirate-proxy piwigo pixelfed plane planka-dark planka plausible playstation pleroma plesk plex-alt-light plex-alt plex-light plex-rewind plex plexrequests-light plexrequests plume pocket-casts-dark pocket-casts pocket-id-light pocket-id pocketbase-dark pocketbase podfetch-light podfetch podify podman policycontroller poly polywork portainer portus postal poste postgres postgresql posthog-light posthog postiz-dark postiz powerbi powerdns prime-video-light prime-video printer pritunl privacyidea private-internet-access privatebin projectsend prometheus proton-calendar proton-drive proton-mail proton-pass proton-vpn prowlarr proxmox-light proxmox prtg prusa-research pterodactyl pufferpanel purelymail pushfish pushover putty pydio pyload python qbittorrent qdirstat qinglong qnap questdb quetre quickwit qutebrowser r rabbitmq radarr radicale rainloop rallly rancher raspberry-pi-light raspberry-pi rclone rdt-client reactive-resume-light reactive-resume readarr readeck readthedocs-light readthedocs real-debrid recalbox receipt-wrangler recipesage reddit redict redis redlib-light redlib rekor remmina reolink requestly requestrr resiliosync-light resiliosync restreamer revolt-light revolt rhasspy-dark rhasspy rhodecode richy rimgo-light rimgo riot riverside-fm-light riverside-fm rocket-chat rocky-linux romm rook roundcube router rport rss-bridge rss-translator rstudio rstudioserver ruby rumble rundeck runonflux runson-light runson rust rustdesk rutorrent ryot-light ryot sabnzbd-light sabnzbd safari-ios safari saltcorn samsung-internet sandstorm screenconnect scrutiny-light scrutiny seafile searx searxng secureai-tools-light secureai-tools seelf self-hosted-gateway selfh-st-light selfh-st semaphore-dark semaphore send sendgrid sendinblue sensu sentry-light sentry servarr-light servarr serviio-light serviio session shaarli shell-light shell-tips-light shell-tips shell shellhub shellngn shelly shiori shlink shoko-server shoko shopify sickbeard signal sigstore simplelogin simplex-chat sinusbot siyuan skype slack slash-light slash slice slidev slskd smartfox snapcast snapchat-dark snapchat snapdrop snappymail-light snappymail snikket socialhome sogo solidtime-light solidtime sonarqube sonarr-dark sonarr sophos-dark sophos sourcegraph spamassassin sparkleshare specifically-clementines sphinx-doc sphinx-relay sphinx splunk spoolman spotify sqlitebrowser squidex squirrel-servers-manager sshwifty stalwart-mail-server stalwart standard-notes startpage stash stb-proxy steam step-ca stirling-pdf storj storm stormkit strapi stremio stump-alt stump subatic sunshine supabase supermicro surveymonkey swarmpit swift symmetricom-light symmetricom synapse-light synapse syncthing-dark syncthing synology-dsm synology-light synology sysreptor tabula tacticalrmm taiga tailscale-light tailscale talos tandoor-recipes tangerine-ui taskcafe tasmota-light tasmota tautulli teamcity-light teamcity teamspeak telegraf telegram telekom teleport tenda terminal terraform teslamate-light teslamate thanos the-pirate-bay the-proxy-bay theia-light theia thelounge theodinproject thingsboard threads-light threads thunderbird tianji-light tianji tiddlywiki-light tiddlywiki tiktok-light tiktok timetagger-light timetagger tmdb todoist-dark todoist tolgee tooljet-dark tooljet touitomamout tp-link tpdb traccar-dark traccar traefik-proxy traefik traggo trakt transmission trilium triliumnext truenas-core truenas-scale truenas tubesync-light tubesync tumblr turbopack-light turbopack tux tvdb tvheadend twingate-light twingate twitch twitter typemill-light typemill typescript typo3 ubiquiti-networks ubiquiti-unifi ubiquiti ubuntu-linux-alt ubuntu-linux uc-browser udemy-light udemy ultimate-guitar-light ultimate-guitar umami-light umami umbrel unbound undb unifi-dark unifi-voucher-site unifi unimus unraid untangle ups upsnap uptime-kuma valetudo valkey vault-light vault vaultwarden-light vaultwarden vector veeam vercel-light vercel verizon vi victoriametrics-light victoriametrics vidzy viewtube vikunja virgin-media virtualmin viseron-light viseron visual-studio-code vivaldi vmware-esxi vmware-workstation vmware voilib voip-ms voltaserve-light voltaserve volumio-light volumio voron vscode vuetorrent vultr wakapi wakatime-light wakatime wallabag-light wallabag wanderer-light wanderer warpgate watcharr-light watcharr watchtower waze wazuh web-check-dark web-check webhook webhookd webkit webmin webtorrent webtrees wekan wger whats-up-docker-light whats-up-docker whatsapp whisparr wikidocs wikijs-alt wikijs wikipedia-light wikipedia willow windmill windows-10 windows-95-light windows-95 windows-retro-light windows-retro wireguard wizarr wolfi-light wolfi woocommerce woodpecker-ci wordpress worklenz wotdle-light wotdle wownero writefreely-light writefreely x-light x xbackbone xbox-game-pass xbox xbrowsersync xmr xmrig xpipe xwiki yacht yahoo yamtrack-light yamtrack yandex yarr-light yarr ycombinator-dark ycombinator ynab your-spotify yourls youtube-dl youtube-kids youtube-music youtube yts yuno-host-light yunohost z-wave-js-ui zabbix zabka zammad zendesk zerotier-light zerotier zigbee2mqtt-light zigbee2mqtt zipcaptions zipline-light zipline zitadel-light zitadel zohomail zoom-alt zoom zoraxy zulip zyxel-communications-light zyxel-communications zyxel-networks-light zyxel-networks + + \ No newline at end of file diff --git a/LICENSE b/LICENSE index 05a87dbe..1625c179 100644 --- a/LICENSE +++ b/LICENSE @@ -1,16 +1,121 @@ -**Icons and Assets** +Creative Commons Legal Code -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. +CC0 1.0 Universal ---- + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. -**Code and Documentation** +Statement of Purpose -Copyright (c) 2024 Bjorn Lammers (walkxcode) +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). -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: +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. \ No newline at end of file diff --git a/README.md b/README.md index 63358ff3..20963892 100644 --- a/README.md +++ b/README.md @@ -1,73 +1,110 @@ -
-

๐Ÿš€ Dashboard Icons

-

- - JSdelivr weekly downloads badge - -

-

- The best source for dashboard icons. -
- โžก๏ธ Explore the icons -
-
-

-
+![jsDelivr hits (GitHub)](https://img.shields.io/jsdelivr/gh/hy/walkxcode/dashboard-icons?style=flat-square&color=%23A020F0) -# ๐Ÿ“– Table of Contents +## Dashboard Icons -- [๐Ÿ“– Table of Contents](#-table-of-contents) - - [๐Ÿš€ Getting Started](#-getting-started) - - [๐Ÿ“Š Dashboards](#-dashboards) - - [โœจ Usage](#-usage) - - [๐ŸŽจ Icons](#-icons) - - [๐ŸŽ‰ Contribution Guidelines](#-contribution-guidelines) - - [๐Ÿ“œ Legal](#-legal) +The best source for dashboard icons.
+[**View icons โ†’**](#icons) -## ๐Ÿš€ Getting Started +## Table of Contents +- [Dashboard Icons](#dashboard-icons) +- [Table of Contents](#table-of-contents) +- [Icon Requests](#icon-requests) +- [Supported Dashboards](#supported-dashboards) +- [Usage and Details](#usage-and-details) + - [Direct Links](#direct-links) + - [Base URL](#base-url) + - [Name](#name) + - [Formats](#formats) + - [Dark/Light Versions](#darklight-versions) + - [Downloading Icons](#downloading-icons) +- [Disclaimer](#disclaimer) -### ๐Ÿ“Š Dashboards +## Icon Requests -Several dashboards now offer seamless integration with Dashboard Icons. Here are some of the top choices: +If you're looking to add a new icon, please read the [Contribution Guidelines](CONTRIBUTING.md). Afterwards, submit a Pull Request or open an issue. + +## Supported Dashboards + +Several dashboards offer seamless integration with Dashboard Icons. Here are some of the most popular options: - [Homepage](https://github.com/gethomepage/homepage) - [Homarr](https://github.com/ajnart/homarr) - [Dashy](https://github.com/Lissy93/dashy) -### โœจ Usage +## Usage and Details -To download an icon from the [icons page](#-icons), simply `Right click > Save link as`. +### Direct Links -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.* +Icons can be used directly from either GitHub or jsDelivr (recommended). Links consist of three components, each described below: -```sh -curl -O https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png -``` +- **Base URL** +- **Name** +- **Format** + +A complete link will look like this: + + https:////. + +For example, the icon URL for the WEBP version of Nextcloud Calendar would be: + + https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/webp/nextcloud-calendar.webp + +#### Base URL + +We recommend using jsDelivr, a free and fast CDN: + +- `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons` + +Alternatively, you can use direct links to the repository: + +- `https://raw.githubusercontent.com/walkxcode/dashboard-icons/refs/heads/main` + +#### Name + +Icons are named using kebab case (lowercase words separated by hyphens). For example, "Nextcloud Calendar" becomes `nextcloud-calendar`. + +#### Formats + +Icons are available in the following formats: + +- SVG +- PNG +- WEBP + +All icons are generated from the SVG file as the base. + +*Read more about the specifics and standards of icons in the [Contribution Guidelines](CONTRIBUTING.md).* + +### Dark/Light Versions + +In some cases, an icon might have very light or dark colors, making it hard to see on certain backgrounds. In this situation, a `-light` or `-dark` version will be added to the end of the icon's name, with colors adjusted accordingly. + +For example, "2fauth" becomes `2fauth-light`. + +*Read more about the specifics and standards of icons in the [Contribution Guidelines](CONTRIBUTING.md).* + +### Downloading Icons + +To download icons from the [icons page](ICONS.md), simply Right-click the icon link and select "Save link as". + +**Warning**: Visiting the icons page will load every icon in the repository. This may result in: + +- High data usage. +- System slowdowns. +- Browser crashes on some devices. + +If you prefer not to load all icons at once, consider using the direct links or downloading icons individually. + +To download icons using the terminal, use `curl` or `wget`. Refer to [Direct Links](#direct-links) for details on the link structure. + + curl -O https:////. or -```sh -wget https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png -``` + wget https:////. -**๐Ÿ’ก Tip!** Access Dashboard Icons online faster via `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png`, replacing `example` with the icon name! +## Disclaimer -## ๐ŸŽจ Icons -**โš ๏ธ Warning!** Visiting this page will load every single icon in the repository. This may cause: -- ๐Ÿ“‰ Excessive data usage. -- ๐Ÿ’ป System slowdowns. - - ๐ŸŒ Browser crashes. +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. -*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 view all icons. - -## ๐ŸŽ‰ Contribution Guidelines -Please review the [Contribution Guidelines](CONTRIBUTING.md) before contributing to this project. - -## ๐Ÿ“œ Legal - -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 hey@lammers.media before using or distributing the contents of this repository. +Read the [LICENSE](LICENSE) for more information about the project itself. For questions or concerns, contact me at [bjorn@lammers.media](mailto:bjorn@lammers.media). \ No newline at end of file diff --git a/config/TEMPLATE.md b/config/TEMPLATE.md deleted file mode 100644 index d6e86bd0..00000000 --- a/config/TEMPLATE.md +++ /dev/null @@ -1,20 +0,0 @@ -

-

๐Ÿš€ Dashboard Icons

-

- - JSdelivr weekly downloads badge - -

-

- The best source for dashboard icons. -
- โฌ…๏ธ Back to repo -
-
-

-

-
- - - -
diff --git a/config/banner.png b/config/banner.png deleted file mode 100644 index 9ef04c18..00000000 Binary files a/config/banner.png and /dev/null differ diff --git a/config/ci.py b/config/ci.py deleted file mode 100644 index aa322340..00000000 --- a/config/ci.py +++ /dev/null @@ -1,32 +0,0 @@ -import pathlib -from pathlib import Path - -root = pathlib.Path(__file__).parent.resolve() -template_path = root / "TEMPLATE.md" -path = root / "../ICONS.md" - - -def generate_img_tag(file): - return f'{file.stem}' - - -imgs = sorted(Path("./png").glob("*.png")) -img_tags = [generate_img_tag(x) for x in imgs] -line_number = 0 - -# Read the template file -with open(template_path, "r", encoding="UTF-8") as f: - lines = f.readlines() -# Find the line that starts with "" -for line in lines: - if line.startswith(""): - line_number = lines.index(line) - break -# Insert the icons after the line -lines.insert(line_number + 1, " ".join(img_tags)) -# Write the new file -with open(path, "w", encoding="UTF-8") as f: - f.write("".join(lines)) - f.write("\n") -print("Done!") -print("Please commit the new ICONS.md file.") diff --git a/config/logo.png b/config/logo.png deleted file mode 100644 index ae511b08..00000000 Binary files a/config/logo.png and /dev/null differ diff --git a/png/13ft.png b/png/13ft.png index db768fc9..4a556914 100644 Binary files a/png/13ft.png and b/png/13ft.png differ diff --git a/png/2fauth-light.png b/png/2fauth-light.png index c34c4a2a..fbbbfe7b 100644 Binary files a/png/2fauth-light.png and b/png/2fauth-light.png differ diff --git a/png/2fauth.png b/png/2fauth.png index c7c09946..3a528c7c 100644 Binary files a/png/2fauth.png and b/png/2fauth.png differ diff --git a/png/3cx.png b/png/3cx.png deleted file mode 100644 index 132c7a84..00000000 Binary files a/png/3cx.png and /dev/null differ diff --git a/png/5etools.png b/png/5etools.png deleted file mode 100644 index 31891d53..00000000 Binary files a/png/5etools.png and /dev/null differ diff --git a/png/Thumbs.db b/png/Thumbs.db deleted file mode 100644 index 6496695a..00000000 Binary files a/png/Thumbs.db and /dev/null differ diff --git a/png/act.png b/png/act.png index 142238db..0a0fd914 100644 Binary files a/png/act.png and b/png/act.png differ diff --git a/png/activepieces.png b/png/activepieces.png new file mode 100644 index 00000000..162f8174 Binary files /dev/null and b/png/activepieces.png differ diff --git a/png/actual-budget.png b/png/actual-budget.png new file mode 100644 index 00000000..bb12cfa3 Binary files /dev/null and b/png/actual-budget.png differ diff --git a/png/actual.png b/png/actual.png deleted file mode 100644 index a3edc9de..00000000 Binary files a/png/actual.png and /dev/null differ diff --git a/png/adblock.png b/png/adblock.png deleted file mode 100644 index 869112e8..00000000 Binary files a/png/adblock.png and /dev/null differ diff --git a/png/adguard-home.png b/png/adguard-home.png index 94da44ca..73f37ce0 100644 Binary files a/png/adguard-home.png and b/png/adguard-home.png differ diff --git a/png/adm.png b/png/adm.png deleted file mode 100644 index 0d301ec3..00000000 Binary files a/png/adm.png and /dev/null differ diff --git a/png/adminer.png b/png/adminer.png index 65b3aab0..e023ddd1 100644 Binary files a/png/adminer.png and b/png/adminer.png differ diff --git a/png/adsbexchange.png b/png/adsbexchange.png deleted file mode 100644 index 2efa3ac5..00000000 Binary files a/png/adsbexchange.png and /dev/null differ diff --git a/png/adventure-log.png b/png/adventure-log.png new file mode 100644 index 00000000..8c6a569c Binary files /dev/null and b/png/adventure-log.png differ diff --git a/png/adventurelog.png b/png/adventurelog.png deleted file mode 100644 index 8c89f9fa..00000000 Binary files a/png/adventurelog.png and /dev/null differ diff --git a/png/affine-light.png b/png/affine-light.png new file mode 100644 index 00000000..48411d3c Binary files /dev/null and b/png/affine-light.png differ diff --git a/png/affine.png b/png/affine.png new file mode 100644 index 00000000..fe2916a0 Binary files /dev/null and b/png/affine.png differ diff --git a/png/airsonic.png b/png/airsonic.png index 694b7e53..48d7fd2c 100644 Binary files a/png/airsonic.png and b/png/airsonic.png differ diff --git a/png/airtable.png b/png/airtable.png new file mode 100644 index 00000000..27867a45 Binary files /dev/null and b/png/airtable.png differ diff --git a/png/airtel.png b/png/airtel.png index 651c9cc4..13d2a043 100644 Binary files a/png/airtel.png and b/png/airtel.png differ diff --git a/png/airvpn.png b/png/airvpn.png index a81518aa..e2a7234d 100644 Binary files a/png/airvpn.png and b/png/airvpn.png differ diff --git a/png/akkoma-light.png b/png/akkoma-light.png new file mode 100644 index 00000000..62166c8f Binary files /dev/null and b/png/akkoma-light.png differ diff --git a/png/akkoma.png b/png/akkoma.png new file mode 100644 index 00000000..b23b4821 Binary files /dev/null and b/png/akkoma.png differ diff --git a/png/alarmpi.png b/png/alarmpi.png deleted file mode 100644 index 53698476..00000000 Binary files a/png/alarmpi.png and /dev/null differ diff --git a/png/albert-heijn.png b/png/albert-heijn.png new file mode 100644 index 00000000..d31666a9 Binary files /dev/null and b/png/albert-heijn.png differ diff --git a/png/albertheijn.png b/png/albertheijn.png deleted file mode 100644 index 3bddc2ce..00000000 Binary files a/png/albertheijn.png and /dev/null differ diff --git a/png/alertmanager.png b/png/alertmanager.png index c83eebda..353bdd5f 100644 Binary files a/png/alertmanager.png and b/png/alertmanager.png differ diff --git a/png/algovpn.png b/png/algovpn.png deleted file mode 100644 index 1ecec279..00000000 Binary files a/png/algovpn.png and /dev/null differ diff --git a/png/aliexpress.png b/png/aliexpress.png index 6754e850..30853226 100644 Binary files a/png/aliexpress.png and b/png/aliexpress.png differ diff --git a/png/alist.png b/png/alist.png index ac9cb6cc..c4376893 100644 Binary files a/png/alist.png and b/png/alist.png differ diff --git a/png/alloy.png b/png/alloy.png index a9990c5b..1c12b674 100644 Binary files a/png/alloy.png and b/png/alloy.png differ diff --git a/png/alltube.png b/png/alltube.png deleted file mode 100644 index b1f75bed..00000000 Binary files a/png/alltube.png and /dev/null differ diff --git a/png/alma-linux.png b/png/alma-linux.png new file mode 100644 index 00000000..90e82ae0 Binary files /dev/null and b/png/alma-linux.png differ diff --git a/png/alma.png b/png/alma.png deleted file mode 100644 index 29a9c10a..00000000 Binary files a/png/alma.png and /dev/null differ diff --git a/png/alpine-linux.png b/png/alpine-linux.png new file mode 100644 index 00000000..85d9bbcf Binary files /dev/null and b/png/alpine-linux.png differ diff --git a/png/alpine.png b/png/alpine.png deleted file mode 100644 index 7ea4e345..00000000 Binary files a/png/alpine.png and /dev/null differ diff --git a/png/amazon-light.png b/png/amazon-light.png index 18ec7a43..be5d25c9 100644 Binary files a/png/amazon-light.png and b/png/amazon-light.png differ diff --git a/png/amazon-prime.png b/png/amazon-prime.png new file mode 100644 index 00000000..2f4ced7f Binary files /dev/null and b/png/amazon-prime.png differ diff --git a/png/amazon-web-services-light.png b/png/amazon-web-services-light.png new file mode 100644 index 00000000..fa30b386 Binary files /dev/null and b/png/amazon-web-services-light.png differ diff --git a/png/amazon-web-services.png b/png/amazon-web-services.png new file mode 100644 index 00000000..479669e8 Binary files /dev/null and b/png/amazon-web-services.png differ diff --git a/png/amazon.png b/png/amazon.png index 59f96916..80618ca6 100644 Binary files a/png/amazon.png and b/png/amazon.png differ diff --git a/png/amcrest-cloud.png b/png/amcrest-cloud.png deleted file mode 100644 index 03445368..00000000 Binary files a/png/amcrest-cloud.png and /dev/null differ diff --git a/png/amcrest.png b/png/amcrest.png deleted file mode 100644 index 937ba959..00000000 Binary files a/png/amcrest.png and /dev/null differ diff --git a/png/amd-light.png b/png/amd-light.png index 1c6640c6..592360ce 100644 Binary files a/png/amd-light.png and b/png/amd-light.png differ diff --git a/png/amd.png b/png/amd.png index d93aca30..4b1d10f3 100644 Binary files a/png/amd.png and b/png/amd.png differ diff --git a/png/ami-alt-light.png b/png/ami-alt-light.png deleted file mode 100644 index 89acab68..00000000 Binary files a/png/ami-alt-light.png and /dev/null differ diff --git a/png/ami-alt.png b/png/ami-alt.png deleted file mode 100644 index ed24084f..00000000 Binary files a/png/ami-alt.png and /dev/null differ diff --git a/png/ami.png b/png/ami.png deleted file mode 100644 index e82c3f90..00000000 Binary files a/png/ami.png and /dev/null differ diff --git a/png/amp.png b/png/amp.png deleted file mode 100644 index ff93038e..00000000 Binary files a/png/amp.png and /dev/null differ diff --git a/png/ampache.png b/png/ampache.png deleted file mode 100644 index c3b5c32a..00000000 Binary files a/png/ampache.png and /dev/null differ diff --git a/png/amvd.png b/png/amvd.png deleted file mode 100644 index 693fdaad..00000000 Binary files a/png/amvd.png and /dev/null differ diff --git a/png/android-auto-dark.png b/png/android-auto-dark.png new file mode 100644 index 00000000..7708a6c3 Binary files /dev/null and b/png/android-auto-dark.png differ diff --git a/png/android-auto.png b/png/android-auto.png index 66d59b16..72765ae2 100644 Binary files a/png/android-auto.png and b/png/android-auto.png differ diff --git a/png/android-light.png b/png/android-light.png deleted file mode 100644 index a9ddd082..00000000 Binary files a/png/android-light.png and /dev/null differ diff --git a/png/android-robot.png b/png/android-robot.png index ff8d9baa..9986cc9d 100644 Binary files a/png/android-robot.png and b/png/android-robot.png differ diff --git a/png/android.png b/png/android.png index f5b28d95..acc2ef69 100644 Binary files a/png/android.png and b/png/android.png differ diff --git a/png/anonaddy.png b/png/anonaddy.png index a234051c..23c92f5b 100644 Binary files a/png/anonaddy.png and b/png/anonaddy.png differ diff --git a/png/ansible-light.png b/png/ansible-light.png new file mode 100644 index 00000000..5614f5bb Binary files /dev/null and b/png/ansible-light.png differ diff --git a/png/ansible.png b/png/ansible.png index 2125d4b3..762ad86b 100644 Binary files a/png/ansible.png and b/png/ansible.png differ diff --git a/png/anything-llm-dark.png b/png/anything-llm-dark.png deleted file mode 100644 index 6a2102a5..00000000 Binary files a/png/anything-llm-dark.png and /dev/null differ diff --git a/png/anything-llm-light.png b/png/anything-llm-light.png deleted file mode 100644 index a62bc9af..00000000 Binary files a/png/anything-llm-light.png and /dev/null differ diff --git a/png/apache-airflow.png b/png/apache-airflow.png index 5dbebf02..7864fd3b 100644 Binary files a/png/apache-airflow.png and b/png/apache-airflow.png differ diff --git a/png/apache-answer.png b/png/apache-answer.png new file mode 100644 index 00000000..65d21580 Binary files /dev/null and b/png/apache-answer.png differ diff --git a/png/apache-cassandra.png b/png/apache-cassandra.png index b9e3e0e7..a0061fbe 100644 Binary files a/png/apache-cassandra.png and b/png/apache-cassandra.png differ diff --git a/png/apache-cloudstack.png b/png/apache-cloudstack.png deleted file mode 100644 index 13b3a89d..00000000 Binary files a/png/apache-cloudstack.png and /dev/null differ diff --git a/png/apache-druid.png b/png/apache-druid.png index d55bdd55..a9c24a9a 100644 Binary files a/png/apache-druid.png and b/png/apache-druid.png differ diff --git a/png/apache-openoffice.png b/png/apache-openoffice.png index f1b680e7..bae791ad 100644 Binary files a/png/apache-openoffice.png and b/png/apache-openoffice.png differ diff --git a/png/apache-solr.png b/png/apache-solr.png index f80bf6b7..0dd7f9e1 100644 Binary files a/png/apache-solr.png and b/png/apache-solr.png differ diff --git a/png/apache-subversion.png b/png/apache-subversion.png index 4ee2e4ea..2f761a01 100644 Binary files a/png/apache-subversion.png and b/png/apache-subversion.png differ diff --git a/png/apache-tomcat-light.png b/png/apache-tomcat-light.png new file mode 100644 index 00000000..841071c1 Binary files /dev/null and b/png/apache-tomcat-light.png differ diff --git a/png/apache-tomcat.png b/png/apache-tomcat.png index 371b2d69..f78638ea 100644 Binary files a/png/apache-tomcat.png and b/png/apache-tomcat.png differ diff --git a/png/apache.png b/png/apache.png index c92ec79c..0f395542 100644 Binary files a/png/apache.png and b/png/apache.png differ diff --git a/png/apc.png b/png/apc.png index b3b57ff7..b55575a9 100644 Binary files a/png/apc.png and b/png/apc.png differ diff --git a/png/apiscp.png b/png/apiscp.png index 1502fd8c..426c0712 100644 Binary files a/png/apiscp.png and b/png/apiscp.png differ diff --git a/png/app-store.png b/png/app-store.png index ee51d407..63b4b8d7 100644 Binary files a/png/app-store.png and b/png/app-store.png differ diff --git a/png/appdaemon.png b/png/appdaemon.png deleted file mode 100644 index b06b43ab..00000000 Binary files a/png/appdaemon.png and /dev/null differ diff --git a/png/appflowy.png b/png/appflowy.png new file mode 100644 index 00000000..c0db8cc8 Binary files /dev/null and b/png/appflowy.png differ diff --git a/png/apple-alt.png b/png/apple-alt.png index 925d62d1..fb703289 100644 Binary files a/png/apple-alt.png and b/png/apple-alt.png differ diff --git a/png/apple-light.png b/png/apple-light.png new file mode 100644 index 00000000..15c50631 Binary files /dev/null and b/png/apple-light.png differ diff --git a/png/apple-music.png b/png/apple-music.png new file mode 100644 index 00000000..949e7bf4 Binary files /dev/null and b/png/apple-music.png differ diff --git a/png/apple-tv-plus-light.png b/png/apple-tv-plus-light.png new file mode 100644 index 00000000..ce46aa2c Binary files /dev/null and b/png/apple-tv-plus-light.png differ diff --git a/png/apple-tv-plus.png b/png/apple-tv-plus.png new file mode 100644 index 00000000..41360821 Binary files /dev/null and b/png/apple-tv-plus.png differ diff --git a/png/apple.png b/png/apple.png index 357ae326..becdf840 100644 Binary files a/png/apple.png and b/png/apple.png differ diff --git a/png/apprise.png b/png/apprise.png deleted file mode 100644 index 9ce06e68..00000000 Binary files a/png/apprise.png and /dev/null differ diff --git a/png/appwrite.png b/png/appwrite.png new file mode 100644 index 00000000..b43b1306 Binary files /dev/null and b/png/appwrite.png differ diff --git a/png/ara-records-ansible.png b/png/ara-records-ansible.png new file mode 100644 index 00000000..2e4cfbdb Binary files /dev/null and b/png/ara-records-ansible.png differ diff --git a/png/arch-linux.png b/png/arch-linux.png new file mode 100644 index 00000000..909f1b75 Binary files /dev/null and b/png/arch-linux.png differ diff --git a/png/arch.png b/png/arch.png deleted file mode 100644 index 369d1c0a..00000000 Binary files a/png/arch.png and /dev/null differ diff --git a/png/archisteamfarm.png b/png/archisteamfarm.png deleted file mode 100644 index 9fff4b0c..00000000 Binary files a/png/archisteamfarm.png and /dev/null differ diff --git a/png/archivebox.png b/png/archivebox.png deleted file mode 100644 index 039a67b9..00000000 Binary files a/png/archivebox.png and /dev/null differ diff --git a/png/archiveteamwarrior.png b/png/archiveteamwarrior.png deleted file mode 100644 index 5676471f..00000000 Binary files a/png/archiveteamwarrior.png and /dev/null differ diff --git a/png/arduino.png b/png/arduino.png index d5197437..ffa46c6c 100644 Binary files a/png/arduino.png and b/png/arduino.png differ diff --git a/png/arggocd.png b/png/arggocd.png deleted file mode 100644 index 9ad30d3b..00000000 Binary files a/png/arggocd.png and /dev/null differ diff --git a/png/argo-cd.png b/png/argo-cd.png new file mode 100644 index 00000000..baab90f2 Binary files /dev/null and b/png/argo-cd.png differ diff --git a/png/argocd.png b/png/argocd.png deleted file mode 100644 index 46a00a89..00000000 Binary files a/png/argocd.png and /dev/null differ diff --git a/png/ariang.png b/png/ariang.png deleted file mode 100644 index 56ecb153..00000000 Binary files a/png/ariang.png and /dev/null differ diff --git a/png/arm.png b/png/arm.png index faaf28b1..c4eb61aa 100644 Binary files a/png/arm.png and b/png/arm.png differ diff --git a/png/arris-light.png b/png/arris-light.png deleted file mode 100644 index 561199f4..00000000 Binary files a/png/arris-light.png and /dev/null differ diff --git a/png/arris.png b/png/arris.png deleted file mode 100644 index d08a9396..00000000 Binary files a/png/arris.png and /dev/null differ diff --git a/png/artifacthub.png b/png/artifacthub.png index e2a2c01b..99618cd7 100644 Binary files a/png/artifacthub.png and b/png/artifacthub.png differ diff --git a/png/artifactory.png b/png/artifactory.png deleted file mode 100644 index 09c85885..00000000 Binary files a/png/artifactory.png and /dev/null differ diff --git a/png/aruba.png b/png/aruba.png index 4593d2e2..3cbc5824 100644 Binary files a/png/aruba.png and b/png/aruba.png differ diff --git a/png/asana.png b/png/asana.png index 2e285cad..87a9c03e 100644 Binary files a/png/asana.png and b/png/asana.png differ diff --git a/png/asciinema.png b/png/asciinema.png index 46e0ca32..ee01ceda 100644 Binary files a/png/asciinema.png and b/png/asciinema.png differ diff --git a/png/asrockrackipmi.png b/png/asrockrackipmi.png deleted file mode 100644 index b0210633..00000000 Binary files a/png/asrockrackipmi.png and /dev/null differ diff --git a/png/assetgrid.png b/png/assetgrid.png deleted file mode 100644 index 5f33f1d1..00000000 Binary files a/png/assetgrid.png and /dev/null differ diff --git a/png/asterisk.png b/png/asterisk.png deleted file mode 100644 index 16344f23..00000000 Binary files a/png/asterisk.png and /dev/null differ diff --git a/png/astral-light.png b/png/astral-light.png deleted file mode 100644 index a7bd4509..00000000 Binary files a/png/astral-light.png and /dev/null differ diff --git a/png/astral.png b/png/astral.png index 2f5efa04..89e1883e 100644 Binary files a/png/astral.png and b/png/astral.png differ diff --git a/png/astuto-light.png b/png/astuto-light.png new file mode 100644 index 00000000..0abbaf4d Binary files /dev/null and b/png/astuto-light.png differ diff --git a/png/astuto.png b/png/astuto.png new file mode 100644 index 00000000..3401ca5b Binary files /dev/null and b/png/astuto.png differ diff --git a/png/asus-light.png b/png/asus-light.png deleted file mode 100644 index 9b8d471b..00000000 Binary files a/png/asus-light.png and /dev/null differ diff --git a/png/asus-rog.png b/png/asus-rog.png index b89c170d..270fdd6e 100644 Binary files a/png/asus-rog.png and b/png/asus-rog.png differ diff --git a/png/asus-router.png b/png/asus-router.png index e63d9912..d423a2a5 100644 Binary files a/png/asus-router.png and b/png/asus-router.png differ diff --git a/png/asus.png b/png/asus.png index 4acd355d..7573f166 100644 Binary files a/png/asus.png and b/png/asus.png differ diff --git a/png/asustor-data-master.png b/png/asustor-data-master.png deleted file mode 100644 index 0d301ec3..00000000 Binary files a/png/asustor-data-master.png and /dev/null differ diff --git a/png/asustor.png b/png/asustor.png index 0d301ec3..0fbf1ff1 100644 Binary files a/png/asustor.png and b/png/asustor.png differ diff --git a/png/at-t.png b/png/at-t.png index d104deed..7b5cd70c 100644 Binary files a/png/at-t.png and b/png/at-t.png differ diff --git a/png/atlassian-bamboo.png b/png/atlassian-bamboo.png index 2f05eea0..72fd131f 100644 Binary files a/png/atlassian-bamboo.png and b/png/atlassian-bamboo.png differ diff --git a/png/atlassian-bitbucket.png b/png/atlassian-bitbucket.png new file mode 100644 index 00000000..091aec94 Binary files /dev/null and b/png/atlassian-bitbucket.png differ diff --git a/png/atlassian-confluence.png b/png/atlassian-confluence.png deleted file mode 100644 index 1211380c..00000000 Binary files a/png/atlassian-confluence.png and /dev/null differ diff --git a/png/atlassian-jira.png b/png/atlassian-jira.png index df8bfc2c..0e482bf7 100644 Binary files a/png/atlassian-jira.png and b/png/atlassian-jira.png differ diff --git a/png/atlassian-opsgenie.png b/png/atlassian-opsgenie.png index 9fdccdcd..63b4e85c 100644 Binary files a/png/atlassian-opsgenie.png and b/png/atlassian-opsgenie.png differ diff --git a/png/atlassian-trello.png b/png/atlassian-trello.png index c32dc789..b2aac9c3 100644 Binary files a/png/atlassian-trello.png and b/png/atlassian-trello.png differ diff --git a/png/atlassian.png b/png/atlassian.png index 464c27ce..8d804879 100644 Binary files a/png/atlassian.png and b/png/atlassian.png differ diff --git a/png/atuin-light.png b/png/atuin-light.png new file mode 100644 index 00000000..14553933 Binary files /dev/null and b/png/atuin-light.png differ diff --git a/png/atuin.png b/png/atuin.png new file mode 100644 index 00000000..eb72cbaa Binary files /dev/null and b/png/atuin.png differ diff --git a/png/audacity.png b/png/audacity.png index 483b3bc9..b0e54d7b 100644 Binary files a/png/audacity.png and b/png/audacity.png differ diff --git a/png/audiobookshelf.png b/png/audiobookshelf.png index 932713c6..803351a6 100644 Binary files a/png/audiobookshelf.png and b/png/audiobookshelf.png differ diff --git a/png/auracast.png b/png/auracast.png index adf1314a..487d3f34 100644 Binary files a/png/auracast.png and b/png/auracast.png differ diff --git a/png/authelia.png b/png/authelia.png index b5db391f..9869f09f 100644 Binary files a/png/authelia.png and b/png/authelia.png differ diff --git a/png/authentik-light.png b/png/authentik-light.png deleted file mode 100644 index 73299972..00000000 Binary files a/png/authentik-light.png and /dev/null differ diff --git a/png/authentik.png b/png/authentik.png index 0b82f311..28e6d3e9 100644 Binary files a/png/authentik.png and b/png/authentik.png differ diff --git a/png/authman.png b/png/authman.png new file mode 100644 index 00000000..a4f45900 Binary files /dev/null and b/png/authman.png differ diff --git a/png/autobrr.png b/png/autobrr.png index 1f01f43b..e4e117e6 100644 Binary files a/png/autobrr.png and b/png/autobrr.png differ diff --git a/png/automad-light.png b/png/automad-light.png new file mode 100644 index 00000000..a9999c7b Binary files /dev/null and b/png/automad-light.png differ diff --git a/png/automad.png b/png/automad.png new file mode 100644 index 00000000..a2148520 Binary files /dev/null and b/png/automad.png differ diff --git a/png/avg.png b/png/avg.png deleted file mode 100644 index bffad6e4..00000000 Binary files a/png/avg.png and /dev/null differ diff --git a/png/avigilon.png b/png/avigilon.png index 1757f301..02b41300 100644 Binary files a/png/avigilon.png and b/png/avigilon.png differ diff --git a/png/avm-fritzbox-light.png b/png/avm-fritzbox-light.png new file mode 100644 index 00000000..6bf59fa7 Binary files /dev/null and b/png/avm-fritzbox-light.png differ diff --git a/png/avm-fritzbox.png b/png/avm-fritzbox.png new file mode 100644 index 00000000..c13a2c7e Binary files /dev/null and b/png/avm-fritzbox.png differ diff --git a/png/avmfritzbox.png b/png/avmfritzbox.png deleted file mode 100644 index 8bc6b586..00000000 Binary files a/png/avmfritzbox.png and /dev/null differ diff --git a/png/aws-ecs.png b/png/aws-ecs.png index c88d3253..4fc352e9 100644 Binary files a/png/aws-ecs.png and b/png/aws-ecs.png differ diff --git a/png/aws-light.png b/png/aws-light.png new file mode 100644 index 00000000..fa30b386 Binary files /dev/null and b/png/aws-light.png differ diff --git a/png/aws.png b/png/aws.png index 064471e9..479669e8 100644 Binary files a/png/aws.png and b/png/aws.png differ diff --git a/png/awwesome.png b/png/awwesome.png index 526eed8f..acfc4911 100644 Binary files a/png/awwesome.png and b/png/awwesome.png differ diff --git a/png/awx.png b/png/awx.png deleted file mode 100644 index 62ce4391..00000000 Binary files a/png/awx.png and /dev/null differ diff --git a/png/axis.png b/png/axis.png deleted file mode 100644 index 89758bf6..00000000 Binary files a/png/axis.png and /dev/null differ diff --git a/png/azuracast.png b/png/azuracast.png index a9e3c9ff..7cb4055d 100644 Binary files a/png/azuracast.png and b/png/azuracast.png differ diff --git a/png/azure-container-instances.png b/png/azure-container-instances.png index 2648a3b8..5ef13243 100644 Binary files a/png/azure-container-instances.png and b/png/azure-container-instances.png differ diff --git a/png/azure-container-service.png b/png/azure-container-service.png index 6be892b3..839a2f66 100644 Binary files a/png/azure-container-service.png and b/png/azure-container-service.png differ diff --git a/png/azure-devops.png b/png/azure-devops.png index 217fe9bb..376c9690 100644 Binary files a/png/azure-devops.png and b/png/azure-devops.png differ diff --git a/png/azure-dns.png b/png/azure-dns.png index ec370514..b0af26ae 100644 Binary files a/png/azure-dns.png and b/png/azure-dns.png differ diff --git a/png/azure.png b/png/azure.png index 7efce5de..69578320 100644 Binary files a/png/azure.png and b/png/azure.png differ diff --git a/png/babybuddy.png b/png/babybuddy.png deleted file mode 100644 index 25189090..00000000 Binary files a/png/babybuddy.png and /dev/null differ diff --git a/png/backblaze.png b/png/backblaze.png index c893bc47..d292ce67 100644 Binary files a/png/backblaze.png and b/png/backblaze.png differ diff --git a/png/backrest-light.png b/png/backrest-light.png new file mode 100644 index 00000000..236fb505 Binary files /dev/null and b/png/backrest-light.png differ diff --git a/png/backrest.png b/png/backrest.png new file mode 100644 index 00000000..88c49b05 Binary files /dev/null and b/png/backrest.png differ diff --git a/png/bacula.png b/png/bacula.png deleted file mode 100644 index cb644846..00000000 Binary files a/png/bacula.png and /dev/null differ diff --git a/png/badge.png b/png/badge.png deleted file mode 100644 index 287c5ff2..00000000 Binary files a/png/badge.png and /dev/null differ diff --git a/png/baikal.png b/png/baikal.png deleted file mode 100644 index 5eac8895..00000000 Binary files a/png/baikal.png and /dev/null differ diff --git a/png/bar-assistant.png b/png/bar-assistant.png index 4bb3acc1..92b8331e 100644 Binary files a/png/bar-assistant.png and b/png/bar-assistant.png differ diff --git a/png/barcodebuddy.png b/png/barcodebuddy.png deleted file mode 100644 index 3bb572bf..00000000 Binary files a/png/barcodebuddy.png and /dev/null differ diff --git a/png/baserow.png b/png/baserow.png index 2b7a8000..1b9639a4 100644 Binary files a/png/baserow.png and b/png/baserow.png differ diff --git a/png/basilisk.png b/png/basilisk.png deleted file mode 100644 index 00df523d..00000000 Binary files a/png/basilisk.png and /dev/null differ diff --git a/png/bastillion.png b/png/bastillion.png deleted file mode 100644 index 4ef96cd7..00000000 Binary files a/png/bastillion.png and /dev/null differ diff --git a/png/bazarr-dark.png b/png/bazarr-dark.png new file mode 100644 index 00000000..9da8b389 Binary files /dev/null and b/png/bazarr-dark.png differ diff --git a/png/bazarr-light.png b/png/bazarr-light.png deleted file mode 100644 index 28ef313d..00000000 Binary files a/png/bazarr-light.png and /dev/null differ diff --git a/png/bazarr.png b/png/bazarr.png index e00ba3b5..9af5f977 100644 Binary files a/png/bazarr.png and b/png/bazarr.png differ diff --git a/png/beaver-habit-tracker-light.png b/png/beaver-habit-tracker-light.png new file mode 100644 index 00000000..cba2eaf5 Binary files /dev/null and b/png/beaver-habit-tracker-light.png differ diff --git a/png/beaver-habit-tracker.png b/png/beaver-habit-tracker.png new file mode 100644 index 00000000..9de1ca53 Binary files /dev/null and b/png/beaver-habit-tracker.png differ diff --git a/png/beef-light.png b/png/beef-light.png index cc64992e..5012fc1d 100644 Binary files a/png/beef-light.png and b/png/beef-light.png differ diff --git a/png/beef.png b/png/beef.png index 1e161ef6..dbf1bf33 100644 Binary files a/png/beef.png and b/png/beef.png differ diff --git a/png/beets.png b/png/beets.png deleted file mode 100644 index 08194e09..00000000 Binary files a/png/beets.png and /dev/null differ diff --git a/png/benotes.png b/png/benotes.png deleted file mode 100644 index 9212ce7e..00000000 Binary files a/png/benotes.png and /dev/null differ diff --git a/png/beszel-light.png b/png/beszel-light.png new file mode 100644 index 00000000..02cf2c46 Binary files /dev/null and b/png/beszel-light.png differ diff --git a/png/beszel.png b/png/beszel.png new file mode 100644 index 00000000..1a902ce0 Binary files /dev/null and b/png/beszel.png differ diff --git a/png/betanin.png b/png/betanin.png deleted file mode 100644 index fd90115b..00000000 Binary files a/png/betanin.png and /dev/null differ diff --git a/png/bible-gateway.png b/png/bible-gateway.png deleted file mode 100644 index 0cb9770d..00000000 Binary files a/png/bible-gateway.png and /dev/null differ diff --git a/png/bibliogram.png b/png/bibliogram.png deleted file mode 100644 index 174ee102..00000000 Binary files a/png/bibliogram.png and /dev/null differ diff --git a/png/biblioreads-light.png b/png/biblioreads-light.png new file mode 100644 index 00000000..7ba336ad Binary files /dev/null and b/png/biblioreads-light.png differ diff --git a/png/biblioreads.png b/png/biblioreads.png new file mode 100644 index 00000000..e9b4415c Binary files /dev/null and b/png/biblioreads.png differ diff --git a/png/biedronka.png b/png/biedronka.png deleted file mode 100644 index 946e632e..00000000 Binary files a/png/biedronka.png and /dev/null differ diff --git a/png/bigcapital.png b/png/bigcapital.png new file mode 100644 index 00000000..81ec3515 Binary files /dev/null and b/png/bigcapital.png differ diff --git a/png/bing.png b/png/bing.png index 3140e1ac..4833967e 100644 Binary files a/png/bing.png and b/png/bing.png differ diff --git a/png/birdnet.png b/png/birdnet.png deleted file mode 100644 index f5d83ba9..00000000 Binary files a/png/birdnet.png and /dev/null differ diff --git a/png/bitbucket.png b/png/bitbucket.png new file mode 100644 index 00000000..fd2c1faf Binary files /dev/null and b/png/bitbucket.png differ diff --git a/png/bitcoin.png b/png/bitcoin.png index 1b0cb09b..74a0a08b 100644 Binary files a/png/bitcoin.png and b/png/bitcoin.png differ diff --git a/png/bithumen.png b/png/bithumen.png deleted file mode 100644 index 26678e2a..00000000 Binary files a/png/bithumen.png and /dev/null differ diff --git a/png/bitwarden.png b/png/bitwarden.png index 5cb9c929..956d4d55 100644 Binary files a/png/bitwarden.png and b/png/bitwarden.png differ diff --git a/png/blocky.png b/png/blocky.png index 09275f4b..59d6f4c4 100644 Binary files a/png/blocky.png and b/png/blocky.png differ diff --git a/png/blogger.png b/png/blogger.png index 86e07daa..209ba221 100644 Binary files a/png/blogger.png and b/png/blogger.png differ diff --git a/png/blue-iris.png b/png/blue-iris.png deleted file mode 100644 index bc953f01..00000000 Binary files a/png/blue-iris.png and /dev/null differ diff --git a/png/bluesky.png b/png/bluesky.png new file mode 100644 index 00000000..14405c57 Binary files /dev/null and b/png/bluesky.png differ diff --git a/png/bluetooth.png b/png/bluetooth.png index c99d1e74..e29e82a2 100644 Binary files a/png/bluetooth.png and b/png/bluetooth.png differ diff --git a/png/bluewallet.png b/png/bluewallet.png deleted file mode 100644 index 45b5df61..00000000 Binary files a/png/bluewallet.png and /dev/null differ diff --git a/png/bobcat-miner.png b/png/bobcat-miner.png deleted file mode 100644 index f4e832b6..00000000 Binary files a/png/bobcat-miner.png and /dev/null differ diff --git a/png/booklogr-light.png b/png/booklogr-light.png new file mode 100644 index 00000000..ec958cb7 Binary files /dev/null and b/png/booklogr-light.png differ diff --git a/png/booklogr.png b/png/booklogr.png new file mode 100644 index 00000000..ad038510 Binary files /dev/null and b/png/booklogr.png differ diff --git a/png/booksonic.png b/png/booksonic.png deleted file mode 100644 index 8b299669..00000000 Binary files a/png/booksonic.png and /dev/null differ diff --git a/png/bookstack.png b/png/bookstack.png index 26106551..cfa38001 100644 Binary files a/png/bookstack.png and b/png/bookstack.png differ diff --git a/png/bootstrap.png b/png/bootstrap.png index 3145a088..89f2cd31 100644 Binary files a/png/bootstrap.png and b/png/bootstrap.png differ diff --git a/png/borg.png b/png/borg.png index f7e146b7..d29ece24 100644 Binary files a/png/borg.png and b/png/borg.png differ diff --git a/png/borgbackup.png b/png/borgbackup.png deleted file mode 100644 index f7e146b7..00000000 Binary files a/png/borgbackup.png and /dev/null differ diff --git a/png/borgmatic-light.png b/png/borgmatic-light.png new file mode 100644 index 00000000..017a4c6c Binary files /dev/null and b/png/borgmatic-light.png differ diff --git a/png/borgmatic.png b/png/borgmatic.png new file mode 100644 index 00000000..28fe1594 Binary files /dev/null and b/png/borgmatic.png differ diff --git a/png/boundary.png b/png/boundary.png index 501d167b..cf1612e8 100644 Binary files a/png/boundary.png and b/png/boundary.png differ diff --git a/png/box.png b/png/box.png index aaa7996a..1769cc6b 100644 Binary files a/png/box.png and b/png/box.png differ diff --git a/png/brave-dev.png b/png/brave-dev.png deleted file mode 100644 index 612cd8d3..00000000 Binary files a/png/brave-dev.png and /dev/null differ diff --git a/png/brave.png b/png/brave.png index 790a371b..b6b19f67 100644 Binary files a/png/brave.png and b/png/brave.png differ diff --git a/png/brewpi.png b/png/brewpi.png deleted file mode 100644 index d90c47c9..00000000 Binary files a/png/brewpi.png and /dev/null differ diff --git a/png/brillcam.png b/png/brillcam.png deleted file mode 100644 index 0768af4a..00000000 Binary files a/png/brillcam.png and /dev/null differ diff --git a/png/broadcastchannel-light.png b/png/broadcastchannel-light.png new file mode 100644 index 00000000..62ddf64f Binary files /dev/null and b/png/broadcastchannel-light.png differ diff --git a/png/broadcastchannel.png b/png/broadcastchannel.png new file mode 100644 index 00000000..50683d8e Binary files /dev/null and b/png/broadcastchannel.png differ diff --git a/png/brocade.png b/png/brocade.png index c8cb6d08..3b362cbf 100644 Binary files a/png/brocade.png and b/png/brocade.png differ diff --git a/png/brother.png b/png/brother.png index 76f97cd2..e150c868 100644 Binary files a/png/brother.png and b/png/brother.png differ diff --git a/png/browserless-light.png b/png/browserless-light.png index d89f2ee8..213639be 100644 Binary files a/png/browserless-light.png and b/png/browserless-light.png differ diff --git a/png/browserless.png b/png/browserless.png index 1e65e276..c8c3361a 100644 Binary files a/png/browserless.png and b/png/browserless.png differ diff --git a/png/browsh.png b/png/browsh.png index a95a80c5..320da502 100644 Binary files a/png/browsh.png and b/png/browsh.png differ diff --git a/png/btcpay-server.png b/png/btcpay-server.png deleted file mode 100644 index 214ae402..00000000 Binary files a/png/btcpay-server.png and /dev/null differ diff --git a/png/buddy.png b/png/buddy.png deleted file mode 100644 index 5902cf56..00000000 Binary files a/png/buddy.png and /dev/null differ diff --git a/png/budget-zero.png b/png/budget-zero.png deleted file mode 100644 index 6c6e3d78..00000000 Binary files a/png/budget-zero.png and /dev/null differ diff --git a/png/budgetbee-light.png b/png/budgetbee-light.png new file mode 100644 index 00000000..d60b37a5 Binary files /dev/null and b/png/budgetbee-light.png differ diff --git a/png/budgetbee.png b/png/budgetbee.png new file mode 100644 index 00000000..38768909 Binary files /dev/null and b/png/budgetbee.png differ diff --git a/png/budibase-light.png b/png/budibase-light.png deleted file mode 100644 index 85b2b785..00000000 Binary files a/png/budibase-light.png and /dev/null differ diff --git a/png/budibase.png b/png/budibase.png index 9b84e32e..dc8e8365 100644 Binary files a/png/budibase.png and b/png/budibase.png differ diff --git a/png/buffalo.png b/png/buffalo.png deleted file mode 100644 index 24228f71..00000000 Binary files a/png/buffalo.png and /dev/null differ diff --git a/png/bunkerweb-light.png b/png/bunkerweb-light.png deleted file mode 100644 index 0b37a470..00000000 Binary files a/png/bunkerweb-light.png and /dev/null differ diff --git a/png/bunkerweb.png b/png/bunkerweb.png index 4dc66b55..5e983c63 100644 Binary files a/png/bunkerweb.png and b/png/bunkerweb.png differ diff --git a/png/buxfer.png b/png/buxfer.png deleted file mode 100644 index eea9d043..00000000 Binary files a/png/buxfer.png and /dev/null differ diff --git a/png/c.png b/png/c.png index 99516d3e..2c0c478c 100644 Binary files a/png/c.png and b/png/c.png differ diff --git a/png/cabot.png b/png/cabot.png deleted file mode 100644 index 5bb16fe7..00000000 Binary files a/png/cabot.png and /dev/null differ diff --git a/png/cacti.png b/png/cacti.png index 2731dc05..7931a867 100644 Binary files a/png/cacti.png and b/png/cacti.png differ diff --git a/png/caddy.png b/png/caddy.png index 796366c9..e81905b0 100644 Binary files a/png/caddy.png and b/png/caddy.png differ diff --git a/png/cadvisor.png b/png/cadvisor.png deleted file mode 100644 index 60fb9b5d..00000000 Binary files a/png/cadvisor.png and /dev/null differ diff --git a/png/cal-com-light.png b/png/cal-com-light.png new file mode 100644 index 00000000..70443ba7 Binary files /dev/null and b/png/cal-com-light.png differ diff --git a/png/cal-com.png b/png/cal-com.png new file mode 100644 index 00000000..ebdac0db Binary files /dev/null and b/png/cal-com.png differ diff --git a/png/calckey.png b/png/calckey.png deleted file mode 100644 index f30ce27d..00000000 Binary files a/png/calckey.png and /dev/null differ diff --git a/png/caldera.png b/png/caldera.png deleted file mode 100644 index 2cf9b199..00000000 Binary files a/png/caldera.png and /dev/null differ diff --git a/png/calibre-web.png b/png/calibre-web.png index d1fdf4c2..66080a5c 100644 Binary files a/png/calibre-web.png and b/png/calibre-web.png differ diff --git a/png/calibre.png b/png/calibre.png index a4fa7b33..e79fadc0 100644 Binary files a/png/calibre.png and b/png/calibre.png differ diff --git a/png/camera-ui.png b/png/camera-ui.png deleted file mode 100644 index 6dfaf18b..00000000 Binary files a/png/camera-ui.png and /dev/null differ diff --git a/png/canonical.png b/png/canonical.png index 0682f2ab..9a75c4fe 100644 Binary files a/png/canonical.png and b/png/canonical.png differ diff --git a/png/caprover.png b/png/caprover.png new file mode 100644 index 00000000..13c6c3aa Binary files /dev/null and b/png/caprover.png differ diff --git a/png/cardigann-light.png b/png/cardigann-light.png deleted file mode 100644 index b84f3927..00000000 Binary files a/png/cardigann-light.png and /dev/null differ diff --git a/png/cardigann.png b/png/cardigann.png deleted file mode 100644 index 0ced4e0f..00000000 Binary files a/png/cardigann.png and /dev/null differ diff --git a/png/carrefour.png b/png/carrefour.png index ee2fc726..84b30f48 100644 Binary files a/png/carrefour.png and b/png/carrefour.png differ diff --git a/png/casaos.png b/png/casaos.png index 2b64b0b5..6ffc3cae 100644 Binary files a/png/casaos.png and b/png/casaos.png differ diff --git a/png/castopod.png b/png/castopod.png index b3c1b725..7aade290 100644 Binary files a/png/castopod.png and b/png/castopod.png differ diff --git a/png/cc-light.png b/png/cc-light.png index 95dcc458..bbd63682 100644 Binary files a/png/cc-light.png and b/png/cc-light.png differ diff --git a/png/cc.png b/png/cc.png index e84b28df..8471a167 100644 Binary files a/png/cc.png and b/png/cc.png differ diff --git a/png/centos.png b/png/centos.png index aafc189f..a83032a4 100644 Binary files a/png/centos.png and b/png/centos.png differ diff --git a/png/ceph.png b/png/ceph.png index 9abc6f6c..da1bf04b 100644 Binary files a/png/ceph.png and b/png/ceph.png differ diff --git a/png/cert-manager.png b/png/cert-manager.png index 8a0a17ca..a0d8fe52 100644 Binary files a/png/cert-manager.png and b/png/cert-manager.png differ diff --git a/png/cert-warden-light.png b/png/cert-warden-light.png new file mode 100644 index 00000000..3757c199 Binary files /dev/null and b/png/cert-warden-light.png differ diff --git a/png/cert-warden.png b/png/cert-warden.png index f917a322..ce069317 100644 Binary files a/png/cert-warden.png and b/png/cert-warden.png differ diff --git a/png/chainguard.png b/png/chainguard.png index 9f0bf0e6..d4c51018 100644 Binary files a/png/chainguard.png and b/png/chainguard.png differ diff --git a/png/changedetection-io.png b/png/changedetection-io.png deleted file mode 100644 index ec9771fb..00000000 Binary files a/png/changedetection-io.png and /dev/null differ diff --git a/png/changedetection.png b/png/changedetection.png new file mode 100644 index 00000000..dc4afdea Binary files /dev/null and b/png/changedetection.png differ diff --git a/png/channels-dvr.png b/png/channels-dvr.png new file mode 100644 index 00000000..1393f597 Binary files /dev/null and b/png/channels-dvr.png differ diff --git a/png/channels.png b/png/channels.png deleted file mode 100644 index 959ba80a..00000000 Binary files a/png/channels.png and /dev/null differ diff --git a/png/chatgpt.png b/png/chatgpt.png index 94651011..022ebee9 100644 Binary files a/png/chatgpt.png and b/png/chatgpt.png differ diff --git a/png/chatpad-ai.png b/png/chatpad-ai.png index b6280742..76b46359 100644 Binary files a/png/chatpad-ai.png and b/png/chatpad-ai.png differ diff --git a/png/checkmk.png b/png/checkmk.png index 64e80d01..5d8b55be 100644 Binary files a/png/checkmk.png and b/png/checkmk.png differ diff --git a/png/cherry.png b/png/cherry.png deleted file mode 100644 index d06020d0..00000000 Binary files a/png/cherry.png and /dev/null differ diff --git a/png/chevereto.png b/png/chevereto.png index cbc02406..15390ead 100644 Binary files a/png/chevereto.png and b/png/chevereto.png differ diff --git a/png/chiefonboarding.png b/png/chiefonboarding.png deleted file mode 100644 index cb69ceae..00000000 Binary files a/png/chiefonboarding.png and /dev/null differ diff --git a/png/chirpy.png b/png/chirpy.png new file mode 100644 index 00000000..5e929430 Binary files /dev/null and b/png/chirpy.png differ diff --git a/png/chowdown.png b/png/chowdown.png deleted file mode 100644 index 201c24bc..00000000 Binary files a/png/chowdown.png and /dev/null differ diff --git a/png/chrome-beta.png b/png/chrome-beta.png deleted file mode 100644 index 474b5b2e..00000000 Binary files a/png/chrome-beta.png and /dev/null differ diff --git a/png/chrome-canary.png b/png/chrome-canary.png index 8135d07e..4019feed 100644 Binary files a/png/chrome-canary.png and b/png/chrome-canary.png differ diff --git a/png/chrome-dev.png b/png/chrome-dev.png index eb281ed7..1b16e858 100644 Binary files a/png/chrome-dev.png and b/png/chrome-dev.png differ diff --git a/png/chrome-devtools.png b/png/chrome-devtools.png index 587e5293..2cbadd7e 100644 Binary files a/png/chrome-devtools.png and b/png/chrome-devtools.png differ diff --git a/png/chrome-remote-desktop.png b/png/chrome-remote-desktop.png index ae0634d0..801aa3c8 100644 Binary files a/png/chrome-remote-desktop.png and b/png/chrome-remote-desktop.png differ diff --git a/png/chrome.png b/png/chrome.png index 7cf58e08..679bdd78 100644 Binary files a/png/chrome.png and b/png/chrome.png differ diff --git a/png/chromecast-light.png b/png/chromecast-light.png deleted file mode 100644 index 399c4543..00000000 Binary files a/png/chromecast-light.png and /dev/null differ diff --git a/png/chromecast.png b/png/chromecast.png deleted file mode 100644 index f2d507cf..00000000 Binary files a/png/chromecast.png and /dev/null differ diff --git a/png/chromium.png b/png/chromium.png index 1a2c8997..50b1329f 100644 Binary files a/png/chromium.png and b/png/chromium.png differ diff --git a/png/chronograf.png b/png/chronograf.png deleted file mode 100644 index fecc9ee6..00000000 Binary files a/png/chronograf.png and /dev/null differ diff --git a/png/cilium-light.png b/png/cilium-light.png new file mode 100644 index 00000000..4e30d990 Binary files /dev/null and b/png/cilium-light.png differ diff --git a/png/cilium.png b/png/cilium.png index 4cf581f0..a3994294 100644 Binary files a/png/cilium.png and b/png/cilium.png differ diff --git a/png/cinny-light.png b/png/cinny-light.png index 85c5ff8e..a217bded 100644 Binary files a/png/cinny-light.png and b/png/cinny-light.png differ diff --git a/png/cinny.png b/png/cinny.png index 45f37a05..530d0e70 100644 Binary files a/png/cinny.png and b/png/cinny.png differ diff --git a/png/cisco.png b/png/cisco.png index 4d8ecef9..73116ff1 100644 Binary files a/png/cisco.png and b/png/cisco.png differ diff --git a/png/clash.png b/png/clash.png deleted file mode 100644 index c9f3284a..00000000 Binary files a/png/clash.png and /dev/null differ diff --git a/png/clashX.png b/png/clashX.png deleted file mode 100644 index c9f3284a..00000000 Binary files a/png/clashX.png and /dev/null differ diff --git a/png/clickhouse.png b/png/clickhouse.png new file mode 100644 index 00000000..ce5ecf39 Binary files /dev/null and b/png/clickhouse.png differ diff --git a/png/closed-captioning-light.png b/png/closed-captioning-light.png deleted file mode 100644 index 95dcc458..00000000 Binary files a/png/closed-captioning-light.png and /dev/null differ diff --git a/png/closed-captioning.png b/png/closed-captioning.png deleted file mode 100644 index e84b28df..00000000 Binary files a/png/closed-captioning.png and /dev/null differ diff --git a/png/cloud66.png b/png/cloud66.png index 2800dd27..f185c938 100644 Binary files a/png/cloud66.png and b/png/cloud66.png differ diff --git a/png/cloud9-light.png b/png/cloud9-light.png new file mode 100644 index 00000000..858013e7 Binary files /dev/null and b/png/cloud9-light.png differ diff --git a/png/cloud9.png b/png/cloud9.png index 87bfb7b5..72b59ec7 100644 Binary files a/png/cloud9.png and b/png/cloud9.png differ diff --git a/png/cloudbeaver.png b/png/cloudbeaver.png index c6a836ed..e1a2a0e8 100644 Binary files a/png/cloudbeaver.png and b/png/cloudbeaver.png differ diff --git a/png/cloudcmd.png b/png/cloudcmd.png deleted file mode 100644 index 93d5373e..00000000 Binary files a/png/cloudcmd.png and /dev/null differ diff --git a/png/cloudflare-pages.png b/png/cloudflare-pages.png index 41b8a1a8..20223360 100644 Binary files a/png/cloudflare-pages.png and b/png/cloudflare-pages.png differ diff --git a/png/cloudflare-zero-trust.png b/png/cloudflare-zero-trust.png index 4d3eca70..39cbcbac 100644 Binary files a/png/cloudflare-zero-trust.png and b/png/cloudflare-zero-trust.png differ diff --git a/png/cloudflare.png b/png/cloudflare.png index 4d33c5f4..c05107eb 100644 Binary files a/png/cloudflare.png and b/png/cloudflare.png differ diff --git a/png/cloudpanel.png b/png/cloudpanel.png index e79e52cd..ec46064a 100644 Binary files a/png/cloudpanel.png and b/png/cloudpanel.png differ diff --git a/png/cockpit-cms-light.png b/png/cockpit-cms-light.png index 150d2db6..c3ac66f0 100644 Binary files a/png/cockpit-cms-light.png and b/png/cockpit-cms-light.png differ diff --git a/png/cockpit-cms.png b/png/cockpit-cms.png index 1a616f9f..5f3d54bd 100644 Binary files a/png/cockpit-cms.png and b/png/cockpit-cms.png differ diff --git a/png/cockpit-light.png b/png/cockpit-light.png new file mode 100644 index 00000000..8b6771e3 Binary files /dev/null and b/png/cockpit-light.png differ diff --git a/png/cockpit.png b/png/cockpit.png index 8efd9b75..439fd644 100644 Binary files a/png/cockpit.png and b/png/cockpit.png differ diff --git a/png/code-server.png b/png/code-server.png deleted file mode 100644 index 5706f724..00000000 Binary files a/png/code-server.png and /dev/null differ diff --git a/png/code.png b/png/code.png index af38c2d3..c19e791f 100644 Binary files a/png/code.png and b/png/code.png differ diff --git a/png/codeberg.png b/png/codeberg.png index 15834f0d..c7e4adab 100644 Binary files a/png/codeberg.png and b/png/codeberg.png differ diff --git a/png/coder-light.png b/png/coder-light.png index 671afa2d..0dadef0d 100644 Binary files a/png/coder-light.png and b/png/coder-light.png differ diff --git a/png/coder.png b/png/coder.png index 9c28653c..537e1732 100644 Binary files a/png/coder.png and b/png/coder.png differ diff --git a/png/codestats-light.png b/png/codestats-light.png index f69a03ea..684f3474 100644 Binary files a/png/codestats-light.png and b/png/codestats-light.png differ diff --git a/png/codestats.png b/png/codestats.png index 0f55a521..b4ae01da 100644 Binary files a/png/codestats.png and b/png/codestats.png differ diff --git a/png/codex-light.png b/png/codex-light.png new file mode 100644 index 00000000..b06a3645 Binary files /dev/null and b/png/codex-light.png differ diff --git a/png/codex.png b/png/codex.png index fa4a5950..ecf5b4b4 100644 Binary files a/png/codex.png and b/png/codex.png differ diff --git a/png/codimd-light.png b/png/codimd-light.png deleted file mode 100644 index 6978e262..00000000 Binary files a/png/codimd-light.png and /dev/null differ diff --git a/png/codimd.png b/png/codimd.png deleted file mode 100644 index e96af701..00000000 Binary files a/png/codimd.png and /dev/null differ diff --git a/png/collabora-online.png b/png/collabora-online.png index 0aec8f46..eca03265 100644 Binary files a/png/collabora-online.png and b/png/collabora-online.png differ diff --git a/png/commafeed-light.png b/png/commafeed-light.png new file mode 100644 index 00000000..862cc5c5 Binary files /dev/null and b/png/commafeed-light.png differ diff --git a/png/commafeed.png b/png/commafeed.png index 70c9fb0b..c4ea2e2b 100644 Binary files a/png/commafeed.png and b/png/commafeed.png differ diff --git a/png/commento-light.png b/png/commento-light.png new file mode 100644 index 00000000..3333e631 Binary files /dev/null and b/png/commento-light.png differ diff --git a/png/commento.png b/png/commento.png new file mode 100644 index 00000000..bf86b638 Binary files /dev/null and b/png/commento.png differ diff --git a/png/compreface.png b/png/compreface.png new file mode 100644 index 00000000..b1c23fda Binary files /dev/null and b/png/compreface.png differ diff --git a/png/concourse.png b/png/concourse.png index d4b4024e..8ee9e9a9 100644 Binary files a/png/concourse.png and b/png/concourse.png differ diff --git a/png/confluence.png b/png/confluence.png new file mode 100644 index 00000000..83fbae9c Binary files /dev/null and b/png/confluence.png differ diff --git a/png/consul.png b/png/consul.png index a58f2adf..b0b5aa44 100644 Binary files a/png/consul.png and b/png/consul.png differ diff --git a/png/contabo.png b/png/contabo.png index 3840e88b..f5129163 100644 Binary files a/png/contabo.png and b/png/contabo.png differ diff --git a/png/converse-light.png b/png/converse-light.png new file mode 100644 index 00000000..1674823c Binary files /dev/null and b/png/converse-light.png differ diff --git a/png/converse.png b/png/converse.png new file mode 100644 index 00000000..1ac3bd9d Binary files /dev/null and b/png/converse.png differ diff --git a/png/coolify.png b/png/coolify.png index ee35346c..91444ed1 100644 Binary files a/png/coolify.png and b/png/coolify.png differ diff --git a/png/coredns.png b/png/coredns.png index 6ea177d4..111b0e2c 100644 Binary files a/png/coredns.png and b/png/coredns.png differ diff --git a/png/coreos.png b/png/coreos.png index 77090b09..04449340 100644 Binary files a/png/coreos.png and b/png/coreos.png differ diff --git a/png/cosign.png b/png/cosign.png index d6441222..59beedde 100644 Binary files a/png/cosign.png and b/png/cosign.png differ diff --git a/png/costco.png b/png/costco.png index 08ed72df..7abc82b1 100644 Binary files a/png/costco.png and b/png/costco.png differ diff --git a/png/couchdb.png b/png/couchdb.png new file mode 100644 index 00000000..829a9d02 Binary files /dev/null and b/png/couchdb.png differ diff --git a/png/couchpotato.png b/png/couchpotato.png deleted file mode 100644 index b89796dc..00000000 Binary files a/png/couchpotato.png and /dev/null differ diff --git a/png/counter-analytics.png b/png/counter-analytics.png new file mode 100644 index 00000000..b0e01693 Binary files /dev/null and b/png/counter-analytics.png differ diff --git a/png/counter-strike-2.png b/png/counter-strike-2.png deleted file mode 100644 index 8a6faff8..00000000 Binary files a/png/counter-strike-2.png and /dev/null differ diff --git a/png/counter-strike-global-offensive.png b/png/counter-strike-global-offensive.png deleted file mode 100644 index 9d5bcd88..00000000 Binary files a/png/counter-strike-global-offensive.png and /dev/null differ diff --git a/png/cozy-cloud.png b/png/cozy-cloud.png deleted file mode 100644 index 9a27c94c..00000000 Binary files a/png/cozy-cloud.png and /dev/null differ diff --git a/png/cozy.png b/png/cozy.png index 9a27c94c..4ea12dac 100644 Binary files a/png/cozy.png and b/png/cozy.png differ diff --git a/png/cpanel.png b/png/cpanel.png index 2ab9ce56..59ef3c03 100644 Binary files a/png/cpanel.png and b/png/cpanel.png differ diff --git a/png/cpp.png b/png/cpp.png index 89232690..2e80497c 100644 Binary files a/png/cpp.png and b/png/cpp.png differ diff --git a/png/crafty-controller.png b/png/crafty-controller.png index c4605cc3..688a7a9d 100644 Binary files a/png/crafty-controller.png and b/png/crafty-controller.png differ diff --git a/png/crater-invoice.png b/png/crater-invoice.png deleted file mode 100644 index 6aad8f00..00000000 Binary files a/png/crater-invoice.png and /dev/null differ diff --git a/png/crazydomains.png b/png/crazydomains.png deleted file mode 100644 index f181a1bc..00000000 Binary files a/png/crazydomains.png and /dev/null differ diff --git a/png/cribl-light.png b/png/cribl-light.png deleted file mode 100644 index c1dc809e..00000000 Binary files a/png/cribl-light.png and /dev/null differ diff --git a/png/cribl.png b/png/cribl.png deleted file mode 100644 index 7cadb237..00000000 Binary files a/png/cribl.png and /dev/null differ diff --git a/png/cross-seed-square.png b/png/cross-seed-square.png deleted file mode 100644 index de6d8ee4..00000000 Binary files a/png/cross-seed-square.png and /dev/null differ diff --git a/png/cross-seed.png b/png/cross-seed.png deleted file mode 100644 index 4b671119..00000000 Binary files a/png/cross-seed.png and /dev/null differ diff --git a/png/crowdsec.png b/png/crowdsec.png index 7c724c96..be787bdf 100644 Binary files a/png/crowdsec.png and b/png/crowdsec.png differ diff --git a/png/cryptomator.png b/png/cryptomator.png index 820dfbef..3afd3941 100644 Binary files a/png/cryptomator.png and b/png/cryptomator.png differ diff --git a/png/cryptpad.png b/png/cryptpad.png index 4c99075b..19d223d7 100644 Binary files a/png/cryptpad.png and b/png/cryptpad.png differ diff --git a/png/csharp.png b/png/csharp.png index ac95f12a..9475bdb8 100644 Binary files a/png/csharp.png and b/png/csharp.png differ diff --git a/png/css-light.png b/png/css-light.png new file mode 100644 index 00000000..30faf89d Binary files /dev/null and b/png/css-light.png differ diff --git a/png/css.png b/png/css.png index 10cb334e..228d978a 100644 Binary files a/png/css.png and b/png/css.png differ diff --git a/png/ctfreak.png b/png/ctfreak.png new file mode 100644 index 00000000..11f8b153 Binary files /dev/null and b/png/ctfreak.png differ diff --git a/png/cups-light.png b/png/cups-light.png index dcd7abf7..1804ced4 100644 Binary files a/png/cups-light.png and b/png/cups-light.png differ diff --git a/png/cups.png b/png/cups.png index 032a0403..b20393ec 100644 Binary files a/png/cups.png and b/png/cups.png differ diff --git a/png/cura.png b/png/cura.png index d5d380c6..92c5f875 100644 Binary files a/png/cura.png and b/png/cura.png differ diff --git a/png/cyberchef.png b/png/cyberchef.png index 209d2fd0..56b3fd7a 100644 Binary files a/png/cyberchef.png and b/png/cyberchef.png differ diff --git a/png/czkawka.png b/png/czkawka.png new file mode 100644 index 00000000..9308cea6 Binary files /dev/null and b/png/czkawka.png differ diff --git a/png/d-link-wifi.png b/png/d-link-wifi.png deleted file mode 100644 index bbb4b53b..00000000 Binary files a/png/d-link-wifi.png and /dev/null differ diff --git a/png/d-link.png b/png/d-link.png index c48d1d98..6f9a96df 100644 Binary files a/png/d-link.png and b/png/d-link.png differ diff --git a/png/dahua.png b/png/dahua.png deleted file mode 100644 index 98b5acab..00000000 Binary files a/png/dahua.png and /dev/null differ diff --git a/png/dalibo.png b/png/dalibo.png new file mode 100644 index 00000000..dba7c44b Binary files /dev/null and b/png/dalibo.png differ diff --git a/png/dart.png b/png/dart.png index 28cd1ea9..590a502c 100644 Binary files a/png/dart.png and b/png/dart.png differ diff --git a/png/dashboard-icons.png b/png/dashboard-icons.png deleted file mode 100644 index bf457aaa..00000000 Binary files a/png/dashboard-icons.png and /dev/null differ diff --git a/png/dashdot.png b/png/dashdot.png deleted file mode 100644 index eb05984c..00000000 Binary files a/png/dashdot.png and /dev/null differ diff --git a/png/dashy.png b/png/dashy.png deleted file mode 100644 index 4f0a6198..00000000 Binary files a/png/dashy.png and /dev/null differ diff --git a/png/datadog.png b/png/datadog.png index b445ae53..28a8755c 100644 Binary files a/png/datadog.png and b/png/datadog.png differ diff --git a/png/davical.png b/png/davical.png new file mode 100644 index 00000000..ac4f9cb0 Binary files /dev/null and b/png/davical.png differ diff --git a/png/davis.png b/png/davis.png deleted file mode 100644 index 15bdc331..00000000 Binary files a/png/davis.png and /dev/null differ diff --git a/png/dawarich.png b/png/dawarich.png new file mode 100644 index 00000000..f71d9085 Binary files /dev/null and b/png/dawarich.png differ diff --git a/png/dc-os.png b/png/dc-os.png index a2d48569..becae71a 100644 Binary files a/png/dc-os.png and b/png/dc-os.png differ diff --git a/png/dd-wrt-light.png b/png/dd-wrt-light.png deleted file mode 100644 index 71373b17..00000000 Binary files a/png/dd-wrt-light.png and /dev/null differ diff --git a/png/dd-wrt.png b/png/dd-wrt.png deleted file mode 100644 index bfe5b183..00000000 Binary files a/png/dd-wrt.png and /dev/null differ diff --git a/png/ddclient.png b/png/ddclient.png new file mode 100644 index 00000000..3ccdaaf7 Binary files /dev/null and b/png/ddclient.png differ diff --git a/png/ddns-updater.png b/png/ddns-updater.png index 5feba638..54f59e74 100644 Binary files a/png/ddns-updater.png and b/png/ddns-updater.png differ diff --git a/png/debian-linux.png b/png/debian-linux.png new file mode 100644 index 00000000..bb580ccc Binary files /dev/null and b/png/debian-linux.png differ diff --git a/png/debian.png b/png/debian.png deleted file mode 100644 index 44aa3ff5..00000000 Binary files a/png/debian.png and /dev/null differ diff --git a/png/deemix.png b/png/deemix.png deleted file mode 100644 index 16481adb..00000000 Binary files a/png/deemix.png and /dev/null differ diff --git a/png/defguard.png b/png/defguard.png new file mode 100644 index 00000000..92da55ae Binary files /dev/null and b/png/defguard.png differ diff --git a/png/dell.png b/png/dell.png index 61f8ec1a..e6230cb7 100644 Binary files a/png/dell.png and b/png/dell.png differ diff --git a/png/deluge.png b/png/deluge.png index 23a0972a..6cd40be7 100644 Binary files a/png/deluge.png and b/png/deluge.png differ diff --git a/png/deno-light.png b/png/deno-light.png index d02bf53c..0d7a102d 100644 Binary files a/png/deno-light.png and b/png/deno-light.png differ diff --git a/png/deno.png b/png/deno.png index 08d1af8c..2b2bb3be 100644 Binary files a/png/deno.png and b/png/deno.png differ diff --git a/png/denon-light.png b/png/denon-light.png index 08398208..f03720ec 100644 Binary files a/png/denon-light.png and b/png/denon-light.png differ diff --git a/png/denon.png b/png/denon.png index 4e656240..b2e10a96 100644 Binary files a/png/denon.png and b/png/denon.png differ diff --git a/png/deployarr.png b/png/deployarr.png index 8daf93fb..f5a3d695 100644 Binary files a/png/deployarr.png and b/png/deployarr.png differ diff --git a/png/develancacheui.png b/png/develancacheui.png deleted file mode 100644 index d7256d52..00000000 Binary files a/png/develancacheui.png and /dev/null differ diff --git a/png/devtooly-light.png b/png/devtooly-light.png deleted file mode 100644 index 3270c97e..00000000 Binary files a/png/devtooly-light.png and /dev/null differ diff --git a/png/devtooly.png b/png/devtooly.png deleted file mode 100644 index fc223560..00000000 Binary files a/png/devtooly.png and /dev/null differ diff --git a/png/diagrams-net.png b/png/diagrams-net.png index 20348a14..9e4fc5d5 100644 Binary files a/png/diagrams-net.png and b/png/diagrams-net.png differ diff --git a/png/dietpi.png b/png/dietpi.png deleted file mode 100644 index 990adea2..00000000 Binary files a/png/dietpi.png and /dev/null differ diff --git a/png/digital-ocean.png b/png/digital-ocean.png index 72bbbcae..f032092c 100644 Binary files a/png/digital-ocean.png and b/png/digital-ocean.png differ diff --git a/png/dillinger-light.png b/png/dillinger-light.png new file mode 100644 index 00000000..30463ea0 Binary files /dev/null and b/png/dillinger-light.png differ diff --git a/png/dillinger.png b/png/dillinger.png index 2f3ff822..fcc750bd 100644 Binary files a/png/dillinger.png and b/png/dillinger.png differ diff --git a/png/dim-light.png b/png/dim-light.png deleted file mode 100644 index 2e68208e..00000000 Binary files a/png/dim-light.png and /dev/null differ diff --git a/png/dim.png b/png/dim.png deleted file mode 100644 index a2f2eb5e..00000000 Binary files a/png/dim.png and /dev/null differ diff --git a/png/directadmin.png b/png/directadmin.png index 92fdb378..272541f7 100644 Binary files a/png/directadmin.png and b/png/directadmin.png differ diff --git a/png/directus.png b/png/directus.png index bcf820fd..f09ba5a8 100644 Binary files a/png/directus.png and b/png/directus.png differ diff --git a/png/discord.png b/png/discord.png index ac95e0e7..09330527 100644 Binary files a/png/discord.png and b/png/discord.png differ diff --git a/png/discourse-light.png b/png/discourse-light.png new file mode 100644 index 00000000..04cc6eb8 Binary files /dev/null and b/png/discourse-light.png differ diff --git a/png/discourse.png b/png/discourse.png index 4c380659..d9562fb3 100644 Binary files a/png/discourse.png and b/png/discourse.png differ diff --git a/png/diskover.png b/png/diskover.png deleted file mode 100644 index 09f014a0..00000000 Binary files a/png/diskover.png and /dev/null differ diff --git a/png/disney-plus-light.png b/png/disney-plus-light.png deleted file mode 100644 index 9334194d..00000000 Binary files a/png/disney-plus-light.png and /dev/null differ diff --git a/png/disney-plus.png b/png/disney-plus.png index f6973142..c116e446 100644 Binary files a/png/disney-plus.png and b/png/disney-plus.png differ diff --git a/png/diun.png b/png/diun.png deleted file mode 100644 index 4706100d..00000000 Binary files a/png/diun.png and /dev/null differ diff --git a/png/diyhue.png b/png/diyhue.png deleted file mode 100644 index 45b7bc21..00000000 Binary files a/png/diyhue.png and /dev/null differ diff --git a/png/dlna.png b/png/dlna.png index a13489ce..ef2fc75d 100644 Binary files a/png/dlna.png and b/png/dlna.png differ diff --git a/png/docassemble-light.png b/png/docassemble-light.png new file mode 100644 index 00000000..49674470 Binary files /dev/null and b/png/docassemble-light.png differ diff --git a/png/docassemble.png b/png/docassemble.png new file mode 100644 index 00000000..6bf10c34 Binary files /dev/null and b/png/docassemble.png differ diff --git a/png/docker-amd.png b/png/docker-amd.png deleted file mode 100644 index a17cef01..00000000 Binary files a/png/docker-amd.png and /dev/null differ diff --git a/png/docker-compose.png b/png/docker-compose.png deleted file mode 100644 index 9c18f186..00000000 Binary files a/png/docker-compose.png and /dev/null differ diff --git a/png/docker-engine.png b/png/docker-engine.png new file mode 100644 index 00000000..a22899b5 Binary files /dev/null and b/png/docker-engine.png differ diff --git a/png/docker-gc.png b/png/docker-gc.png deleted file mode 100644 index 55cddb5c..00000000 Binary files a/png/docker-gc.png and /dev/null differ diff --git a/png/docker-mailserver-light.png b/png/docker-mailserver-light.png new file mode 100644 index 00000000..316c474c Binary files /dev/null and b/png/docker-mailserver-light.png differ diff --git a/png/docker-mailserver.png b/png/docker-mailserver.png index d3851116..a5b0b271 100644 Binary files a/png/docker-mailserver.png and b/png/docker-mailserver.png differ diff --git a/png/docker-moby.png b/png/docker-moby.png index c38aa910..5af85fe8 100644 Binary files a/png/docker-moby.png and b/png/docker-moby.png differ diff --git a/png/docker-volume-backup.png b/png/docker-volume-backup.png new file mode 100644 index 00000000..a65da668 Binary files /dev/null and b/png/docker-volume-backup.png differ diff --git a/png/docker.png b/png/docker.png index ff34a161..a22899b5 100644 Binary files a/png/docker.png and b/png/docker.png differ diff --git a/png/dockge-light.png b/png/dockge-light.png deleted file mode 100644 index e03f2975..00000000 Binary files a/png/dockge-light.png and /dev/null differ diff --git a/png/dockge.png b/png/dockge.png index cacf106e..36420e03 100644 Binary files a/png/dockge.png and b/png/dockge.png differ diff --git a/png/docking-station.png b/png/docking-station.png new file mode 100644 index 00000000..1b6647af Binary files /dev/null and b/png/docking-station.png differ diff --git a/png/dockstarter.png b/png/dockstarter.png deleted file mode 100644 index b81ad756..00000000 Binary files a/png/dockstarter.png and /dev/null differ diff --git a/png/docsify.png b/png/docsify.png index 75483792..5961d0c1 100644 Binary files a/png/docsify.png and b/png/docsify.png differ diff --git a/png/docspell.png b/png/docspell.png index d427d428..3c9b32d5 100644 Binary files a/png/docspell.png and b/png/docspell.png differ diff --git a/png/documenso.png b/png/documenso.png new file mode 100644 index 00000000..e59f3542 Binary files /dev/null and b/png/documenso.png differ diff --git a/png/docusaurus.png b/png/docusaurus.png index b6bdcc08..2d7e0d3e 100644 Binary files a/png/docusaurus.png and b/png/docusaurus.png differ diff --git a/png/docuseal.png b/png/docuseal.png index b868c849..a20f86b5 100644 Binary files a/png/docuseal.png and b/png/docuseal.png differ diff --git a/png/dogpile.png b/png/dogpile.png deleted file mode 100644 index 89cd04e1..00000000 Binary files a/png/dogpile.png and /dev/null differ diff --git a/png/dokemon.png b/png/dokemon.png new file mode 100644 index 00000000..ff8ea910 Binary files /dev/null and b/png/dokemon.png differ diff --git a/png/dokuwiki.png b/png/dokuwiki.png index 1a238b09..fd75e809 100644 Binary files a/png/dokuwiki.png and b/png/dokuwiki.png differ diff --git a/png/dolibarr.png b/png/dolibarr.png deleted file mode 100644 index 09858c14..00000000 Binary files a/png/dolibarr.png and /dev/null differ diff --git a/png/dolphin.png b/png/dolphin.png deleted file mode 100644 index c0e5375b..00000000 Binary files a/png/dolphin.png and /dev/null differ diff --git a/png/domainmod.png b/png/domainmod.png deleted file mode 100644 index 29290f29..00000000 Binary files a/png/domainmod.png and /dev/null differ diff --git a/png/domoticz.png b/png/domoticz.png deleted file mode 100644 index d618b6e8..00000000 Binary files a/png/domoticz.png and /dev/null differ diff --git a/png/dopplertask.png b/png/dopplertask.png deleted file mode 100644 index 3bc9ab62..00000000 Binary files a/png/dopplertask.png and /dev/null differ diff --git a/png/double-take-dark.png b/png/double-take-dark.png new file mode 100644 index 00000000..8bb336e6 Binary files /dev/null and b/png/double-take-dark.png differ diff --git a/png/double-take.png b/png/double-take.png index dda25011..b759f798 100644 Binary files a/png/double-take.png and b/png/double-take.png differ diff --git a/png/dovecot.png b/png/dovecot.png index cfef009e..9ad2d9ec 100644 Binary files a/png/dovecot.png and b/png/dovecot.png differ diff --git a/png/dozzle.png b/png/dozzle.png index 44687dcc..9bbb895f 100644 Binary files a/png/dozzle.png and b/png/dozzle.png differ diff --git a/png/draw-io.png b/png/draw-io.png index 20348a14..165a74a6 100644 Binary files a/png/draw-io.png and b/png/draw-io.png differ diff --git a/png/draw.png b/png/draw.png deleted file mode 100644 index 20348a14..00000000 Binary files a/png/draw.png and /dev/null differ diff --git a/png/draytek.png b/png/draytek.png index 9f6ecdb2..c2b85e4d 100644 Binary files a/png/draytek.png and b/png/draytek.png differ diff --git a/png/drone.png b/png/drone.png deleted file mode 100644 index e5807833..00000000 Binary files a/png/drone.png and /dev/null differ diff --git a/png/dropbox.png b/png/dropbox.png new file mode 100644 index 00000000..2248879d Binary files /dev/null and b/png/dropbox.png differ diff --git a/png/dropout-light.png b/png/dropout-light.png new file mode 100644 index 00000000..fb1ea704 Binary files /dev/null and b/png/dropout-light.png differ diff --git a/png/dropout.png b/png/dropout.png new file mode 100644 index 00000000..f4c1364c Binary files /dev/null and b/png/dropout.png differ diff --git a/png/droppy-dark.png b/png/droppy-dark.png new file mode 100644 index 00000000..4705719f Binary files /dev/null and b/png/droppy-dark.png differ diff --git a/png/droppy.png b/png/droppy.png index 72afa21c..ced3b6e7 100644 Binary files a/png/droppy.png and b/png/droppy.png differ diff --git a/png/dub-light.png b/png/dub-light.png new file mode 100644 index 00000000..181e6e25 Binary files /dev/null and b/png/dub-light.png differ diff --git a/png/dub.png b/png/dub.png new file mode 100644 index 00000000..1bc4433d Binary files /dev/null and b/png/dub.png differ diff --git a/png/duckdns-light.png b/png/duckdns-light.png new file mode 100644 index 00000000..1abcb9e6 Binary files /dev/null and b/png/duckdns-light.png differ diff --git a/png/duckdns.png b/png/duckdns.png index b25e922d..cdeb759f 100644 Binary files a/png/duckdns.png and b/png/duckdns.png differ diff --git a/png/duckduckgo.png b/png/duckduckgo.png index ff494ffe..2d9025ff 100644 Binary files a/png/duckduckgo.png and b/png/duckduckgo.png differ diff --git a/png/duo.png b/png/duo.png index cff538d2..d921191b 100644 Binary files a/png/duo.png and b/png/duo.png differ diff --git a/png/duplicacy.png b/png/duplicacy.png deleted file mode 100644 index 718491c5..00000000 Binary files a/png/duplicacy.png and /dev/null differ diff --git a/png/duplicati.png b/png/duplicati.png index fa5ef33f..7ea23017 100644 Binary files a/png/duplicati.png and b/png/duplicati.png differ diff --git a/png/easy-gate-light.png b/png/easy-gate-light.png index 22335b87..f015a2a1 100644 Binary files a/png/easy-gate-light.png and b/png/easy-gate-light.png differ diff --git a/png/easy-gate.png b/png/easy-gate.png index 4793bf3c..35234994 100644 Binary files a/png/easy-gate.png and b/png/easy-gate.png differ diff --git a/png/ebay.png b/png/ebay.png index 746399bd..a2af5da1 100644 Binary files a/png/ebay.png and b/png/ebay.png differ diff --git a/png/eblocker.png b/png/eblocker.png index 20523eaf..d2c71b49 100644 Binary files a/png/eblocker.png and b/png/eblocker.png differ diff --git a/png/eclipse-mosquitto.png b/png/eclipse-mosquitto.png deleted file mode 100644 index d5df267b..00000000 Binary files a/png/eclipse-mosquitto.png and /dev/null differ diff --git a/png/edge-dev.png b/png/edge-dev.png index e0cc5882..e8b2a300 100644 Binary files a/png/edge-dev.png and b/png/edge-dev.png differ diff --git a/png/edge.png b/png/edge.png index 60660f8d..f2867061 100644 Binary files a/png/edge.png and b/png/edge.png differ diff --git a/png/edgeos-light.png b/png/edgeos-light.png deleted file mode 100644 index 4ab4c9af..00000000 Binary files a/png/edgeos-light.png and /dev/null differ diff --git a/png/edgeos.png b/png/edgeos.png deleted file mode 100644 index a689fd4d..00000000 Binary files a/png/edgeos.png and /dev/null differ diff --git a/png/elastic-beats.png b/png/elastic-beats.png index f688578c..ef58541e 100644 Binary files a/png/elastic-beats.png and b/png/elastic-beats.png differ diff --git a/png/elastic-kibana.png b/png/elastic-kibana.png index 658569e8..36ee9ca7 100644 Binary files a/png/elastic-kibana.png and b/png/elastic-kibana.png differ diff --git a/png/elastic-logstash.png b/png/elastic-logstash.png index c0285cc0..a42eab76 100644 Binary files a/png/elastic-logstash.png and b/png/elastic-logstash.png differ diff --git a/png/elastic.png b/png/elastic.png index 2c3160ad..d18d3b35 100644 Binary files a/png/elastic.png and b/png/elastic.png differ diff --git a/png/elasticsearch.png b/png/elasticsearch.png index 2c3160ad..d18d3b35 100644 Binary files a/png/elasticsearch.png and b/png/elasticsearch.png differ diff --git a/png/electron.png b/png/electron.png index f0ee6422..1880262f 100644 Binary files a/png/electron.png and b/png/electron.png differ diff --git a/png/electronic-arts.png b/png/electronic-arts.png new file mode 100644 index 00000000..4aa127c9 Binary files /dev/null and b/png/electronic-arts.png differ diff --git a/png/element.png b/png/element.png index af61ec93..7e60d327 100644 Binary files a/png/element.png and b/png/element.png differ diff --git a/png/eleventy-light.png b/png/eleventy-light.png new file mode 100644 index 00000000..78c64e43 Binary files /dev/null and b/png/eleventy-light.png differ diff --git a/png/eleventy.png b/png/eleventy.png new file mode 100644 index 00000000..d2ad4f1e Binary files /dev/null and b/png/eleventy.png differ diff --git a/png/elysian.png b/png/elysian.png new file mode 100644 index 00000000..e69382d3 Binary files /dev/null and b/png/elysian.png differ diff --git a/png/emacs.png b/png/emacs.png index b48f4000..f0f86595 100644 Binary files a/png/emacs.png and b/png/emacs.png differ diff --git a/png/emby.png b/png/emby.png index 34065491..ad7a8cd9 100644 Binary files a/png/emby.png and b/png/emby.png differ diff --git a/png/embystat.png b/png/embystat.png deleted file mode 100644 index 5a9a8e72..00000000 Binary files a/png/embystat.png and /dev/null differ diff --git a/png/emq-light.png b/png/emq-light.png index 339091e5..5a13757d 100644 Binary files a/png/emq-light.png and b/png/emq-light.png differ diff --git a/png/emq.png b/png/emq.png index 31724045..36fd33ba 100644 Binary files a/png/emq.png and b/png/emq.png differ diff --git a/png/emqx.png b/png/emqx.png index d1b67ac9..222496d9 100644 Binary files a/png/emqx.png and b/png/emqx.png differ diff --git a/png/emulatorjs.png b/png/emulatorjs.png index 21764117..f9f71a78 100644 Binary files a/png/emulatorjs.png and b/png/emulatorjs.png differ diff --git a/png/enbizcard.png b/png/enbizcard.png index 087ea3c6..dc18a978 100644 Binary files a/png/enbizcard.png and b/png/enbizcard.png differ diff --git a/png/enclosed-light.png b/png/enclosed-light.png new file mode 100644 index 00000000..9a05cef7 Binary files /dev/null and b/png/enclosed-light.png differ diff --git a/png/enclosed.png b/png/enclosed.png new file mode 100644 index 00000000..01f79384 Binary files /dev/null and b/png/enclosed.png differ diff --git a/png/endless-light.png b/png/endless-light.png new file mode 100644 index 00000000..875afa37 Binary files /dev/null and b/png/endless-light.png differ diff --git a/png/endless.png b/png/endless.png new file mode 100644 index 00000000..2b86d356 Binary files /dev/null and b/png/endless.png differ diff --git a/png/endurain.png b/png/endurain.png new file mode 100644 index 00000000..1827f22c Binary files /dev/null and b/png/endurain.png differ diff --git a/png/epic-games-light.png b/png/epic-games-light.png new file mode 100644 index 00000000..5fd7085e Binary files /dev/null and b/png/epic-games-light.png differ diff --git a/png/epic-games.png b/png/epic-games.png new file mode 100644 index 00000000..6642d8c6 Binary files /dev/null and b/png/epic-games.png differ diff --git a/png/epson-iprint.png b/png/epson-iprint.png deleted file mode 100644 index 1e1f050e..00000000 Binary files a/png/epson-iprint.png and /dev/null differ diff --git a/png/ersatztv.png b/png/ersatztv.png deleted file mode 100644 index ed7fc902..00000000 Binary files a/png/ersatztv.png and /dev/null differ diff --git a/png/erste-george.png b/png/erste-george.png index 68cb2c18..22345728 100644 Binary files a/png/erste-george.png and b/png/erste-george.png differ diff --git a/png/erste.png b/png/erste.png index adbb5767..9e59cb4b 100644 Binary files a/png/erste.png and b/png/erste.png differ diff --git a/png/esphome-alt-light.png b/png/esphome-alt-light.png new file mode 100644 index 00000000..44765adf Binary files /dev/null and b/png/esphome-alt-light.png differ diff --git a/png/esphome-alt.png b/png/esphome-alt.png index e0589d73..ff109185 100644 Binary files a/png/esphome-alt.png and b/png/esphome-alt.png differ diff --git a/png/esphome-light.png b/png/esphome-light.png new file mode 100644 index 00000000..2938fb0b Binary files /dev/null and b/png/esphome-light.png differ diff --git a/png/esphome.png b/png/esphome.png index 373bd1c1..96e2e1a4 100644 Binary files a/png/esphome.png and b/png/esphome.png differ diff --git a/png/espressif.png b/png/espressif.png index 503f87b7..cac26815 100644 Binary files a/png/espressif.png and b/png/espressif.png differ diff --git a/png/etcd.png b/png/etcd.png index 1b21d964..6bcd5d6f 100644 Binary files a/png/etcd.png and b/png/etcd.png differ diff --git a/png/etesync.png b/png/etesync.png index b5aa2a14..8c656996 100644 Binary files a/png/etesync.png and b/png/etesync.png differ diff --git a/png/ethereum.png b/png/ethereum.png index 78e72524..3ae76497 100644 Binary files a/png/ethereum.png and b/png/ethereum.png differ diff --git a/png/etherpad.png b/png/etherpad.png index 7b1fbcc4..89e914de 100644 Binary files a/png/etherpad.png and b/png/etherpad.png differ diff --git a/png/evcc.png b/png/evcc.png new file mode 100644 index 00000000..51d7c387 Binary files /dev/null and b/png/evcc.png differ diff --git a/png/evebox.png b/png/evebox.png deleted file mode 100644 index b95b491b..00000000 Binary files a/png/evebox.png and /dev/null differ diff --git a/png/eweka.png b/png/eweka.png deleted file mode 100644 index ec49957c..00000000 Binary files a/png/eweka.png and /dev/null differ diff --git a/png/excalidraw-light.png b/png/excalidraw-light.png deleted file mode 100644 index f472d7f6..00000000 Binary files a/png/excalidraw-light.png and /dev/null differ diff --git a/png/excalidraw.png b/png/excalidraw.png index 58b29dd8..aa999142 100644 Binary files a/png/excalidraw.png and b/png/excalidraw.png differ diff --git a/png/f-droid.png b/png/f-droid.png index 8e7b3eef..ad6332fe 100644 Binary files a/png/f-droid.png and b/png/f-droid.png differ diff --git a/png/f5-networks.png b/png/f5-networks.png deleted file mode 100644 index 894fd493..00000000 Binary files a/png/f5-networks.png and /dev/null differ diff --git a/png/facebook-messenger.png b/png/facebook-messenger.png index 46abcd01..63085cb1 100644 Binary files a/png/facebook-messenger.png and b/png/facebook-messenger.png differ diff --git a/png/facebook.png b/png/facebook.png index d57c0ec4..19d4d09f 100644 Binary files a/png/facebook.png and b/png/facebook.png differ diff --git a/png/falcon-christmas.png b/png/falcon-christmas.png deleted file mode 100644 index c5041387..00000000 Binary files a/png/falcon-christmas.png and /dev/null differ diff --git a/png/falcon-player.png b/png/falcon-player.png deleted file mode 100644 index c5041387..00000000 Binary files a/png/falcon-player.png and /dev/null differ diff --git a/png/fast-com-light.png b/png/fast-com-light.png index 052ed32b..0b85af0a 100644 Binary files a/png/fast-com-light.png and b/png/fast-com-light.png differ diff --git a/png/fast-com.png b/png/fast-com.png index a576bba9..132c212f 100644 Binary files a/png/fast-com.png and b/png/fast-com.png differ diff --git a/png/fasten-health.png b/png/fasten-health.png new file mode 100644 index 00000000..57e12b91 Binary files /dev/null and b/png/fasten-health.png differ diff --git a/png/fastmail.png b/png/fastmail.png index 8d7f61b3..d0e64580 100644 Binary files a/png/fastmail.png and b/png/fastmail.png differ diff --git a/png/fedora-alt.png b/png/fedora-alt.png index 31b36353..38ac85b0 100644 Binary files a/png/fedora-alt.png and b/png/fedora-alt.png differ diff --git a/png/fedora.png b/png/fedora.png index 80de32b7..bac7e263 100644 Binary files a/png/fedora.png and b/png/fedora.png differ diff --git a/png/feedbase-light.png b/png/feedbase-light.png new file mode 100644 index 00000000..4a130bfe Binary files /dev/null and b/png/feedbase-light.png differ diff --git a/png/feedbase.png b/png/feedbase.png new file mode 100644 index 00000000..016586e9 Binary files /dev/null and b/png/feedbase.png differ diff --git a/png/feedbin-light.png b/png/feedbin-light.png new file mode 100644 index 00000000..41f1759b Binary files /dev/null and b/png/feedbin-light.png differ diff --git a/png/feedbin.png b/png/feedbin.png new file mode 100644 index 00000000..9d2ddaa4 Binary files /dev/null and b/png/feedbin.png differ diff --git a/png/feedly.png b/png/feedly.png index 3146ec96..9ea59e93 100644 Binary files a/png/feedly.png and b/png/feedly.png differ diff --git a/png/feedlynx-light.png b/png/feedlynx-light.png new file mode 100644 index 00000000..24c3df63 Binary files /dev/null and b/png/feedlynx-light.png differ diff --git a/png/feedlynx.png b/png/feedlynx.png new file mode 100644 index 00000000..7c24c930 Binary files /dev/null and b/png/feedlynx.png differ diff --git a/png/feishin.png b/png/feishin.png deleted file mode 100644 index 5fe967eb..00000000 Binary files a/png/feishin.png and /dev/null differ diff --git a/png/fenrus-light.png b/png/fenrus-light.png deleted file mode 100644 index 793ff210..00000000 Binary files a/png/fenrus-light.png and /dev/null differ diff --git a/png/fenrus.png b/png/fenrus.png index e19bb116..692f7f33 100644 Binary files a/png/fenrus.png and b/png/fenrus.png differ diff --git a/png/ferdi.png b/png/ferdi.png deleted file mode 100644 index 8f230f97..00000000 Binary files a/png/ferdi.png and /dev/null differ diff --git a/png/ferdium.png b/png/ferdium.png index 225833bc..9fdbac49 100644 Binary files a/png/ferdium.png and b/png/ferdium.png differ diff --git a/png/fermentrack.png b/png/fermentrack.png deleted file mode 100644 index 972f1f34..00000000 Binary files a/png/fermentrack.png and /dev/null differ diff --git a/png/ferretdb-white.png b/png/ferretdb-white.png deleted file mode 100644 index 12103976..00000000 Binary files a/png/ferretdb-white.png and /dev/null differ diff --git a/png/ferretdb.png b/png/ferretdb.png index b5060d01..e07eb889 100644 Binary files a/png/ferretdb.png and b/png/ferretdb.png differ diff --git a/png/fider.png b/png/fider.png new file mode 100644 index 00000000..c0412e8d Binary files /dev/null and b/png/fider.png differ diff --git a/png/filebot.png b/png/filebot.png index ff91e12c..c41a49ce 100644 Binary files a/png/filebot.png and b/png/filebot.png differ diff --git a/png/filebrowser.png b/png/filebrowser.png index 7e54287d..0c612702 100644 Binary files a/png/filebrowser.png and b/png/filebrowser.png differ diff --git a/png/filecloud-light.png b/png/filecloud-light.png deleted file mode 100644 index ed343a92..00000000 Binary files a/png/filecloud-light.png and /dev/null differ diff --git a/png/filecloud.png b/png/filecloud.png index 64e5c2b7..7505165f 100644 Binary files a/png/filecloud.png and b/png/filecloud.png differ diff --git a/png/fileflows.png b/png/fileflows.png index a3b64f03..632464a7 100644 Binary files a/png/fileflows.png and b/png/fileflows.png differ diff --git a/png/filegator.png b/png/filegator.png index 2b06e2ae..9ea1584d 100644 Binary files a/png/filegator.png and b/png/filegator.png differ diff --git a/png/filepizza.png b/png/filepizza.png deleted file mode 100644 index 7fe6305d..00000000 Binary files a/png/filepizza.png and /dev/null differ diff --git a/png/filerun.png b/png/filerun.png index 6362493c..a2db5199 100644 Binary files a/png/filerun.png and b/png/filerun.png differ diff --git a/png/files.png b/png/files.png index af38d9af..172bff2d 100644 Binary files a/png/files.png and b/png/files.png differ diff --git a/png/filestash.png b/png/filestash.png new file mode 100644 index 00000000..0d3c9ca3 Binary files /dev/null and b/png/filestash.png differ diff --git a/png/filezilla.png b/png/filezilla.png index b88e9c49..63a51e2c 100644 Binary files a/png/filezilla.png and b/png/filezilla.png differ diff --git a/png/finamp-dark.png b/png/finamp-dark.png deleted file mode 100644 index 9ab431fb..00000000 Binary files a/png/finamp-dark.png and /dev/null differ diff --git a/png/finamp-light.png b/png/finamp-light.png deleted file mode 100644 index 765fee5a..00000000 Binary files a/png/finamp-light.png and /dev/null differ diff --git a/png/finamp.png b/png/finamp.png index 4ce991fa..c137641c 100644 Binary files a/png/finamp.png and b/png/finamp.png differ diff --git a/png/findroid-dark.png b/png/findroid-dark.png deleted file mode 100644 index 6f14224a..00000000 Binary files a/png/findroid-dark.png and /dev/null differ diff --git a/png/findroid-light.png b/png/findroid-light.png deleted file mode 100644 index 7b712e25..00000000 Binary files a/png/findroid-light.png and /dev/null differ diff --git a/png/findroid.png b/png/findroid.png index ecf04c8a..d2df7f65 100644 Binary files a/png/findroid.png and b/png/findroid.png differ diff --git a/png/fios-light.png b/png/fios-light.png index f6185fee..ffc1786d 100644 Binary files a/png/fios-light.png and b/png/fios-light.png differ diff --git a/png/fios.png b/png/fios.png index 5111ebac..39d354c5 100644 Binary files a/png/fios.png and b/png/fios.png differ diff --git a/png/firebase.png b/png/firebase.png index 79ca47c1..7c317758 100644 Binary files a/png/firebase.png and b/png/firebase.png differ diff --git a/png/firefly-iii.png b/png/firefly-iii.png new file mode 100644 index 00000000..6abbae50 Binary files /dev/null and b/png/firefly-iii.png differ diff --git a/png/firefly.png b/png/firefly.png index 51f89a2b..6abbae50 100644 Binary files a/png/firefly.png and b/png/firefly.png differ diff --git a/png/firefox-beta.png b/png/firefox-beta.png index 629fdf5a..c8060d9c 100644 Binary files a/png/firefox-beta.png and b/png/firefox-beta.png differ diff --git a/png/firefox-developer-edition.png b/png/firefox-developer-edition.png index a580550f..07b07e9a 100644 Binary files a/png/firefox-developer-edition.png and b/png/firefox-developer-edition.png differ diff --git a/png/firefox-lite.png b/png/firefox-lite.png index ddef7761..550bf84b 100644 Binary files a/png/firefox-lite.png and b/png/firefox-lite.png differ diff --git a/png/firefox-nightly.png b/png/firefox-nightly.png index 8b73982e..d255189f 100644 Binary files a/png/firefox-nightly.png and b/png/firefox-nightly.png differ diff --git a/png/firefox-reality.png b/png/firefox-reality.png index a548e40f..2d3b2060 100644 Binary files a/png/firefox-reality.png and b/png/firefox-reality.png differ diff --git a/png/firefox-send.png b/png/firefox-send.png index e57083f3..e957f668 100644 Binary files a/png/firefox-send.png and b/png/firefox-send.png differ diff --git a/png/firefox.png b/png/firefox.png index 6d182b99..d22ad177 100644 Binary files a/png/firefox.png and b/png/firefox.png differ diff --git a/png/fireshare.png b/png/fireshare.png deleted file mode 100644 index 14a1438b..00000000 Binary files a/png/fireshare.png and /dev/null differ diff --git a/png/firewalla.png b/png/firewalla.png index 3814f116..d8139aeb 100644 Binary files a/png/firewalla.png and b/png/firewalla.png differ diff --git a/png/fittrackee.png b/png/fittrackee.png new file mode 100644 index 00000000..78664344 Binary files /dev/null and b/png/fittrackee.png differ diff --git a/png/fladder.png b/png/fladder.png new file mode 100644 index 00000000..9196fef9 Binary files /dev/null and b/png/fladder.png differ diff --git a/png/flame.png b/png/flame.png deleted file mode 100644 index 473084e6..00000000 Binary files a/png/flame.png and /dev/null differ diff --git a/png/flaresolverr.png b/png/flaresolverr.png index 26d75d23..999fe4d7 100644 Binary files a/png/flaresolverr.png and b/png/flaresolverr.png differ diff --git a/png/flarum.png b/png/flarum.png index 10c06d4d..589086fb 100644 Binary files a/png/flarum.png and b/png/flarum.png differ diff --git a/png/flat-notes.png b/png/flat-notes.png deleted file mode 100644 index 7f81fb80..00000000 Binary files a/png/flat-notes.png and /dev/null differ diff --git a/png/flathub.png b/png/flathub.png index bced00ee..401ac095 100644 Binary files a/png/flathub.png and b/png/flathub.png differ diff --git a/png/flatnotes.png b/png/flatnotes.png new file mode 100644 index 00000000..e299130f Binary files /dev/null and b/png/flatnotes.png differ diff --git a/png/flatpak.png b/png/flatpak.png index 76a983e4..b00f389a 100644 Binary files a/png/flatpak.png and b/png/flatpak.png differ diff --git a/png/flexget.png b/png/flexget.png deleted file mode 100644 index b3d66544..00000000 Binary files a/png/flexget.png and /dev/null differ diff --git a/png/flightaware.png b/png/flightaware.png deleted file mode 100644 index f1e87c24..00000000 Binary files a/png/flightaware.png and /dev/null differ diff --git a/png/flightradar24-light.png b/png/flightradar24-light.png new file mode 100644 index 00000000..156f1ec4 Binary files /dev/null and b/png/flightradar24-light.png differ diff --git a/png/flightradar24.png b/png/flightradar24.png index 1f49b89c..6e37f8b3 100644 Binary files a/png/flightradar24.png and b/png/flightradar24.png differ diff --git a/png/flogo.png b/png/flogo.png deleted file mode 100644 index 399ceaf2..00000000 Binary files a/png/flogo.png and /dev/null differ diff --git a/png/flood.png b/png/flood.png index 3e9dfc80..87af5f3a 100644 Binary files a/png/flood.png and b/png/flood.png differ diff --git a/png/fluffychat-dark.png b/png/fluffychat-dark.png new file mode 100644 index 00000000..3804c21b Binary files /dev/null and b/png/fluffychat-dark.png differ diff --git a/png/fluffychat.png b/png/fluffychat.png index c602438a..b8a030ed 100644 Binary files a/png/fluffychat.png and b/png/fluffychat.png differ diff --git a/png/fluidd.png b/png/fluidd.png index 1f27e48d..aa0cbd85 100644 Binary files a/png/fluidd.png and b/png/fluidd.png differ diff --git a/png/flux-cd.png b/png/flux-cd.png index 702ddd29..da23de31 100644 Binary files a/png/flux-cd.png and b/png/flux-cd.png differ diff --git a/png/fly-io.png b/png/fly-io.png index 7654348b..99ae257a 100644 Binary files a/png/fly-io.png and b/png/fly-io.png differ diff --git a/png/focalboard.png b/png/focalboard.png index 6736b67f..3348ff1d 100644 Binary files a/png/focalboard.png and b/png/focalboard.png differ diff --git a/png/foldingathome.png b/png/foldingathome.png index 4df07476..7fa1b235 100644 Binary files a/png/foldingathome.png and b/png/foldingathome.png differ diff --git a/png/fontawesome.png b/png/fontawesome.png index bb847675..0fe9fc5a 100644 Binary files a/png/fontawesome.png and b/png/fontawesome.png differ diff --git a/png/forgejo.png b/png/forgejo.png index 387b27f9..e5598b92 100644 Binary files a/png/forgejo.png and b/png/forgejo.png differ diff --git a/png/forte-light.png b/png/forte-light.png new file mode 100644 index 00000000..08422df1 Binary files /dev/null and b/png/forte-light.png differ diff --git a/png/forte.png b/png/forte.png new file mode 100644 index 00000000..1c1a6842 Binary files /dev/null and b/png/forte.png differ diff --git a/png/fortinet.png b/png/fortinet.png index ca9f7546..09af2e01 100644 Binary files a/png/fortinet.png and b/png/fortinet.png differ diff --git a/png/foscam.png b/png/foscam.png deleted file mode 100644 index 1b68b0a9..00000000 Binary files a/png/foscam.png and /dev/null differ diff --git a/png/fossil.png b/png/fossil.png index 927d5659..b710c277 100644 Binary files a/png/fossil.png and b/png/fossil.png differ diff --git a/png/foundry-vtt.png b/png/foundry-vtt.png deleted file mode 100644 index 11795fe3..00000000 Binary files a/png/foundry-vtt.png and /dev/null differ diff --git a/png/franz.png b/png/franz.png index 1e35ec60..142e889e 100644 Binary files a/png/franz.png and b/png/franz.png differ diff --git a/png/freebox-delta.png b/png/freebox-delta.png deleted file mode 100644 index 94e24374..00000000 Binary files a/png/freebox-delta.png and /dev/null differ diff --git a/png/freebox-pop.png b/png/freebox-pop.png deleted file mode 100644 index e2a4b96f..00000000 Binary files a/png/freebox-pop.png and /dev/null differ diff --git a/png/freebox-revolution.png b/png/freebox-revolution.png deleted file mode 100644 index bc65b7fd..00000000 Binary files a/png/freebox-revolution.png and /dev/null differ diff --git a/png/freedombox.png b/png/freedombox.png index 6b26efcc..d56ac4a7 100644 Binary files a/png/freedombox.png and b/png/freedombox.png differ diff --git a/png/freeipa.png b/png/freeipa.png index 947278be..489e4d1a 100644 Binary files a/png/freeipa.png and b/png/freeipa.png differ diff --git a/png/freenas-light.png b/png/freenas-light.png deleted file mode 100644 index 49e93428..00000000 Binary files a/png/freenas-light.png and /dev/null differ diff --git a/png/freenas.png b/png/freenas.png index 51ee445f..6e412a39 100644 Binary files a/png/freenas.png and b/png/freenas.png differ diff --git a/png/freenom.png b/png/freenom.png index 75cade91..8c58ddeb 100644 Binary files a/png/freenom.png and b/png/freenom.png differ diff --git a/png/freepbx.png b/png/freepbx.png index 3932e620..a5e4e34f 100644 Binary files a/png/freepbx.png and b/png/freepbx.png differ diff --git a/png/freescout.png b/png/freescout.png deleted file mode 100644 index 27cb8bb5..00000000 Binary files a/png/freescout.png and /dev/null differ diff --git a/png/freshping-dark.png b/png/freshping-dark.png new file mode 100644 index 00000000..9848c0dc Binary files /dev/null and b/png/freshping-dark.png differ diff --git a/png/freshping.png b/png/freshping.png index 6efff533..ec5da460 100644 Binary files a/png/freshping.png and b/png/freshping.png differ diff --git a/png/freshrss.png b/png/freshrss.png index 97ad00a8..b6039741 100644 Binary files a/png/freshrss.png and b/png/freshrss.png differ diff --git a/png/friendica.png b/png/friendica.png index a5bd117d..94d6db32 100644 Binary files a/png/friendica.png and b/png/friendica.png differ diff --git a/png/frigate-light.png b/png/frigate-light.png index 43e1bc81..820f87ad 100644 Binary files a/png/frigate-light.png and b/png/frigate-light.png differ diff --git a/png/frigate.png b/png/frigate.png index ee206eff..a9bd6dc5 100644 Binary files a/png/frigate.png and b/png/frigate.png differ diff --git a/png/fritzbox-light.png b/png/fritzbox-light.png new file mode 100644 index 00000000..6bf59fa7 Binary files /dev/null and b/png/fritzbox-light.png differ diff --git a/png/fritzbox.png b/png/fritzbox.png new file mode 100644 index 00000000..c13a2c7e Binary files /dev/null and b/png/fritzbox.png differ diff --git a/png/fronius.png b/png/fronius.png index c30465e5..d67aaa0c 100644 Binary files a/png/fronius.png and b/png/fronius.png differ diff --git a/png/fulcio.png b/png/fulcio.png index 68734e08..f27396ec 100644 Binary files a/png/fulcio.png and b/png/fulcio.png differ diff --git a/png/funkwhale-light.png b/png/funkwhale-light.png new file mode 100644 index 00000000..e028e42a Binary files /dev/null and b/png/funkwhale-light.png differ diff --git a/png/funkwhale.png b/png/funkwhale.png index 1ea296f7..479d26d8 100644 Binary files a/png/funkwhale.png and b/png/funkwhale.png differ diff --git a/png/fusionauth-light.png b/png/fusionauth-light.png deleted file mode 100644 index 1a0c402c..00000000 Binary files a/png/fusionauth-light.png and /dev/null differ diff --git a/png/fusionauth.png b/png/fusionauth.png index e3726ef9..b8a3cf8b 100644 Binary files a/png/fusionauth.png and b/png/fusionauth.png differ diff --git a/png/fusionpbx.png b/png/fusionpbx.png deleted file mode 100644 index e655183e..00000000 Binary files a/png/fusionpbx.png and /dev/null differ diff --git a/png/gamevault.png b/png/gamevault.png deleted file mode 100644 index a4c5b764..00000000 Binary files a/png/gamevault.png and /dev/null differ diff --git a/png/gameyfin-light.png b/png/gameyfin-light.png deleted file mode 100644 index 2b9a9fb6..00000000 Binary files a/png/gameyfin-light.png and /dev/null differ diff --git a/png/gameyfin.png b/png/gameyfin.png deleted file mode 100644 index 3ca8b5b0..00000000 Binary files a/png/gameyfin.png and /dev/null differ diff --git a/png/gaps.png b/png/gaps.png deleted file mode 100644 index 57ed1ee9..00000000 Binary files a/png/gaps.png and /dev/null differ diff --git a/png/garage.png b/png/garage.png new file mode 100644 index 00000000..80712f49 Binary files /dev/null and b/png/garage.png differ diff --git a/png/gaseous.png b/png/gaseous.png deleted file mode 100644 index 5f8eaba8..00000000 Binary files a/png/gaseous.png and /dev/null differ diff --git a/png/gatsby.png b/png/gatsby.png index 4aa7b0b4..834edbec 100644 Binary files a/png/gatsby.png and b/png/gatsby.png differ diff --git a/png/gatus.png b/png/gatus.png index 27a09d4a..e55e8b2c 100644 Binary files a/png/gatus.png and b/png/gatus.png differ diff --git a/png/gboard.png b/png/gboard.png index 1570cab3..e1c2d9d1 100644 Binary files a/png/gboard.png and b/png/gboard.png differ diff --git a/png/geckoview.png b/png/geckoview.png index 25e621f1..86f6a270 100644 Binary files a/png/geckoview.png and b/png/geckoview.png differ diff --git a/png/gentoo-linux.png b/png/gentoo-linux.png new file mode 100644 index 00000000..712bab0c Binary files /dev/null and b/png/gentoo-linux.png differ diff --git a/png/gentoo.png b/png/gentoo.png deleted file mode 100644 index f03bb1eb..00000000 Binary files a/png/gentoo.png and /dev/null differ diff --git a/png/gerbera.png b/png/gerbera.png index 7509fc99..627e5c4c 100644 Binary files a/png/gerbera.png and b/png/gerbera.png differ diff --git a/png/get-iplayer.png b/png/get-iplayer.png index 24a68f64..fdfab748 100644 Binary files a/png/get-iplayer.png and b/png/get-iplayer.png differ diff --git a/png/ghost-light.png b/png/ghost-light.png deleted file mode 100644 index 3c687df3..00000000 Binary files a/png/ghost-light.png and /dev/null differ diff --git a/png/ghost.png b/png/ghost.png deleted file mode 100644 index 47fc59a8..00000000 Binary files a/png/ghost.png and /dev/null differ diff --git a/png/ghostfolio.png b/png/ghostfolio.png index c054b3d7..f19f518e 100644 Binary files a/png/ghostfolio.png and b/png/ghostfolio.png differ diff --git a/png/gigaset.png b/png/gigaset.png index 6835eedf..5a1719ee 100644 Binary files a/png/gigaset.png and b/png/gigaset.png differ diff --git a/png/gimp.png b/png/gimp.png new file mode 100644 index 00000000..78e3b054 Binary files /dev/null and b/png/gimp.png differ diff --git a/png/git.png b/png/git.png index 07dc0bc0..9f72f860 100644 Binary files a/png/git.png and b/png/git.png differ diff --git a/png/gitbook.png b/png/gitbook.png index f35c9905..bb486697 100644 Binary files a/png/gitbook.png and b/png/gitbook.png differ diff --git a/png/gitea.png b/png/gitea.png index a27a3120..e9807920 100644 Binary files a/png/gitea.png and b/png/gitea.png differ diff --git a/png/gitee.png b/png/gitee.png index e2c20d84..9b0c4616 100644 Binary files a/png/gitee.png and b/png/gitee.png differ diff --git a/png/github-light.png b/png/github-light.png index 2c951a05..d4df6ebf 100644 Binary files a/png/github-light.png and b/png/github-light.png differ diff --git a/png/github.png b/png/github.png index 1fc4c80f..9e0db4c4 100644 Binary files a/png/github.png and b/png/github.png differ diff --git a/png/gitlab.png b/png/gitlab.png index de26ffd3..c733b4ce 100644 Binary files a/png/gitlab.png and b/png/gitlab.png differ diff --git a/png/gitsign.png b/png/gitsign.png index 24a8c792..9f7717ed 100644 Binary files a/png/gitsign.png and b/png/gitsign.png differ diff --git a/png/gladys-assistant.png b/png/gladys-assistant.png index 190579c4..7032bffb 100644 Binary files a/png/gladys-assistant.png and b/png/gladys-assistant.png differ diff --git a/png/glance-light.png b/png/glance-light.png new file mode 100644 index 00000000..bdae33c0 Binary files /dev/null and b/png/glance-light.png differ diff --git a/png/glance.png b/png/glance.png new file mode 100644 index 00000000..2757cd84 Binary files /dev/null and b/png/glance.png differ diff --git a/png/glances-light.png b/png/glances-light.png index fe7bac89..55540a90 100644 Binary files a/png/glances-light.png and b/png/glances-light.png differ diff --git a/png/glances.png b/png/glances.png index e6b1e4e1..695bd7c4 100644 Binary files a/png/glances.png and b/png/glances.png differ diff --git a/png/glpi.png b/png/glpi.png index 54a073e7..2af1c3da 100644 Binary files a/png/glpi.png and b/png/glpi.png differ diff --git a/png/gluetun.png b/png/gluetun.png index fe4b3110..c785372a 100644 Binary files a/png/gluetun.png and b/png/gluetun.png differ diff --git a/png/gmail.png b/png/gmail.png index f5e64c87..4d226601 100644 Binary files a/png/gmail.png and b/png/gmail.png differ diff --git a/png/go.png b/png/go.png index f4e846c2..a1fef74c 100644 Binary files a/png/go.png and b/png/go.png differ diff --git a/png/go2rtc-alt.png b/png/go2rtc-alt.png deleted file mode 100644 index 709b38f0..00000000 Binary files a/png/go2rtc-alt.png and /dev/null differ diff --git a/png/go2rtc.png b/png/go2rtc.png deleted file mode 100644 index 2223626b..00000000 Binary files a/png/go2rtc.png and /dev/null differ diff --git a/png/goaccess-light.png b/png/goaccess-light.png new file mode 100644 index 00000000..0dbf1ace Binary files /dev/null and b/png/goaccess-light.png differ diff --git a/png/goaccess.png b/png/goaccess.png index 3049be16..b79c5e39 100644 Binary files a/png/goaccess.png and b/png/goaccess.png differ diff --git a/png/godaddy-alt.png b/png/godaddy-alt.png index f23911e8..8f02eea4 100644 Binary files a/png/godaddy-alt.png and b/png/godaddy-alt.png differ diff --git a/png/godaddy.png b/png/godaddy.png index 68d112e9..1ecdb461 100644 Binary files a/png/godaddy.png and b/png/godaddy.png differ diff --git a/png/gogs.png b/png/gogs.png deleted file mode 100644 index 28e35265..00000000 Binary files a/png/gogs.png and /dev/null differ diff --git a/png/gollum.png b/png/gollum.png index ed01c954..2c723634 100644 Binary files a/png/gollum.png and b/png/gollum.png differ diff --git a/png/gonic.png b/png/gonic.png deleted file mode 100644 index ff5a2752..00000000 Binary files a/png/gonic.png and /dev/null differ diff --git a/png/goodreads.png b/png/goodreads.png index c92dc217..f4ce97f2 100644 Binary files a/png/goodreads.png and b/png/goodreads.png differ diff --git a/png/google-admin.png b/png/google-admin.png index 33205e2f..079d5bb8 100644 Binary files a/png/google-admin.png and b/png/google-admin.png differ diff --git a/png/google-admob.png b/png/google-admob.png index 24371874..14d985ad 100644 Binary files a/png/google-admob.png and b/png/google-admob.png differ diff --git a/png/google-alerts.png b/png/google-alerts.png index 9a509e46..c6d8d01d 100644 Binary files a/png/google-alerts.png and b/png/google-alerts.png differ diff --git a/png/google-analytics.png b/png/google-analytics.png index a31f5db9..331a5bc4 100644 Binary files a/png/google-analytics.png and b/png/google-analytics.png differ diff --git a/png/google-assistant.png b/png/google-assistant.png index 41b9dfbb..2962774f 100644 Binary files a/png/google-assistant.png and b/png/google-assistant.png differ diff --git a/png/google-calendar.png b/png/google-calendar.png index e3b4822b..89a2f5e7 100644 Binary files a/png/google-calendar.png and b/png/google-calendar.png differ diff --git a/png/google-chat.png b/png/google-chat.png index 3fe6a39f..1c95daaf 100644 Binary files a/png/google-chat.png and b/png/google-chat.png differ diff --git a/png/google-chrome.png b/png/google-chrome.png new file mode 100644 index 00000000..95236af8 Binary files /dev/null and b/png/google-chrome.png differ diff --git a/png/google-classroom.png b/png/google-classroom.png index 995ae9f3..7af7dfd2 100644 Binary files a/png/google-classroom.png and b/png/google-classroom.png differ diff --git a/png/google-cloud-platform.png b/png/google-cloud-platform.png index 3f9e7db4..f7c3508b 100644 Binary files a/png/google-cloud-platform.png and b/png/google-cloud-platform.png differ diff --git a/png/google-cloud-print.png b/png/google-cloud-print.png index 799f8afd..f13cc0f3 100644 Binary files a/png/google-cloud-print.png and b/png/google-cloud-print.png differ diff --git a/png/google-compute-engine.png b/png/google-compute-engine.png index 3efec7db..bb9492a6 100644 Binary files a/png/google-compute-engine.png and b/png/google-compute-engine.png differ diff --git a/png/google-contacts.png b/png/google-contacts.png index 7c50f167..98885adc 100644 Binary files a/png/google-contacts.png and b/png/google-contacts.png differ diff --git a/png/google-docs.png b/png/google-docs.png index 26e69050..3171614c 100644 Binary files a/png/google-docs.png and b/png/google-docs.png differ diff --git a/png/google-domains.png b/png/google-domains.png index fbc51e5b..c689d128 100644 Binary files a/png/google-domains.png and b/png/google-domains.png differ diff --git a/png/google-drive.png b/png/google-drive.png index af1e5607..1957c726 100644 Binary files a/png/google-drive.png and b/png/google-drive.png differ diff --git a/png/google-earth.png b/png/google-earth.png index 70396a20..7b1e2bcf 100644 Binary files a/png/google-earth.png and b/png/google-earth.png differ diff --git a/png/google-fi.png b/png/google-fi.png index 1eedd967..febd6a84 100644 Binary files a/png/google-fi.png and b/png/google-fi.png differ diff --git a/png/google-fit.png b/png/google-fit.png index 0cdfc435..0b8faa40 100644 Binary files a/png/google-fit.png and b/png/google-fit.png differ diff --git a/png/google-fonts.png b/png/google-fonts.png index 51e5173a..df380c1e 100644 Binary files a/png/google-fonts.png and b/png/google-fonts.png differ diff --git a/png/google-forms.png b/png/google-forms.png index 488050c9..95949200 100644 Binary files a/png/google-forms.png and b/png/google-forms.png differ diff --git a/png/google-gemini.png b/png/google-gemini.png index 369cb669..68196eaf 100644 Binary files a/png/google-gemini.png and b/png/google-gemini.png differ diff --git a/png/google-home.png b/png/google-home.png index 109d0659..86b6eedf 100644 Binary files a/png/google-home.png and b/png/google-home.png differ diff --git a/png/google-keep.png b/png/google-keep.png index 63322e42..95d17547 100644 Binary files a/png/google-keep.png and b/png/google-keep.png differ diff --git a/png/google-lens.png b/png/google-lens.png index 64f0974e..d4e780c2 100644 Binary files a/png/google-lens.png and b/png/google-lens.png differ diff --git a/png/google-maps.png b/png/google-maps.png index 88e0fdf6..35aa24ef 100644 Binary files a/png/google-maps.png and b/png/google-maps.png differ diff --git a/png/google-meet.png b/png/google-meet.png index ac1557fa..96a3a79c 100644 Binary files a/png/google-meet.png and b/png/google-meet.png differ diff --git a/png/google-messages.png b/png/google-messages.png index 975beedc..c8d93217 100644 Binary files a/png/google-messages.png and b/png/google-messages.png differ diff --git a/png/google-news.png b/png/google-news.png index 30d5b7a7..05f647c6 100644 Binary files a/png/google-news.png and b/png/google-news.png differ diff --git a/png/google-one.png b/png/google-one.png index 0b692602..ac36f4ca 100644 Binary files a/png/google-one.png and b/png/google-one.png differ diff --git a/png/google-pay.png b/png/google-pay.png index d42b1e47..15a89291 100644 Binary files a/png/google-pay.png and b/png/google-pay.png differ diff --git a/png/google-photos.png b/png/google-photos.png index 34a06a39..8b8c642a 100644 Binary files a/png/google-photos.png and b/png/google-photos.png differ diff --git a/png/google-play-books.png b/png/google-play-books.png index f16c2fe6..2dee68db 100644 Binary files a/png/google-play-books.png and b/png/google-play-books.png differ diff --git a/png/google-play-games.png b/png/google-play-games.png index 732c2db2..87ac9f2d 100644 Binary files a/png/google-play-games.png and b/png/google-play-games.png differ diff --git a/png/google-play.png b/png/google-play.png index 9d82be10..fbf30338 100644 Binary files a/png/google-play.png and b/png/google-play.png differ diff --git a/png/google-podcasts.png b/png/google-podcasts.png index 087f5498..d7004607 100644 Binary files a/png/google-podcasts.png and b/png/google-podcasts.png differ diff --git a/png/google-scholar.png b/png/google-scholar.png index a326849e..5ce7018f 100644 Binary files a/png/google-scholar.png and b/png/google-scholar.png differ diff --git a/png/google-search-console.png b/png/google-search-console.png index 258b405e..5df869b0 100644 Binary files a/png/google-search-console.png and b/png/google-search-console.png differ diff --git a/png/google-sheets.png b/png/google-sheets.png index 9566453d..3111b2ce 100644 Binary files a/png/google-sheets.png and b/png/google-sheets.png differ diff --git a/png/google-shopping.png b/png/google-shopping.png index 9175c951..320bb37d 100644 Binary files a/png/google-shopping.png and b/png/google-shopping.png differ diff --git a/png/google-sites.png b/png/google-sites.png index e484c160..a9d3457a 100644 Binary files a/png/google-sites.png and b/png/google-sites.png differ diff --git a/png/google-slides.png b/png/google-slides.png index ff9ac476..025f7f22 100644 Binary files a/png/google-slides.png and b/png/google-slides.png differ diff --git a/png/google-street-view.png b/png/google-street-view.png index 9b7a58fb..c0250488 100644 Binary files a/png/google-street-view.png and b/png/google-street-view.png differ diff --git a/png/google-tag-manager.png b/png/google-tag-manager.png new file mode 100644 index 00000000..8dd2d242 Binary files /dev/null and b/png/google-tag-manager.png differ diff --git a/png/google-translate.png b/png/google-translate.png index 3ec034ce..36e75257 100644 Binary files a/png/google-translate.png and b/png/google-translate.png differ diff --git a/png/google-tv.png b/png/google-tv.png index 8ab58319..a95c452d 100644 Binary files a/png/google-tv.png and b/png/google-tv.png differ diff --git a/png/google-voice.png b/png/google-voice.png index 98048a0a..c3b2503e 100644 Binary files a/png/google-voice.png and b/png/google-voice.png differ diff --git a/png/google-wallet.png b/png/google-wallet.png index 2c10ef2d..98552289 100644 Binary files a/png/google-wallet.png and b/png/google-wallet.png differ diff --git a/png/google-wifi.png b/png/google-wifi.png index e624945a..67b247ac 100644 Binary files a/png/google-wifi.png and b/png/google-wifi.png differ diff --git a/png/google.png b/png/google.png index 3b8b06c4..7fb3250a 100644 Binary files a/png/google.png and b/png/google.png differ diff --git a/png/gotify.png b/png/gotify.png index aa4549ca..7817178b 100644 Binary files a/png/gotify.png and b/png/gotify.png differ diff --git a/png/gotosocial.png b/png/gotosocial.png new file mode 100644 index 00000000..cc364aeb Binary files /dev/null and b/png/gotosocial.png differ diff --git a/png/gpt4free.png b/png/gpt4free.png index ae601c93..9101f89b 100644 Binary files a/png/gpt4free.png and b/png/gpt4free.png differ diff --git a/png/grafana.png b/png/grafana.png index 78b2f8cc..38daba3f 100644 Binary files a/png/grafana.png and b/png/grafana.png differ diff --git a/png/gramps.png b/png/gramps.png index 49365daa..73c8c355 100644 Binary files a/png/gramps.png and b/png/gramps.png differ diff --git a/png/grandstream.png b/png/grandstream.png index 1dbaa2c2..c0ebe52e 100644 Binary files a/png/grandstream.png and b/png/grandstream.png differ diff --git a/png/grav-light.png b/png/grav-light.png index 4f4f6f93..f04bda28 100644 Binary files a/png/grav-light.png and b/png/grav-light.png differ diff --git a/png/grav.png b/png/grav.png index 8ca64a4c..a33ee7fe 100644 Binary files a/png/grav.png and b/png/grav.png differ diff --git a/png/graylog.png b/png/graylog.png index f29da6f6..c0e6ccbd 100644 Binary files a/png/graylog.png and b/png/graylog.png differ diff --git a/png/greenbone-light.png b/png/greenbone-light.png new file mode 100644 index 00000000..9ce83276 Binary files /dev/null and b/png/greenbone-light.png differ diff --git a/png/greenbone.png b/png/greenbone.png index 30a8f9b5..e9d6850d 100644 Binary files a/png/greenbone.png and b/png/greenbone.png differ diff --git a/png/grimoire.png b/png/grimoire.png new file mode 100644 index 00000000..66527740 Binary files /dev/null and b/png/grimoire.png differ diff --git a/png/grist.png b/png/grist.png index e5bdcf6d..2a1c40ad 100644 Binary files a/png/grist.png and b/png/grist.png differ diff --git a/png/grocy.png b/png/grocy.png index b89e9c6c..1ac44320 100644 Binary files a/png/grocy.png and b/png/grocy.png differ diff --git a/png/grype.png b/png/grype.png deleted file mode 100644 index 01bbb22e..00000000 Binary files a/png/grype.png and /dev/null differ diff --git a/png/guacamole-light.png b/png/guacamole-light.png index 083c9769..0b2d6350 100644 Binary files a/png/guacamole-light.png and b/png/guacamole-light.png differ diff --git a/png/guacamole.png b/png/guacamole.png index 59f3d8bd..97c472a8 100644 Binary files a/png/guacamole.png and b/png/guacamole.png differ diff --git a/png/hacker-news.png b/png/hacker-news.png new file mode 100644 index 00000000..8af6ce4a Binary files /dev/null and b/png/hacker-news.png differ diff --git a/png/hammond-light.png b/png/hammond-light.png new file mode 100644 index 00000000..b79cb3a5 Binary files /dev/null and b/png/hammond-light.png differ diff --git a/png/hammond.png b/png/hammond.png index a021c62c..047e1b7b 100644 Binary files a/png/hammond.png and b/png/hammond.png differ diff --git a/png/handbrake.png b/png/handbrake.png index 725ceb94..a63a0695 100644 Binary files a/png/handbrake.png and b/png/handbrake.png differ diff --git a/png/haproxy.png b/png/haproxy.png index e094d0d6..cac78c73 100644 Binary files a/png/haproxy.png and b/png/haproxy.png differ diff --git a/png/haptic-light.png b/png/haptic-light.png new file mode 100644 index 00000000..e57d89b1 Binary files /dev/null and b/png/haptic-light.png differ diff --git a/png/haptic.png b/png/haptic.png new file mode 100644 index 00000000..14701f93 Binary files /dev/null and b/png/haptic.png differ diff --git a/png/harbor.png b/png/harbor.png index 10cd7221..f91bbec9 100644 Binary files a/png/harbor.png and b/png/harbor.png differ diff --git a/png/hard-forum.png b/png/hard-forum.png deleted file mode 100644 index 84a4e811..00000000 Binary files a/png/hard-forum.png and /dev/null differ diff --git a/png/harvester.png b/png/harvester.png index db1e5373..155490ec 100644 Binary files a/png/harvester.png and b/png/harvester.png differ diff --git a/png/hashicorp-boundary.png b/png/hashicorp-boundary.png new file mode 100644 index 00000000..beb59d2c Binary files /dev/null and b/png/hashicorp-boundary.png differ diff --git a/png/hashicorp-consul.png b/png/hashicorp-consul.png new file mode 100644 index 00000000..3f9b54c5 Binary files /dev/null and b/png/hashicorp-consul.png differ diff --git a/png/hashicorp-nomad.png b/png/hashicorp-nomad.png new file mode 100644 index 00000000..e22c61f9 Binary files /dev/null and b/png/hashicorp-nomad.png differ diff --git a/png/hashicorp-packer.png b/png/hashicorp-packer.png new file mode 100644 index 00000000..ff85568c Binary files /dev/null and b/png/hashicorp-packer.png differ diff --git a/png/hashicorp-terraform.png b/png/hashicorp-terraform.png new file mode 100644 index 00000000..1f5abae4 Binary files /dev/null and b/png/hashicorp-terraform.png differ diff --git a/png/hashicorp-vagrant.png b/png/hashicorp-vagrant.png new file mode 100644 index 00000000..bc4840ea Binary files /dev/null and b/png/hashicorp-vagrant.png differ diff --git a/png/hashicorp-vault.png b/png/hashicorp-vault.png new file mode 100644 index 00000000..316f0762 Binary files /dev/null and b/png/hashicorp-vault.png differ diff --git a/png/hashicorp-waypoint.png b/png/hashicorp-waypoint.png new file mode 100644 index 00000000..a2b0ed6e Binary files /dev/null and b/png/hashicorp-waypoint.png differ diff --git a/png/hastypaste.png b/png/hastypaste.png index ebf1648e..2772f57b 100644 Binary files a/png/hastypaste.png and b/png/hastypaste.png differ diff --git a/png/hasura.png b/png/hasura.png index d2297bab..27bc41b3 100644 Binary files a/png/hasura.png and b/png/hasura.png differ diff --git a/png/hatsh-light.png b/png/hatsh-light.png index 3c47a869..2322978e 100644 Binary files a/png/hatsh-light.png and b/png/hatsh-light.png differ diff --git a/png/hatsh.png b/png/hatsh.png index 185255e5..055cbe4f 100644 Binary files a/png/hatsh.png and b/png/hatsh.png differ diff --git a/png/hbo-light.png b/png/hbo-light.png new file mode 100644 index 00000000..302f2963 Binary files /dev/null and b/png/hbo-light.png differ diff --git a/png/hbo.png b/png/hbo.png new file mode 100644 index 00000000..869cab53 Binary files /dev/null and b/png/hbo.png differ diff --git a/png/hdhomerun-light.png b/png/hdhomerun-light.png new file mode 100644 index 00000000..c598bbd2 Binary files /dev/null and b/png/hdhomerun-light.png differ diff --git a/png/hdhomerun.png b/png/hdhomerun.png index a05f6979..b1adedb5 100644 Binary files a/png/hdhomerun.png and b/png/hdhomerun.png differ diff --git a/png/headphones.png b/png/headphones.png deleted file mode 100644 index 34b7910d..00000000 Binary files a/png/headphones.png and /dev/null differ diff --git a/png/headscale.png b/png/headscale.png new file mode 100644 index 00000000..04921a51 Binary files /dev/null and b/png/headscale.png differ diff --git a/png/healthchecks-v2.png b/png/healthchecks-v2.png deleted file mode 100644 index 2e07785b..00000000 Binary files a/png/healthchecks-v2.png and /dev/null differ diff --git a/png/healthchecks.png b/png/healthchecks.png index c5927594..a4c5b821 100644 Binary files a/png/healthchecks.png and b/png/healthchecks.png differ diff --git a/png/hedgedoc.png b/png/hedgedoc.png index ad542b1c..29b9d43e 100644 Binary files a/png/hedgedoc.png and b/png/hedgedoc.png differ diff --git a/png/heimdall-light.png b/png/heimdall-light.png index c12f45b8..bbab58c3 100644 Binary files a/png/heimdall-light.png and b/png/heimdall-light.png differ diff --git a/png/heimdall.png b/png/heimdall.png index ec1e3f4e..e1dbc374 100644 Binary files a/png/heimdall.png and b/png/heimdall.png differ diff --git a/png/helium-token.png b/png/helium-token.png index 01b87496..5cf2ce40 100644 Binary files a/png/helium-token.png and b/png/helium-token.png differ diff --git a/png/helm.png b/png/helm.png index 8b94bf78..a171eb3d 100644 Binary files a/png/helm.png and b/png/helm.png differ diff --git a/png/helper-scripts.png b/png/helper-scripts.png deleted file mode 100644 index 3e2e23c8..00000000 Binary files a/png/helper-scripts.png and /dev/null differ diff --git a/png/hetzner.png b/png/hetzner.png index e3e6d2b4..cef9979f 100644 Binary files a/png/hetzner.png and b/png/hetzner.png differ diff --git a/png/hexo.png b/png/hexo.png index 2373f650..ed921a9d 100644 Binary files a/png/hexo.png and b/png/hexo.png differ diff --git a/png/heyform.png b/png/heyform.png new file mode 100644 index 00000000..78fa896d Binary files /dev/null and b/png/heyform.png differ diff --git a/png/hifiberry.png b/png/hifiberry.png index b98ebbe3..1db85957 100644 Binary files a/png/hifiberry.png and b/png/hifiberry.png differ diff --git a/png/hikvision.png b/png/hikvision.png index e32dfa2a..f4490e1c 100644 Binary files a/png/hikvision.png and b/png/hikvision.png differ diff --git a/png/hilook.png b/png/hilook.png index 730db83e..2e6e4e5e 100644 Binary files a/png/hilook.png and b/png/hilook.png differ diff --git a/png/hivedav.png b/png/hivedav.png new file mode 100644 index 00000000..07bff33d Binary files /dev/null and b/png/hivedav.png differ diff --git a/png/hoarder-light.png b/png/hoarder-light.png index f88da89a..3a19c310 100644 Binary files a/png/hoarder-light.png and b/png/hoarder-light.png differ diff --git a/png/hoarder.png b/png/hoarder.png index 0dcd165b..78d466ec 100644 Binary files a/png/hoarder.png and b/png/hoarder.png differ diff --git a/png/hollo-light.png b/png/hollo-light.png new file mode 100644 index 00000000..84774c02 Binary files /dev/null and b/png/hollo-light.png differ diff --git a/png/hollo.png b/png/hollo.png new file mode 100644 index 00000000..8336bb07 Binary files /dev/null and b/png/hollo.png differ diff --git a/png/homarr.png b/png/homarr.png index 69a7207b..c8685770 100644 Binary files a/png/homarr.png and b/png/homarr.png differ diff --git a/png/home-assistant-alt.png b/png/home-assistant-alt.png index 5a790e96..2b3cd3b2 100644 Binary files a/png/home-assistant-alt.png and b/png/home-assistant-alt.png differ diff --git a/png/home-assistant-light.png b/png/home-assistant-light.png deleted file mode 100644 index c1c02c0e..00000000 Binary files a/png/home-assistant-light.png and /dev/null differ diff --git a/png/home-assistant.png b/png/home-assistant.png index 27426e49..5b9ec835 100644 Binary files a/png/home-assistant.png and b/png/home-assistant.png differ diff --git a/png/homebox-light.png b/png/homebox-light.png new file mode 100644 index 00000000..4093dc87 Binary files /dev/null and b/png/homebox-light.png differ diff --git a/png/homebox.png b/png/homebox.png index 00f96992..57088ef5 100644 Binary files a/png/homebox.png and b/png/homebox.png differ diff --git a/png/homebridge.png b/png/homebridge.png index f4b6c952..3f4c79ac 100644 Binary files a/png/homebridge.png and b/png/homebridge.png differ diff --git a/png/homepage.png b/png/homepage.png deleted file mode 100644 index 7ce16afa..00000000 Binary files a/png/homepage.png and /dev/null differ diff --git a/png/homer.png b/png/homer.png index a0d752a0..746cc777 100644 Binary files a/png/homer.png and b/png/homer.png differ diff --git a/png/homeseer.png b/png/homeseer.png deleted file mode 100644 index 12b6af8a..00000000 Binary files a/png/homeseer.png and /dev/null differ diff --git a/png/homey.png b/png/homey.png index 0050ea51..52376591 100644 Binary files a/png/homey.png and b/png/homey.png differ diff --git a/png/honeygain.png b/png/honeygain.png deleted file mode 100644 index 119482f6..00000000 Binary files a/png/honeygain.png and /dev/null differ diff --git a/png/hoobs.png b/png/hoobs.png index ad99cbc1..1d5f37f0 100644 Binary files a/png/hoobs.png and b/png/hoobs.png differ diff --git a/png/hoppscotch.png b/png/hoppscotch.png index 4755c30c..e67505c4 100644 Binary files a/png/hoppscotch.png and b/png/hoppscotch.png differ diff --git a/png/hortusfox.png b/png/hortusfox.png deleted file mode 100644 index b0b825de..00000000 Binary files a/png/hortusfox.png and /dev/null differ diff --git a/png/hostinger.png b/png/hostinger.png index 475d9fcc..aba1629a 100644 Binary files a/png/hostinger.png and b/png/hostinger.png differ diff --git a/png/hotio.png b/png/hotio.png index 1a234545..70d930a4 100644 Binary files a/png/hotio.png and b/png/hotio.png differ diff --git a/png/hp.png b/png/hp.png index 5e92f501..3e0b49a2 100644 Binary files a/png/hp.png and b/png/hp.png differ diff --git a/png/html-light.png b/png/html-light.png new file mode 100644 index 00000000..8477d8bc Binary files /dev/null and b/png/html-light.png differ diff --git a/png/html.png b/png/html.png index 8369a79e..e8715a65 100644 Binary files a/png/html.png and b/png/html.png differ diff --git a/png/huawei.png b/png/huawei.png index baaf6842..7835597b 100644 Binary files a/png/huawei.png and b/png/huawei.png differ diff --git a/png/hubitat.png b/png/hubitat.png index 3dfb3e0c..a3d0f2f1 100644 Binary files a/png/hubitat.png and b/png/hubitat.png differ diff --git a/png/hubzilla.png b/png/hubzilla.png new file mode 100644 index 00000000..a0d0fa4f Binary files /dev/null and b/png/hubzilla.png differ diff --git a/png/hugging-face.png b/png/hugging-face.png index 4c492297..fa3b12ef 100644 Binary files a/png/hugging-face.png and b/png/hugging-face.png differ diff --git a/png/huginn.png b/png/huginn.png index 5a8e43b3..a9499588 100644 Binary files a/png/huginn.png and b/png/huginn.png differ diff --git a/png/hugo.png b/png/hugo.png index 852255d4..423bb161 100644 Binary files a/png/hugo.png and b/png/hugo.png differ diff --git a/png/hulu.png b/png/hulu.png new file mode 100644 index 00000000..a7552d01 Binary files /dev/null and b/png/hulu.png differ diff --git a/png/humhub.png b/png/humhub.png index 1c7aca47..76560b9a 100644 Binary files a/png/humhub.png and b/png/humhub.png differ diff --git a/png/hydra.png b/png/hydra.png index 796c8203..23664596 100644 Binary files a/png/hydra.png and b/png/hydra.png differ diff --git a/png/hyperion.png b/png/hyperion.png deleted file mode 100644 index de1be8bb..00000000 Binary files a/png/hyperion.png and /dev/null differ diff --git a/png/hyperpipe-light.png b/png/hyperpipe-light.png new file mode 100644 index 00000000..eca26631 Binary files /dev/null and b/png/hyperpipe-light.png differ diff --git a/png/hyperpipe.png b/png/hyperpipe.png new file mode 100644 index 00000000..9813604e Binary files /dev/null and b/png/hyperpipe.png differ diff --git a/png/i2p-light.png b/png/i2p-light.png index ccd11af7..fc9ee71d 100644 Binary files a/png/i2p-light.png and b/png/i2p-light.png differ diff --git a/png/i2p.png b/png/i2p.png index 7a8f3cef..ddf3db67 100644 Binary files a/png/i2p.png and b/png/i2p.png differ diff --git a/png/i2pd.png b/png/i2pd.png index 9bd28820..b8a8f8b4 100644 Binary files a/png/i2pd.png and b/png/i2pd.png differ diff --git a/png/icecast.png b/png/icecast.png index ec3a2fb0..abd58fe4 100644 Binary files a/png/icecast.png and b/png/icecast.png differ diff --git a/png/icinga-light.png b/png/icinga-light.png new file mode 100644 index 00000000..3c7b9167 Binary files /dev/null and b/png/icinga-light.png differ diff --git a/png/icinga.png b/png/icinga.png index 21a37e1f..8afada2f 100644 Binary files a/png/icinga.png and b/png/icinga.png differ diff --git a/png/idrac.png b/png/idrac.png index 61f8ec1a..e6230cb7 100644 Binary files a/png/idrac.png and b/png/idrac.png differ diff --git a/png/ihatemoney.png b/png/ihatemoney.png deleted file mode 100644 index 748f67af..00000000 Binary files a/png/ihatemoney.png and /dev/null differ diff --git a/png/ilo.png b/png/ilo.png index 5e92f501..3e0b49a2 100644 Binary files a/png/ilo.png and b/png/ilo.png differ diff --git a/png/immich-frame-light.png b/png/immich-frame-light.png new file mode 100644 index 00000000..f304f416 Binary files /dev/null and b/png/immich-frame-light.png differ diff --git a/png/immich-frame.png b/png/immich-frame.png new file mode 100644 index 00000000..7fa53baf Binary files /dev/null and b/png/immich-frame.png differ diff --git a/png/immich-kiosk-light.png b/png/immich-kiosk-light.png new file mode 100644 index 00000000..d3359dbd Binary files /dev/null and b/png/immich-kiosk-light.png differ diff --git a/png/immich-kiosk.png b/png/immich-kiosk.png new file mode 100644 index 00000000..c7833974 Binary files /dev/null and b/png/immich-kiosk.png differ diff --git a/png/immich.png b/png/immich.png index 655265cf..f287c441 100644 Binary files a/png/immich.png and b/png/immich.png differ diff --git a/png/influxdb.png b/png/influxdb.png index 8d709bd8..3da665c1 100644 Binary files a/png/influxdb.png and b/png/influxdb.png differ diff --git a/png/infoblox.png b/png/infoblox.png index 58b36434..18752a03 100644 Binary files a/png/infoblox.png and b/png/infoblox.png differ diff --git a/png/inoreader.png b/png/inoreader.png new file mode 100644 index 00000000..57d9d6c5 Binary files /dev/null and b/png/inoreader.png differ diff --git a/png/insanelymac.png b/png/insanelymac.png deleted file mode 100644 index e7268cec..00000000 Binary files a/png/insanelymac.png and /dev/null differ diff --git a/png/instagram.png b/png/instagram.png index 7ec1fc2c..1231d15d 100644 Binary files a/png/instagram.png and b/png/instagram.png differ diff --git a/png/inventree.png b/png/inventree.png index 2c8ab4f2..0703c1e6 100644 Binary files a/png/inventree.png and b/png/inventree.png differ diff --git a/png/invidious.png b/png/invidious.png index 8759a81e..91b375e0 100644 Binary files a/png/invidious.png and b/png/invidious.png differ diff --git a/png/invisioncommunity.png b/png/invisioncommunity.png index 432bced4..526f2173 100644 Binary files a/png/invisioncommunity.png and b/png/invisioncommunity.png differ diff --git a/png/invoice-ninja-light.png b/png/invoice-ninja-light.png new file mode 100644 index 00000000..113337e7 Binary files /dev/null and b/png/invoice-ninja-light.png differ diff --git a/png/invoice-ninja.png b/png/invoice-ninja.png new file mode 100644 index 00000000..23469cc6 Binary files /dev/null and b/png/invoice-ninja.png differ diff --git a/png/invoiceninja-light.png b/png/invoiceninja-light.png deleted file mode 100644 index 2462c827..00000000 Binary files a/png/invoiceninja-light.png and /dev/null differ diff --git a/png/invoiceninja.png b/png/invoiceninja.png deleted file mode 100644 index a0e3c0e5..00000000 Binary files a/png/invoiceninja.png and /dev/null differ diff --git a/png/invoke-ai.png b/png/invoke-ai.png index 0b886de0..f509fd19 100644 Binary files a/png/invoke-ai.png and b/png/invoke-ai.png differ diff --git a/png/iobroker.png b/png/iobroker.png index 2e82779e..011f1e25 100644 Binary files a/png/iobroker.png and b/png/iobroker.png differ diff --git a/png/ionos-light.png b/png/ionos-light.png deleted file mode 100644 index 828e429f..00000000 Binary files a/png/ionos-light.png and /dev/null differ diff --git a/png/ionos.png b/png/ionos.png index 2df5611d..7754804c 100644 Binary files a/png/ionos.png and b/png/ionos.png differ diff --git a/png/ipboard.png b/png/ipboard.png index 432bced4..526f2173 100644 Binary files a/png/ipboard.png and b/png/ipboard.png differ diff --git a/png/ipcamtalk.png b/png/ipcamtalk.png deleted file mode 100644 index 83417d43..00000000 Binary files a/png/ipcamtalk.png and /dev/null differ diff --git a/png/ipfs-light.png b/png/ipfs-light.png new file mode 100644 index 00000000..936bc87d Binary files /dev/null and b/png/ipfs-light.png differ diff --git a/png/ipfs.png b/png/ipfs.png index b4d4f547..700db68f 100644 Binary files a/png/ipfs.png and b/png/ipfs.png differ diff --git a/png/irc.png b/png/irc.png deleted file mode 100644 index 517d61bd..00000000 Binary files a/png/irc.png and /dev/null differ diff --git a/png/iredmail.png b/png/iredmail.png deleted file mode 100644 index 528c9265..00000000 Binary files a/png/iredmail.png and /dev/null differ diff --git a/png/ispconfig.png b/png/ispconfig.png index 78dd241e..6536f30c 100644 Binary files a/png/ispconfig.png and b/png/ispconfig.png differ diff --git a/png/ispy.png b/png/ispy.png deleted file mode 100644 index 12ef5110..00000000 Binary files a/png/ispy.png and /dev/null differ diff --git a/png/it-tools-light.png b/png/it-tools-light.png index 3fceaafb..169799ca 100644 Binary files a/png/it-tools-light.png and b/png/it-tools-light.png differ diff --git a/png/it-tools.png b/png/it-tools.png index 2cd951f8..b605627c 100644 Binary files a/png/it-tools.png and b/png/it-tools.png differ diff --git a/png/jackett-light.png b/png/jackett-light.png index 49e2d04f..28ba207a 100644 Binary files a/png/jackett-light.png and b/png/jackett-light.png differ diff --git a/png/jackett.png b/png/jackett.png index 75a4b5d3..70607ede 100644 Binary files a/png/jackett.png and b/png/jackett.png differ diff --git a/png/jaeger.png b/png/jaeger.png index fa54aade..b1bcc2a2 100644 Binary files a/png/jaeger.png and b/png/jaeger.png differ diff --git a/png/jamstack.png b/png/jamstack.png index 50ae3ed5..9f076ede 100644 Binary files a/png/jamstack.png and b/png/jamstack.png differ diff --git a/png/java.png b/png/java.png index 946d1b5c..db765bef 100644 Binary files a/png/java.png and b/png/java.png differ diff --git a/png/javascript-light.png b/png/javascript-light.png new file mode 100644 index 00000000..92455b60 Binary files /dev/null and b/png/javascript-light.png differ diff --git a/png/javascript.png b/png/javascript.png index 380eb208..f86b29bd 100644 Binary files a/png/javascript.png and b/png/javascript.png differ diff --git a/png/jdownloader.png b/png/jdownloader.png deleted file mode 100644 index 5c90cf76..00000000 Binary files a/png/jdownloader.png and /dev/null differ diff --git a/png/jdownloader2.png b/png/jdownloader2.png deleted file mode 100644 index 5c90cf76..00000000 Binary files a/png/jdownloader2.png and /dev/null differ diff --git a/png/jeedom.png b/png/jeedom.png index dff459bf..0be9cc82 100644 Binary files a/png/jeedom.png and b/png/jeedom.png differ diff --git a/png/jekyll.png b/png/jekyll.png index c8626e7a..10daa41e 100644 Binary files a/png/jekyll.png and b/png/jekyll.png differ diff --git a/png/jellyfin-vue.png b/png/jellyfin-vue.png deleted file mode 100644 index 71fbd057..00000000 Binary files a/png/jellyfin-vue.png and /dev/null differ diff --git a/png/jellyfin.png b/png/jellyfin.png index c4a62d5c..f900a138 100644 Binary files a/png/jellyfin.png and b/png/jellyfin.png differ diff --git a/png/jellyseerr.png b/png/jellyseerr.png index 6bda23de..cfe4abac 100644 Binary files a/png/jellyseerr.png and b/png/jellyseerr.png differ diff --git a/png/jellystat-light.png b/png/jellystat-light.png deleted file mode 100644 index 139303ac..00000000 Binary files a/png/jellystat-light.png and /dev/null differ diff --git a/png/jellystat.png b/png/jellystat.png index 5cac1800..2cbadd7e 100644 Binary files a/png/jellystat.png and b/png/jellystat.png differ diff --git a/png/jelu.png b/png/jelu.png index bbc0ce06..c681f1cf 100644 Binary files a/png/jelu.png and b/png/jelu.png differ diff --git a/png/jenkins.png b/png/jenkins.png index aa090e6a..ff3fab73 100644 Binary files a/png/jenkins.png and b/png/jenkins.png differ diff --git a/png/jetbrains-fleet.png b/png/jetbrains-fleet.png deleted file mode 100644 index 856689b5..00000000 Binary files a/png/jetbrains-fleet.png and /dev/null differ diff --git a/png/jetbrains-youtrack.png b/png/jetbrains-youtrack.png index 37adee2e..c8131574 100644 Binary files a/png/jetbrains-youtrack.png and b/png/jetbrains-youtrack.png differ diff --git a/png/jio.png b/png/jio.png index cb6208ed..c48cdf07 100644 Binary files a/png/jio.png and b/png/jio.png differ diff --git a/png/jira.png b/png/jira.png index 6afcb136..dcba43b5 100644 Binary files a/png/jira.png and b/png/jira.png differ diff --git a/png/jitsi-meet.png b/png/jitsi-meet.png index ab7e203a..5063cac3 100644 Binary files a/png/jitsi-meet.png and b/png/jitsi-meet.png differ diff --git a/png/jitsi.png b/png/jitsi.png index 496f81e0..0dc4400d 100644 Binary files a/png/jitsi.png and b/png/jitsi.png differ diff --git a/png/joal.png b/png/joal.png deleted file mode 100644 index 18bf7605..00000000 Binary files a/png/joal.png and /dev/null differ diff --git a/png/joomla.png b/png/joomla.png index 0fd5c762..2549a384 100644 Binary files a/png/joomla.png and b/png/joomla.png differ diff --git a/png/joplin.png b/png/joplin.png index 1ec38101..2cbadd7e 100644 Binary files a/png/joplin.png and b/png/joplin.png differ diff --git a/png/julia.png b/png/julia.png index 211de472..ca233b68 100644 Binary files a/png/julia.png and b/png/julia.png differ diff --git a/png/jupyter.png b/png/jupyter.png index 5bb7d778..21ab5566 100644 Binary files a/png/jupyter.png and b/png/jupyter.png differ diff --git a/png/jwt-io-light.png b/png/jwt-io-light.png new file mode 100644 index 00000000..26b1d22c Binary files /dev/null and b/png/jwt-io-light.png differ diff --git a/png/jwt-io.png b/png/jwt-io.png new file mode 100644 index 00000000..19373fc2 Binary files /dev/null and b/png/jwt-io.png differ diff --git a/png/kagi.png b/png/kagi.png index 0eb3e583..e26cfaaa 100644 Binary files a/png/kagi.png and b/png/kagi.png differ diff --git a/png/kaizoku.png b/png/kaizoku.png deleted file mode 100644 index dc1770ca..00000000 Binary files a/png/kaizoku.png and /dev/null differ diff --git a/png/kamatera.png b/png/kamatera.png index 4a77c782..ed435f9b 100644 Binary files a/png/kamatera.png and b/png/kamatera.png differ diff --git a/png/kanboard-light.png b/png/kanboard-light.png new file mode 100644 index 00000000..fa2ca3f6 Binary files /dev/null and b/png/kanboard-light.png differ diff --git a/png/kanboard.png b/png/kanboard.png new file mode 100644 index 00000000..59178990 Binary files /dev/null and b/png/kanboard.png differ diff --git a/png/kanidm.png b/png/kanidm.png new file mode 100644 index 00000000..c0337cdc Binary files /dev/null and b/png/kanidm.png differ diff --git a/png/kapacitor.png b/png/kapacitor.png deleted file mode 100644 index c1e97001..00000000 Binary files a/png/kapacitor.png and /dev/null differ diff --git a/png/kapowarr.png b/png/kapowarr.png index fb84a8da..5c8206cd 100644 Binary files a/png/kapowarr.png and b/png/kapowarr.png differ diff --git a/png/kasm-workspaces.png b/png/kasm-workspaces.png index d255e1d3..3db4e9c9 100644 Binary files a/png/kasm-workspaces.png and b/png/kasm-workspaces.png differ diff --git a/png/kasm.png b/png/kasm.png index d255e1d3..3db4e9c9 100644 Binary files a/png/kasm.png and b/png/kasm.png differ diff --git a/png/kasten-k10.png b/png/kasten-k10.png index 03db11bf..9439133f 100644 Binary files a/png/kasten-k10.png and b/png/kasten-k10.png differ diff --git a/png/kaufland.png b/png/kaufland.png index da290c50..05c37dbb 100644 Binary files a/png/kaufland.png and b/png/kaufland.png differ diff --git a/png/kavita.png b/png/kavita.png index 6ea448d2..ef8a34cb 100644 Binary files a/png/kavita.png and b/png/kavita.png differ diff --git a/png/kbin-light.png b/png/kbin-light.png deleted file mode 100644 index 83892057..00000000 Binary files a/png/kbin-light.png and /dev/null differ diff --git a/png/kbin.png b/png/kbin.png index 65ec8be5..67686d8d 100644 Binary files a/png/kbin.png and b/png/kbin.png differ diff --git a/png/keenetic-alt.png b/png/keenetic-alt.png new file mode 100644 index 00000000..347e8621 Binary files /dev/null and b/png/keenetic-alt.png differ diff --git a/png/keenetic-new.png b/png/keenetic-new.png deleted file mode 100644 index 0225b123..00000000 Binary files a/png/keenetic-new.png and /dev/null differ diff --git a/png/keenetic.png b/png/keenetic.png index 6237d21b..2d675a0a 100644 Binary files a/png/keenetic.png and b/png/keenetic.png differ diff --git a/png/keepassxc.png b/png/keepassxc.png new file mode 100644 index 00000000..0167e753 Binary files /dev/null and b/png/keepassxc.png differ diff --git a/png/keila.png b/png/keila.png index 69effc41..1c76813d 100644 Binary files a/png/keila.png and b/png/keila.png differ diff --git a/png/kerberos.png b/png/kerberos.png index d8cd2a40..45b90ba8 100644 Binary files a/png/kerberos.png and b/png/kerberos.png differ diff --git a/png/kestra.png b/png/kestra.png index 1ac4b38c..03b1ba95 100644 Binary files a/png/kestra.png and b/png/kestra.png differ diff --git a/png/keycloak.png b/png/keycloak.png index c8bf3fe8..38a86e31 100644 Binary files a/png/keycloak.png and b/png/keycloak.png differ diff --git a/png/keyoxide-alt.png b/png/keyoxide-alt.png index c9af2b47..c0a39ccf 100644 Binary files a/png/keyoxide-alt.png and b/png/keyoxide-alt.png differ diff --git a/png/keyoxide.png b/png/keyoxide.png index 8071562a..d13afb87 100644 Binary files a/png/keyoxide.png and b/png/keyoxide.png differ diff --git a/png/kibana.png b/png/kibana.png index 658569e8..36ee9ca7 100644 Binary files a/png/kibana.png and b/png/kibana.png differ diff --git a/png/kick-light.png b/png/kick-light.png new file mode 100644 index 00000000..6c20fef3 Binary files /dev/null and b/png/kick-light.png differ diff --git a/png/kick.png b/png/kick.png index 6e6410b8..13abf23e 100644 Binary files a/png/kick.png and b/png/kick.png differ diff --git a/png/kimai.png b/png/kimai.png index a320fedd..b0d9ffb1 100644 Binary files a/png/kimai.png and b/png/kimai.png differ diff --git a/png/kinto.png b/png/kinto.png index a7e3eee9..c181a2e3 100644 Binary files a/png/kinto.png and b/png/kinto.png differ diff --git a/png/kitana.png b/png/kitana.png index cdd8323d..bd0139c9 100644 Binary files a/png/kitana.png and b/png/kitana.png differ diff --git a/png/kitchenowl.png b/png/kitchenowl.png index 5a666edb..810d0402 100644 Binary files a/png/kitchenowl.png and b/png/kitchenowl.png differ diff --git a/png/kiwix-light.png b/png/kiwix-light.png index e310fb94..24641086 100644 Binary files a/png/kiwix-light.png and b/png/kiwix-light.png differ diff --git a/png/kiwix.png b/png/kiwix.png index c6f87954..5827dda8 100644 Binary files a/png/kiwix.png and b/png/kiwix.png differ diff --git a/png/klipper.png b/png/klipper.png index 1331b048..4133caad 100644 Binary files a/png/klipper.png and b/png/klipper.png differ diff --git a/png/ko-fi.png b/png/ko-fi.png index 12e06a99..c8e7b59f 100644 Binary files a/png/ko-fi.png and b/png/ko-fi.png differ diff --git a/png/kodi.png b/png/kodi.png index 0b860002..8015bd00 100644 Binary files a/png/kodi.png and b/png/kodi.png differ diff --git a/png/koel.png b/png/koel.png index 78611564..660fa854 100644 Binary files a/png/koel.png and b/png/koel.png differ diff --git a/png/koillection-light.png b/png/koillection-light.png new file mode 100644 index 00000000..2880152a Binary files /dev/null and b/png/koillection-light.png differ diff --git a/png/koillection.png b/png/koillection.png index 5bb8023d..26e9ff34 100644 Binary files a/png/koillection.png and b/png/koillection.png differ diff --git a/png/komga.png b/png/komga.png index d853224d..0145cffc 100644 Binary files a/png/komga.png and b/png/komga.png differ diff --git a/png/kontoj.png b/png/kontoj.png new file mode 100644 index 00000000..e6ee81af Binary files /dev/null and b/png/kontoj.png differ diff --git a/png/kopia.png b/png/kopia.png index fc430caf..7a5a2c88 100644 Binary files a/png/kopia.png and b/png/kopia.png differ diff --git a/png/kotlin.png b/png/kotlin.png index 29c12085..cc7b41d1 100644 Binary files a/png/kotlin.png and b/png/kotlin.png differ diff --git a/png/kpn.png b/png/kpn.png index e26a2a1a..4aa098b5 100644 Binary files a/png/kpn.png and b/png/kpn.png differ diff --git a/png/krakend.png b/png/krakend.png new file mode 100644 index 00000000..20a2f8d9 Binary files /dev/null and b/png/krakend.png differ diff --git a/png/krusader.png b/png/krusader.png index 48fd236e..feb4bbc4 100644 Binary files a/png/krusader.png and b/png/krusader.png differ diff --git a/png/kubernetes-dashboard.png b/png/kubernetes-dashboard.png index bf488876..d21de2d1 100644 Binary files a/png/kubernetes-dashboard.png and b/png/kubernetes-dashboard.png differ diff --git a/png/kubernetes.png b/png/kubernetes.png index bf488876..d21de2d1 100644 Binary files a/png/kubernetes.png and b/png/kubernetes.png differ diff --git a/png/kutt.png b/png/kutt.png index 740b331d..178c9c3e 100644 Binary files a/png/kutt.png and b/png/kutt.png differ diff --git a/png/kyoo.png b/png/kyoo.png new file mode 100644 index 00000000..f44721ad Binary files /dev/null and b/png/kyoo.png differ diff --git a/png/lancache.png b/png/lancache.png deleted file mode 100644 index 8d8b6fa2..00000000 Binary files a/png/lancache.png and /dev/null differ diff --git a/png/lancommander-light.png b/png/lancommander-light.png new file mode 100644 index 00000000..b122606e Binary files /dev/null and b/png/lancommander-light.png differ diff --git a/png/lancommander.png b/png/lancommander.png new file mode 100644 index 00000000..4522bfc6 Binary files /dev/null and b/png/lancommander.png differ diff --git a/png/lanraragi.png b/png/lanraragi.png deleted file mode 100644 index cc6d8830..00000000 Binary files a/png/lanraragi.png and /dev/null differ diff --git a/png/lark.png b/png/lark.png index 8c7865ef..d5174a08 100644 Binary files a/png/lark.png and b/png/lark.png differ diff --git a/png/lastpass.png b/png/lastpass.png new file mode 100644 index 00000000..410b48a1 Binary files /dev/null and b/png/lastpass.png differ diff --git a/png/lazylibrarian.png b/png/lazylibrarian.png deleted file mode 100644 index e504fa1b..00000000 Binary files a/png/lazylibrarian.png and /dev/null differ diff --git a/png/leanote.png b/png/leanote.png index d1b38374..1615691a 100644 Binary files a/png/leanote.png and b/png/leanote.png differ diff --git a/png/leantime.png b/png/leantime.png index 9673b4f4..460752be 100644 Binary files a/png/leantime.png and b/png/leantime.png differ diff --git a/png/lemmy-light.png b/png/lemmy-light.png index d87143d9..598066e6 100644 Binary files a/png/lemmy-light.png and b/png/lemmy-light.png differ diff --git a/png/lemmy.png b/png/lemmy.png index afa47f17..e36aeeaf 100644 Binary files a/png/lemmy.png and b/png/lemmy.png differ diff --git a/png/lemonldap-ng.png b/png/lemonldap-ng.png deleted file mode 100644 index dbf27180..00000000 Binary files a/png/lemonldap-ng.png and /dev/null differ diff --git a/png/lets-encrypt.png b/png/lets-encrypt.png index 43c9a789..637e1d34 100644 Binary files a/png/lets-encrypt.png and b/png/lets-encrypt.png differ diff --git a/png/libreddit-light.png b/png/libreddit-light.png new file mode 100644 index 00000000..4ea6fbfe Binary files /dev/null and b/png/libreddit-light.png differ diff --git a/png/libreddit.png b/png/libreddit.png index e42ed44b..b6665ba1 100644 Binary files a/png/libreddit.png and b/png/libreddit.png differ diff --git a/png/libremdb.png b/png/libremdb.png deleted file mode 100644 index 831ecd69..00000000 Binary files a/png/libremdb.png and /dev/null differ diff --git a/png/librenms-light.png b/png/librenms-light.png deleted file mode 100644 index c2a1bb16..00000000 Binary files a/png/librenms-light.png and /dev/null differ diff --git a/png/librenms.png b/png/librenms.png index 6c72502c..7414e03f 100644 Binary files a/png/librenms.png and b/png/librenms.png differ diff --git a/png/libreoffice-light.png b/png/libreoffice-light.png new file mode 100644 index 00000000..6f85f460 Binary files /dev/null and b/png/libreoffice-light.png differ diff --git a/png/libreoffice.png b/png/libreoffice.png index 551676a5..02eadf83 100644 Binary files a/png/libreoffice.png and b/png/libreoffice.png differ diff --git a/png/librephotos-light.png b/png/librephotos-light.png deleted file mode 100644 index d81407f1..00000000 Binary files a/png/librephotos-light.png and /dev/null differ diff --git a/png/librephotos.png b/png/librephotos.png deleted file mode 100644 index 3b837c16..00000000 Binary files a/png/librephotos.png and /dev/null differ diff --git a/png/librespeed-light.png b/png/librespeed-light.png new file mode 100644 index 00000000..cb087cdf Binary files /dev/null and b/png/librespeed-light.png differ diff --git a/png/librespeed.png b/png/librespeed.png index ea06dfb2..257d8ad6 100644 Binary files a/png/librespeed.png and b/png/librespeed.png differ diff --git a/png/librewolf.png b/png/librewolf.png new file mode 100644 index 00000000..6f209662 Binary files /dev/null and b/png/librewolf.png differ diff --git a/png/librex.png b/png/librex.png deleted file mode 100644 index 88a1cabd..00000000 Binary files a/png/librex.png and /dev/null differ diff --git a/png/librey.png b/png/librey.png deleted file mode 100644 index 6f01a080..00000000 Binary files a/png/librey.png and /dev/null differ diff --git a/png/librum.png b/png/librum.png new file mode 100644 index 00000000..485e7beb Binary files /dev/null and b/png/librum.png differ diff --git a/png/lidarr.png b/png/lidarr.png index 3ec663b7..43f9827a 100644 Binary files a/png/lidarr.png and b/png/lidarr.png differ diff --git a/png/lidl.png b/png/lidl.png index 96d73fda..66d336cb 100644 Binary files a/png/lidl.png and b/png/lidl.png differ diff --git a/png/lightning-terminal.png b/png/lightning-terminal.png deleted file mode 100644 index e89dc8db..00000000 Binary files a/png/lightning-terminal.png and /dev/null differ diff --git a/png/lighttpd.png b/png/lighttpd.png index 605ed0be..93480761 100644 Binary files a/png/lighttpd.png and b/png/lighttpd.png differ diff --git a/png/limesurvey.png b/png/limesurvey.png new file mode 100644 index 00000000..d0335ef6 Binary files /dev/null and b/png/limesurvey.png differ diff --git a/png/linguacafe.png b/png/linguacafe.png new file mode 100644 index 00000000..49660002 Binary files /dev/null and b/png/linguacafe.png differ diff --git a/png/linkace.png b/png/linkace.png index f2d96c7d..0eab6e2d 100644 Binary files a/png/linkace.png and b/png/linkace.png differ diff --git a/png/linkding.png b/png/linkding.png index 2614c02b..f1e3e1e5 100644 Binary files a/png/linkding.png and b/png/linkding.png differ diff --git a/png/linkedin.png b/png/linkedin.png index 1d2bdfc3..99c78704 100644 Binary files a/png/linkedin.png and b/png/linkedin.png differ diff --git a/png/linkstack.png b/png/linkstack.png index 0d1af417..b332eb8d 100644 Binary files a/png/linkstack.png and b/png/linkstack.png differ diff --git a/png/linksys.png b/png/linksys.png deleted file mode 100644 index 048fea3a..00000000 Binary files a/png/linksys.png and /dev/null differ diff --git a/png/linkwarden-light.png b/png/linkwarden-light.png deleted file mode 100644 index ccfd2f69..00000000 Binary files a/png/linkwarden-light.png and /dev/null differ diff --git a/png/linkwarden.png b/png/linkwarden.png deleted file mode 100644 index a40400b7..00000000 Binary files a/png/linkwarden.png and /dev/null differ diff --git a/png/linode.png b/png/linode.png index 5a8dd83f..59d8ab29 100644 Binary files a/png/linode.png and b/png/linode.png differ diff --git a/png/linux-mint.png b/png/linux-mint.png index 2164fafd..9fc2983d 100644 Binary files a/png/linux-mint.png and b/png/linux-mint.png differ diff --git a/png/linux.png b/png/linux.png new file mode 100644 index 00000000..c74fec48 Binary files /dev/null and b/png/linux.png differ diff --git a/png/linuxgsm.png b/png/linuxgsm.png new file mode 100644 index 00000000..0e285502 Binary files /dev/null and b/png/linuxgsm.png differ diff --git a/png/linuxserver-io.png b/png/linuxserver-io.png index fae551e9..7747f77c 100644 Binary files a/png/linuxserver-io.png and b/png/linuxserver-io.png differ diff --git a/png/liremdb.png b/png/liremdb.png new file mode 100644 index 00000000..f06004e5 Binary files /dev/null and b/png/liremdb.png differ diff --git a/png/listmonk.png b/png/listmonk.png index f21d4ae2..b1023732 100644 Binary files a/png/listmonk.png and b/png/listmonk.png differ diff --git a/png/littlelink-custom.png b/png/littlelink-custom.png index 0c4632ec..50194e66 100644 Binary files a/png/littlelink-custom.png and b/png/littlelink-custom.png differ diff --git a/png/lnbits.png b/png/lnbits.png index a17bb246..d6257906 100644 Binary files a/png/lnbits.png and b/png/lnbits.png differ diff --git a/png/lobe-chat.png b/png/lobe-chat.png deleted file mode 100644 index 01623f18..00000000 Binary files a/png/lobe-chat.png and /dev/null differ diff --git a/png/locals-light.png b/png/locals-light.png index 3881ef72..28b2ee50 100644 Binary files a/png/locals-light.png and b/png/locals-light.png differ diff --git a/png/locals.png b/png/locals.png index 107cd532..25434837 100644 Binary files a/png/locals.png and b/png/locals.png differ diff --git a/png/lodestone.png b/png/lodestone.png new file mode 100644 index 00000000..5a941c08 Binary files /dev/null and b/png/lodestone.png differ diff --git a/png/logitech-gaming.png b/png/logitech-gaming.png index 836fed63..e3f3a3a0 100644 Binary files a/png/logitech-gaming.png and b/png/logitech-gaming.png differ diff --git a/png/logitech-legacy-light.png b/png/logitech-legacy-light.png deleted file mode 100644 index 2455e213..00000000 Binary files a/png/logitech-legacy-light.png and /dev/null differ diff --git a/png/logitech-legacy.png b/png/logitech-legacy.png index 9847cff4..b40ef525 100644 Binary files a/png/logitech-legacy.png and b/png/logitech-legacy.png differ diff --git a/png/logitech-light.png b/png/logitech-light.png index 77ff2e3e..6b85d553 100644 Binary files a/png/logitech-light.png and b/png/logitech-light.png differ diff --git a/png/logitech.png b/png/logitech.png index 5528b323..b1d0d6ea 100644 Binary files a/png/logitech.png and b/png/logitech.png differ diff --git a/png/logseq.png b/png/logseq.png new file mode 100644 index 00000000..beead736 Binary files /dev/null and b/png/logseq.png differ diff --git a/png/logstash.png b/png/logstash.png index c0285cc0..a42eab76 100644 Binary files a/png/logstash.png and b/png/logstash.png differ diff --git a/png/logto.png b/png/logto.png new file mode 100644 index 00000000..ebb9931b Binary files /dev/null and b/png/logto.png differ diff --git a/png/loki.png b/png/loki.png index 9ebe1342..5c512ee3 100644 Binary files a/png/loki.png and b/png/loki.png differ diff --git a/png/longhorn.png b/png/longhorn.png index 43fc534e..ebf813c6 100644 Binary files a/png/longhorn.png and b/png/longhorn.png differ diff --git a/png/lsio.png b/png/lsio.png deleted file mode 100644 index fae551e9..00000000 Binary files a/png/lsio.png and /dev/null differ diff --git a/png/lua.png b/png/lua.png index b69f73b0..d7ebc4a4 100644 Binary files a/png/lua.png and b/png/lua.png differ diff --git a/png/lubelogger.png b/png/lubelogger.png deleted file mode 100644 index d9210f49..00000000 Binary files a/png/lubelogger.png and /dev/null differ diff --git a/png/lunasea.png b/png/lunasea.png new file mode 100644 index 00000000..86563178 Binary files /dev/null and b/png/lunasea.png differ diff --git a/png/lychee.png b/png/lychee.png deleted file mode 100644 index aab2206e..00000000 Binary files a/png/lychee.png and /dev/null differ diff --git a/png/lynx-light.png b/png/lynx-light.png new file mode 100644 index 00000000..bc9ad3e7 Binary files /dev/null and b/png/lynx-light.png differ diff --git a/png/lynx.png b/png/lynx.png index c17fba08..233afe61 100644 Binary files a/png/lynx.png and b/png/lynx.png differ diff --git a/png/mail-in-a-box.png b/png/mail-in-a-box.png new file mode 100644 index 00000000..93d247a8 Binary files /dev/null and b/png/mail-in-a-box.png differ diff --git a/png/mailchimp-light.png b/png/mailchimp-light.png new file mode 100644 index 00000000..c082c234 Binary files /dev/null and b/png/mailchimp-light.png differ diff --git a/png/mailchimp.png b/png/mailchimp.png new file mode 100644 index 00000000..8e056bf4 Binary files /dev/null and b/png/mailchimp.png differ diff --git a/png/mailcow.png b/png/mailcow.png index 289901d2..fc1e0f2b 100644 Binary files a/png/mailcow.png and b/png/mailcow.png differ diff --git a/png/mailcowsogo.png b/png/mailcowsogo.png deleted file mode 100644 index 01096789..00000000 Binary files a/png/mailcowsogo.png and /dev/null differ diff --git a/png/mailfence.png b/png/mailfence.png index 1c82e7d7..08511a6e 100644 Binary files a/png/mailfence.png and b/png/mailfence.png differ diff --git a/png/mailgun.png b/png/mailgun.png new file mode 100644 index 00000000..5b98d514 Binary files /dev/null and b/png/mailgun.png differ diff --git a/png/mailhog.png b/png/mailhog.png deleted file mode 100644 index 4b703f14..00000000 Binary files a/png/mailhog.png and /dev/null differ diff --git a/png/mailinabox.png b/png/mailinabox.png deleted file mode 100644 index f127eac3..00000000 Binary files a/png/mailinabox.png and /dev/null differ diff --git a/png/mailjet.png b/png/mailjet.png new file mode 100644 index 00000000..5d7ae42b Binary files /dev/null and b/png/mailjet.png differ diff --git a/png/mailu.png b/png/mailu.png deleted file mode 100644 index 2f667eff..00000000 Binary files a/png/mailu.png and /dev/null differ diff --git a/png/mainsail.png b/png/mainsail.png index 00b8b92d..c951390e 100644 Binary files a/png/mainsail.png and b/png/mainsail.png differ diff --git a/png/maintainerr.png b/png/maintainerr.png index 7a96a973..32c1bd51 100644 Binary files a/png/maintainerr.png and b/png/maintainerr.png differ diff --git a/png/mak.png b/png/mak.png deleted file mode 100644 index fd43faf2..00000000 Binary files a/png/mak.png and /dev/null differ diff --git a/png/makemkv.png b/png/makemkv.png deleted file mode 100644 index 47e3f463..00000000 Binary files a/png/makemkv.png and /dev/null differ diff --git a/png/maloja.png b/png/maloja.png deleted file mode 100644 index 07e7ff18..00000000 Binary files a/png/maloja.png and /dev/null differ diff --git a/png/mango.png b/png/mango.png deleted file mode 100644 index c8dcbd4c..00000000 Binary files a/png/mango.png and /dev/null differ diff --git a/png/manjaro-linux.png b/png/manjaro-linux.png index 5051a77e..3b7e46ed 100644 Binary files a/png/manjaro-linux.png and b/png/manjaro-linux.png differ diff --git a/png/mantisbt.png b/png/mantisbt.png deleted file mode 100644 index f5f6ac22..00000000 Binary files a/png/mantisbt.png and /dev/null differ diff --git a/png/manyfold.png b/png/manyfold.png index 868f6ae3..bc3342a2 100644 Binary files a/png/manyfold.png and b/png/manyfold.png differ diff --git a/png/maptiler.png b/png/maptiler.png index e6f10867..879f3cb7 100644 Binary files a/png/maptiler.png and b/png/maptiler.png differ diff --git a/png/marginalia.png b/png/marginalia.png deleted file mode 100644 index adffebc3..00000000 Binary files a/png/marginalia.png and /dev/null differ diff --git a/png/mariadb.png b/png/mariadb.png index d76fcee2..7f9140c1 100644 Binary files a/png/mariadb.png and b/png/mariadb.png differ diff --git a/png/mastodon.png b/png/mastodon.png index 748c8538..0ec0a137 100644 Binary files a/png/mastodon.png and b/png/mastodon.png differ diff --git a/png/matomo.png b/png/matomo.png index b80d74a3..60ddf9aa 100644 Binary files a/png/matomo.png and b/png/matomo.png differ diff --git a/png/matrix-light.png b/png/matrix-light.png index 1c889ae8..18c35d83 100644 Binary files a/png/matrix-light.png and b/png/matrix-light.png differ diff --git a/png/matrix-synapse-light.png b/png/matrix-synapse-light.png index dc355e69..0a422aa8 100644 Binary files a/png/matrix-synapse-light.png and b/png/matrix-synapse-light.png differ diff --git a/png/matrix-synapse.png b/png/matrix-synapse.png index f6aea99a..d7e261ac 100644 Binary files a/png/matrix-synapse.png and b/png/matrix-synapse.png differ diff --git a/png/matrix.png b/png/matrix.png index ad1bd95d..abe24517 100644 Binary files a/png/matrix.png and b/png/matrix.png differ diff --git a/png/mattermost.png b/png/mattermost.png index 8d0dac47..22d5bc21 100644 Binary files a/png/mattermost.png and b/png/mattermost.png differ diff --git a/png/mautic-light.png b/png/mautic-light.png deleted file mode 100644 index ad4ad56c..00000000 Binary files a/png/mautic-light.png and /dev/null differ diff --git a/png/mautic.png b/png/mautic.png index 2d396058..be6858fb 100644 Binary files a/png/mautic.png and b/png/mautic.png differ diff --git a/png/max.png b/png/max.png new file mode 100644 index 00000000..52ea935b Binary files /dev/null and b/png/max.png differ diff --git a/png/mayan-edms-light.png b/png/mayan-edms-light.png new file mode 100644 index 00000000..2d7d4c3f Binary files /dev/null and b/png/mayan-edms-light.png differ diff --git a/png/mayan-edms.png b/png/mayan-edms.png index efd6298f..51e639bb 100644 Binary files a/png/mayan-edms.png and b/png/mayan-edms.png differ diff --git a/png/mayan-light.png b/png/mayan-light.png deleted file mode 100644 index 71c9eea7..00000000 Binary files a/png/mayan-light.png and /dev/null differ diff --git a/png/maybe.png b/png/maybe.png new file mode 100644 index 00000000..3f80d038 Binary files /dev/null and b/png/maybe.png differ diff --git a/png/mbin.png b/png/mbin.png new file mode 100644 index 00000000..51badbc3 Binary files /dev/null and b/png/mbin.png differ diff --git a/png/mcmyadmin.png b/png/mcmyadmin.png deleted file mode 100644 index 01f45fa1..00000000 Binary files a/png/mcmyadmin.png and /dev/null differ diff --git a/png/mealie.png b/png/mealie.png index 6a67beb4..1dacb245 100644 Binary files a/png/mealie.png and b/png/mealie.png differ diff --git a/png/medama.png b/png/medama.png new file mode 100644 index 00000000..977aa4f8 Binary files /dev/null and b/png/medama.png differ diff --git a/png/mediathekview.png b/png/mediathekview.png index 47db9aaf..dcc234e1 100644 Binary files a/png/mediathekview.png and b/png/mediathekview.png differ diff --git a/png/mediawiki.png b/png/mediawiki.png index df3d96e6..434b4bcc 100644 Binary files a/png/mediawiki.png and b/png/mediawiki.png differ diff --git a/png/mediux.png b/png/mediux.png new file mode 100644 index 00000000..4bce9d54 Binary files /dev/null and b/png/mediux.png differ diff --git a/png/medusa-light.png b/png/medusa-light.png new file mode 100644 index 00000000..8696b562 Binary files /dev/null and b/png/medusa-light.png differ diff --git a/png/medusa.png b/png/medusa.png index 563ee61e..bcd5ce6d 100644 Binary files a/png/medusa.png and b/png/medusa.png differ diff --git a/png/mega-nz-dark.png b/png/mega-nz-dark.png new file mode 100644 index 00000000..ca74bd03 Binary files /dev/null and b/png/mega-nz-dark.png differ diff --git a/png/mega-nz.png b/png/mega-nz.png index e977c456..003793e5 100644 Binary files a/png/mega-nz.png and b/png/mega-nz.png differ diff --git a/png/meilisearch.png b/png/meilisearch.png new file mode 100644 index 00000000..24493116 Binary files /dev/null and b/png/meilisearch.png differ diff --git a/png/memories-light.png b/png/memories-light.png new file mode 100644 index 00000000..1197fd17 Binary files /dev/null and b/png/memories-light.png differ diff --git a/png/memories.png b/png/memories.png new file mode 100644 index 00000000..d697a5f5 Binary files /dev/null and b/png/memories.png differ diff --git a/png/memos.png b/png/memos.png deleted file mode 100644 index a48b6214..00000000 Binary files a/png/memos.png and /dev/null differ diff --git a/png/mempool.png b/png/mempool.png deleted file mode 100644 index 80066021..00000000 Binary files a/png/mempool.png and /dev/null differ diff --git a/png/meraki.png b/png/meraki.png index a62baa16..e582eb7e 100644 Binary files a/png/meraki.png and b/png/meraki.png differ diff --git a/png/mercusys.png b/png/mercusys.png index 10698725..77ec2b4f 100644 Binary files a/png/mercusys.png and b/png/mercusys.png differ diff --git a/png/mergeable-dark.png b/png/mergeable-dark.png new file mode 100644 index 00000000..2db2efb6 Binary files /dev/null and b/png/mergeable-dark.png differ diff --git a/png/mergeable.png b/png/mergeable.png new file mode 100644 index 00000000..446a2af4 Binary files /dev/null and b/png/mergeable.png differ diff --git a/png/meshcentral.png b/png/meshcentral.png deleted file mode 100644 index 0c3a7a37..00000000 Binary files a/png/meshcentral.png and /dev/null differ diff --git a/png/meshping-light.png b/png/meshping-light.png new file mode 100644 index 00000000..1c897cba Binary files /dev/null and b/png/meshping-light.png differ diff --git a/png/meshping.png b/png/meshping.png new file mode 100644 index 00000000..f1a5819f Binary files /dev/null and b/png/meshping.png differ diff --git a/png/meshtastic.png b/png/meshtastic.png index e5b2f40e..80c4c831 100644 Binary files a/png/meshtastic.png and b/png/meshtastic.png differ diff --git a/png/meta.png b/png/meta.png index 7219e5c1..62807125 100644 Binary files a/png/meta.png and b/png/meta.png differ diff --git a/png/metabase.png b/png/metabase.png index 8249656f..3f3496b9 100644 Binary files a/png/metabase.png and b/png/metabase.png differ diff --git a/png/metube.png b/png/metube.png index af28c27e..baf30d20 100644 Binary files a/png/metube.png and b/png/metube.png differ diff --git a/png/microbin.png b/png/microbin.png deleted file mode 100644 index 83852035..00000000 Binary files a/png/microbin.png and /dev/null differ diff --git a/png/microsoft-365-admin-center.png b/png/microsoft-365-admin-center.png new file mode 100644 index 00000000..e0809491 Binary files /dev/null and b/png/microsoft-365-admin-center.png differ diff --git a/png/microsoft-365.png b/png/microsoft-365.png new file mode 100644 index 00000000..62a0f06b Binary files /dev/null and b/png/microsoft-365.png differ diff --git a/png/microsoft-access.png b/png/microsoft-access.png new file mode 100644 index 00000000..a6a76a1b Binary files /dev/null and b/png/microsoft-access.png differ diff --git a/png/microsoft-azure.png b/png/microsoft-azure.png index 717154f9..3a1e8974 100644 Binary files a/png/microsoft-azure.png and b/png/microsoft-azure.png differ diff --git a/png/microsoft-bing.png b/png/microsoft-bing.png new file mode 100644 index 00000000..e71794df Binary files /dev/null and b/png/microsoft-bing.png differ diff --git a/png/microsoft-copilot.png b/png/microsoft-copilot.png index e4d48a33..3b79b4ca 100644 Binary files a/png/microsoft-copilot.png and b/png/microsoft-copilot.png differ diff --git a/png/microsoft-edge.png b/png/microsoft-edge.png new file mode 100644 index 00000000..fc8429db Binary files /dev/null and b/png/microsoft-edge.png differ diff --git a/png/microsoft-excel.png b/png/microsoft-excel.png new file mode 100644 index 00000000..4e8e2ad5 Binary files /dev/null and b/png/microsoft-excel.png differ diff --git a/png/microsoft-exchange.png b/png/microsoft-exchange.png index ea5c5cdf..7c69f465 100644 Binary files a/png/microsoft-exchange.png and b/png/microsoft-exchange.png differ diff --git a/png/microsoft-office.png b/png/microsoft-office.png index 33516d92..0d77c8f2 100644 Binary files a/png/microsoft-office.png and b/png/microsoft-office.png differ diff --git a/png/microsoft-onedrive.png b/png/microsoft-onedrive.png new file mode 100644 index 00000000..6186ca74 Binary files /dev/null and b/png/microsoft-onedrive.png differ diff --git a/png/microsoft-onenote.png b/png/microsoft-onenote.png new file mode 100644 index 00000000..71297e88 Binary files /dev/null and b/png/microsoft-onenote.png differ diff --git a/png/microsoft-outlook.png b/png/microsoft-outlook.png new file mode 100644 index 00000000..8f11d3bc Binary files /dev/null and b/png/microsoft-outlook.png differ diff --git a/png/microsoft-powerpoint.png b/png/microsoft-powerpoint.png new file mode 100644 index 00000000..67512464 Binary files /dev/null and b/png/microsoft-powerpoint.png differ diff --git a/png/microsoft-sharepoint.png b/png/microsoft-sharepoint.png index d0090008..c6271aae 100644 Binary files a/png/microsoft-sharepoint.png and b/png/microsoft-sharepoint.png differ diff --git a/png/microsoft-sql-server-light.png b/png/microsoft-sql-server-light.png new file mode 100644 index 00000000..c789c687 Binary files /dev/null and b/png/microsoft-sql-server-light.png differ diff --git a/png/microsoft-sql-server.png b/png/microsoft-sql-server.png index a8d38af5..ce2a4724 100644 Binary files a/png/microsoft-sql-server.png and b/png/microsoft-sql-server.png differ diff --git a/png/microsoft-teams.png b/png/microsoft-teams.png index bbc69d95..330190dd 100644 Binary files a/png/microsoft-teams.png and b/png/microsoft-teams.png differ diff --git a/png/microsoft-to-do.png b/png/microsoft-to-do.png new file mode 100644 index 00000000..ab6e374f Binary files /dev/null and b/png/microsoft-to-do.png differ diff --git a/png/microsoft-todo.png b/png/microsoft-todo.png deleted file mode 100644 index 3455bf22..00000000 Binary files a/png/microsoft-todo.png and /dev/null differ diff --git a/png/microsoft-windows.png b/png/microsoft-windows.png new file mode 100644 index 00000000..78d65586 Binary files /dev/null and b/png/microsoft-windows.png differ diff --git a/png/microsoft-word.png b/png/microsoft-word.png new file mode 100644 index 00000000..8878f2e0 Binary files /dev/null and b/png/microsoft-word.png differ diff --git a/png/microsoft.png b/png/microsoft.png index 80074d90..7c07ab3d 100644 Binary files a/png/microsoft.png and b/png/microsoft.png differ diff --git a/png/microsoft365-admin-center.png b/png/microsoft365-admin-center.png deleted file mode 100644 index 7a3c44fc..00000000 Binary files a/png/microsoft365-admin-center.png and /dev/null differ diff --git a/png/midjourney-light.png b/png/midjourney-light.png deleted file mode 100644 index 94159e85..00000000 Binary files a/png/midjourney-light.png and /dev/null differ diff --git a/png/midjourney.png b/png/midjourney.png deleted file mode 100644 index ca6c7cdf..00000000 Binary files a/png/midjourney.png and /dev/null differ diff --git a/png/mikrotik-light.png b/png/mikrotik-light.png new file mode 100644 index 00000000..71df894c Binary files /dev/null and b/png/mikrotik-light.png differ diff --git a/png/mikrotik.png b/png/mikrotik.png index e550ade1..6f7d1abe 100644 Binary files a/png/mikrotik.png and b/png/mikrotik.png differ diff --git a/png/minecraft.png b/png/minecraft.png index 196cf16d..7ae2bb64 100644 Binary files a/png/minecraft.png and b/png/minecraft.png differ diff --git a/png/mineos.png b/png/mineos.png deleted file mode 100644 index e6d343d8..00000000 Binary files a/png/mineos.png and /dev/null differ diff --git a/png/miniflux-light.png b/png/miniflux-light.png index a19be00b..dfb05dc8 100644 Binary files a/png/miniflux-light.png and b/png/miniflux-light.png differ diff --git a/png/miniflux.png b/png/miniflux.png index 3cfa9fd1..4af00d9a 100644 Binary files a/png/miniflux.png and b/png/miniflux.png differ diff --git a/png/minimserver.png b/png/minimserver.png deleted file mode 100644 index c9b72c17..00000000 Binary files a/png/minimserver.png and /dev/null differ diff --git a/png/minio-light.png b/png/minio-light.png index 10bcb35e..12e26d34 100644 Binary files a/png/minio-light.png and b/png/minio-light.png differ diff --git a/png/minio.png b/png/minio.png index 902099fd..c294cee4 100644 Binary files a/png/minio.png and b/png/minio.png differ diff --git a/png/misp.png b/png/misp.png deleted file mode 100644 index 3752c959..00000000 Binary files a/png/misp.png and /dev/null differ diff --git a/png/misskey-light.png b/png/misskey-light.png new file mode 100644 index 00000000..bdf139aa Binary files /dev/null and b/png/misskey-light.png differ diff --git a/png/misskey.png b/png/misskey.png new file mode 100644 index 00000000..d71a49fe Binary files /dev/null and b/png/misskey.png differ diff --git a/png/mitra.png b/png/mitra.png new file mode 100644 index 00000000..f3cfc7d6 Binary files /dev/null and b/png/mitra.png differ diff --git a/png/mixpost.png b/png/mixpost.png new file mode 100644 index 00000000..6ae5accd Binary files /dev/null and b/png/mixpost.png differ diff --git a/png/mkdocs-light.png b/png/mkdocs-light.png new file mode 100644 index 00000000..aedb3357 Binary files /dev/null and b/png/mkdocs-light.png differ diff --git a/png/mkdocs.png b/png/mkdocs.png index 8ad061e3..06f7927a 100644 Binary files a/png/mkdocs.png and b/png/mkdocs.png differ diff --git a/png/mkvtoolnix.png b/png/mkvtoolnix.png deleted file mode 100644 index e74cce7f..00000000 Binary files a/png/mkvtoolnix.png and /dev/null differ diff --git a/png/mobaxterm.png b/png/mobaxterm.png deleted file mode 100644 index 9da4040e..00000000 Binary files a/png/mobaxterm.png and /dev/null differ diff --git a/png/mobilizon.png b/png/mobilizon.png new file mode 100644 index 00000000..b7bd19f1 Binary files /dev/null and b/png/mobilizon.png differ diff --git a/png/mobotix-light.png b/png/mobotix-light.png new file mode 100644 index 00000000..34aed9ff Binary files /dev/null and b/png/mobotix-light.png differ diff --git a/png/mobotix.png b/png/mobotix.png index eb57bd50..cd0500dc 100644 Binary files a/png/mobotix.png and b/png/mobotix.png differ diff --git a/png/modrinth.png b/png/modrinth.png index b9064ea7..1b7ea9bc 100644 Binary files a/png/modrinth.png and b/png/modrinth.png differ diff --git a/png/mojeek.png b/png/mojeek.png index 71be2516..aee52d01 100644 Binary files a/png/mojeek.png and b/png/mojeek.png differ diff --git a/png/molecule.png b/png/molecule.png deleted file mode 100644 index 39578483..00000000 Binary files a/png/molecule.png and /dev/null differ diff --git a/png/monero.png b/png/monero.png index 1b9d76a2..f31eed10 100644 Binary files a/png/monero.png and b/png/monero.png differ diff --git a/png/mongodb.png b/png/mongodb.png index ad580016..10d8565d 100644 Binary files a/png/mongodb.png and b/png/mongodb.png differ diff --git a/png/monica-light.png b/png/monica-light.png new file mode 100644 index 00000000..4cc7ab5f Binary files /dev/null and b/png/monica-light.png differ diff --git a/png/monica.png b/png/monica.png index 7b69f609..1dc40ff6 100644 Binary files a/png/monica.png and b/png/monica.png differ diff --git a/png/monit.png b/png/monit.png deleted file mode 100644 index 1aa76585..00000000 Binary files a/png/monit.png and /dev/null differ diff --git a/png/moodle-light.png b/png/moodle-light.png new file mode 100644 index 00000000..8376a9fe Binary files /dev/null and b/png/moodle-light.png differ diff --git a/png/moodle.png b/png/moodle.png index b747f288..b40ae78f 100644 Binary files a/png/moodle.png and b/png/moodle.png differ diff --git a/png/morphos.png b/png/morphos.png new file mode 100644 index 00000000..7ff3868b Binary files /dev/null and b/png/morphos.png differ diff --git a/png/mosquitto.png b/png/mosquitto.png new file mode 100644 index 00000000..8e7de2b6 Binary files /dev/null and b/png/mosquitto.png differ diff --git a/png/motioneye-dark.png b/png/motioneye-dark.png new file mode 100644 index 00000000..5b6520ce Binary files /dev/null and b/png/motioneye-dark.png differ diff --git a/png/motioneye.png b/png/motioneye.png index c80c85ff..06afaade 100644 Binary files a/png/motioneye.png and b/png/motioneye.png differ diff --git a/png/mpm.png b/png/mpm.png deleted file mode 100644 index e56bd83d..00000000 Binary files a/png/mpm.png and /dev/null differ diff --git a/png/mqtt.png b/png/mqtt.png index ac703e91..73a6908d 100644 Binary files a/png/mqtt.png and b/png/mqtt.png differ diff --git a/png/mstream.png b/png/mstream.png index 27e46f1b..90263b09 100644 Binary files a/png/mstream.png and b/png/mstream.png differ diff --git a/png/mullvad-browser.png b/png/mullvad-browser.png index dafb3301..b9b5b586 100644 Binary files a/png/mullvad-browser.png and b/png/mullvad-browser.png differ diff --git a/png/mullvad-vpn.png b/png/mullvad-vpn.png new file mode 100644 index 00000000..5b0a168f Binary files /dev/null and b/png/mullvad-vpn.png differ diff --git a/png/mullvad.png b/png/mullvad.png index ea3a0b0d..c9f36fbe 100644 Binary files a/png/mullvad.png and b/png/mullvad.png differ diff --git a/png/multi-scrobbler.png b/png/multi-scrobbler.png index aa9ed2cd..bbec9278 100644 Binary files a/png/multi-scrobbler.png and b/png/multi-scrobbler.png differ diff --git a/png/mumble-light.png b/png/mumble-light.png new file mode 100644 index 00000000..5e28da20 Binary files /dev/null and b/png/mumble-light.png differ diff --git a/png/mumble.png b/png/mumble.png index 7aa08dab..20754455 100644 Binary files a/png/mumble.png and b/png/mumble.png differ diff --git a/png/music-assistant-light.png b/png/music-assistant-light.png new file mode 100644 index 00000000..e3d0371e Binary files /dev/null and b/png/music-assistant-light.png differ diff --git a/png/music-assistant.png b/png/music-assistant.png new file mode 100644 index 00000000..9d275037 Binary files /dev/null and b/png/music-assistant.png differ diff --git a/png/musicbrainz.png b/png/musicbrainz.png index 91f3eedb..55155a96 100644 Binary files a/png/musicbrainz.png and b/png/musicbrainz.png differ diff --git a/png/myheats-light.png b/png/myheats-light.png new file mode 100644 index 00000000..2bb3d428 Binary files /dev/null and b/png/myheats-light.png differ diff --git a/png/myheats.png b/png/myheats.png new file mode 100644 index 00000000..48b61b73 Binary files /dev/null and b/png/myheats.png differ diff --git a/png/mylar.png b/png/mylar.png deleted file mode 100644 index b0a391ef..00000000 Binary files a/png/mylar.png and /dev/null differ diff --git a/png/myspeed.png b/png/myspeed.png index 38cc2059..d565e180 100644 Binary files a/png/myspeed.png and b/png/myspeed.png differ diff --git a/png/mysql.png b/png/mysql.png index 9b6b3e4f..64313adf 100644 Binary files a/png/mysql.png and b/png/mysql.png differ diff --git a/png/n8n.png b/png/n8n.png index afa09f66..6e0c23bf 100644 Binary files a/png/n8n.png and b/png/n8n.png differ diff --git a/png/nagios.png b/png/nagios.png index f599bddc..f6e4d25a 100644 Binary files a/png/nagios.png and b/png/nagios.png differ diff --git a/png/nasa.png b/png/nasa.png new file mode 100644 index 00000000..3c2ed298 Binary files /dev/null and b/png/nasa.png differ diff --git a/png/nautical-backup.png b/png/nautical-backup.png deleted file mode 100644 index 062ffc09..00000000 Binary files a/png/nautical-backup.png and /dev/null differ diff --git a/png/navidrome-light.png b/png/navidrome-light.png new file mode 100644 index 00000000..4c41a81c Binary files /dev/null and b/png/navidrome-light.png differ diff --git a/png/navidrome.png b/png/navidrome.png index 72b40bbb..9cef38c9 100644 Binary files a/png/navidrome.png and b/png/navidrome.png differ diff --git a/png/ncore.png b/png/ncore.png deleted file mode 100644 index 010b1c5c..00000000 Binary files a/png/ncore.png and /dev/null differ diff --git a/png/neko-light.png b/png/neko-light.png index 16605e74..35c022e1 100644 Binary files a/png/neko-light.png and b/png/neko-light.png differ diff --git a/png/neko.png b/png/neko.png index 0cad7e97..c40bc35e 100644 Binary files a/png/neko.png and b/png/neko.png differ diff --git a/png/neo4j.png b/png/neo4j.png index aefa1e6c..7936b913 100644 Binary files a/png/neo4j.png and b/png/neo4j.png differ diff --git a/png/neocities.png b/png/neocities.png index 8023dcaf..a5c282a9 100644 Binary files a/png/neocities.png and b/png/neocities.png differ diff --git a/png/neodb.png b/png/neodb.png new file mode 100644 index 00000000..0acb7008 Binary files /dev/null and b/png/neodb.png differ diff --git a/png/neonlink.png b/png/neonlink.png index 6146324e..e91ada78 100644 Binary files a/png/neonlink.png and b/png/neonlink.png differ diff --git a/png/netalertx-light.png b/png/netalertx-light.png new file mode 100644 index 00000000..168bf714 Binary files /dev/null and b/png/netalertx-light.png differ diff --git a/png/netalertx.png b/png/netalertx.png index e7be926c..4009f13f 100644 Binary files a/png/netalertx.png and b/png/netalertx.png differ diff --git a/png/netapp-light.png b/png/netapp-light.png index 48fc6e5b..cfdfdc24 100644 Binary files a/png/netapp-light.png and b/png/netapp-light.png differ diff --git a/png/netapp.png b/png/netapp.png index 59ccb2e7..4b8232fe 100644 Binary files a/png/netapp.png and b/png/netapp.png differ diff --git a/png/netatmo.png b/png/netatmo.png index d5c524e3..25b16ed8 100644 Binary files a/png/netatmo.png and b/png/netatmo.png differ diff --git a/png/netbird.png b/png/netbird.png index 262b0552..cb27c152 100644 Binary files a/png/netbird.png and b/png/netbird.png differ diff --git a/png/netboot.png b/png/netboot.png index 0c334374..cf726e8b 100644 Binary files a/png/netboot.png and b/png/netboot.png differ diff --git a/png/netbox.png b/png/netbox.png index f395fe29..e3926c32 100644 Binary files a/png/netbox.png and b/png/netbox.png differ diff --git a/png/netcam-studio.png b/png/netcam-studio.png deleted file mode 100644 index 83f15e1c..00000000 Binary files a/png/netcam-studio.png and /dev/null differ diff --git a/png/netdata.png b/png/netdata.png index 80078cee..5f2404f4 100644 Binary files a/png/netdata.png and b/png/netdata.png differ diff --git a/png/netflix.png b/png/netflix.png index 304a8332..66708b0e 100644 Binary files a/png/netflix.png and b/png/netflix.png differ diff --git a/png/netgear-light.png b/png/netgear-light.png new file mode 100644 index 00000000..ed7d2004 Binary files /dev/null and b/png/netgear-light.png differ diff --git a/png/netgear-orbi.png b/png/netgear-orbi.png deleted file mode 100644 index f5cf205d..00000000 Binary files a/png/netgear-orbi.png and /dev/null differ diff --git a/png/netgear.png b/png/netgear.png index d42d2fda..5ee50dd6 100644 Binary files a/png/netgear.png and b/png/netgear.png differ diff --git a/png/netlify.png b/png/netlify.png index abed3953..d3121f1a 100644 Binary files a/png/netlify.png and b/png/netlify.png differ diff --git a/png/netmaker.png b/png/netmaker.png deleted file mode 100644 index 06dfb975..00000000 Binary files a/png/netmaker.png and /dev/null differ diff --git a/png/netsurf-light.png b/png/netsurf-light.png new file mode 100644 index 00000000..1dc74d2a Binary files /dev/null and b/png/netsurf-light.png differ diff --git a/png/netsurf.png b/png/netsurf.png index 1c438e8e..48efd85e 100644 Binary files a/png/netsurf.png and b/png/netsurf.png differ diff --git a/png/network-ups-tools.png b/png/network-ups-tools.png old mode 100755 new mode 100644 index ebdcd2cd..0a6cebe1 Binary files a/png/network-ups-tools.png and b/png/network-ups-tools.png differ diff --git a/png/network-weathermap.png b/png/network-weathermap.png deleted file mode 100644 index 401b873c..00000000 Binary files a/png/network-weathermap.png and /dev/null differ diff --git a/png/newegg.png b/png/newegg.png index 5aafca76..395f4fa3 100644 Binary files a/png/newegg.png and b/png/newegg.png differ diff --git a/png/newsblur.png b/png/newsblur.png index 49234c0d..4207a43b 100644 Binary files a/png/newsblur.png and b/png/newsblur.png differ diff --git a/png/nextcloud-blue.png b/png/nextcloud-blue.png index 98b0d904..b4c2777a 100644 Binary files a/png/nextcloud-blue.png and b/png/nextcloud-blue.png differ diff --git a/png/nextcloud-calendar.png b/png/nextcloud-calendar.png index eb8ab62a..4a009644 100644 Binary files a/png/nextcloud-calendar.png and b/png/nextcloud-calendar.png differ diff --git a/png/nextcloud-contacts.png b/png/nextcloud-contacts.png index 574fc04d..518d3c87 100644 Binary files a/png/nextcloud-contacts.png and b/png/nextcloud-contacts.png differ diff --git a/png/nextcloud-cookbook.png b/png/nextcloud-cookbook.png index cd320f35..1cbefc9c 100644 Binary files a/png/nextcloud-cookbook.png and b/png/nextcloud-cookbook.png differ diff --git a/png/nextcloud-cospend.png b/png/nextcloud-cospend.png index e777d6b5..124e3d50 100644 Binary files a/png/nextcloud-cospend.png and b/png/nextcloud-cospend.png differ diff --git a/png/nextcloud-deck.png b/png/nextcloud-deck.png index d0febe2f..b50dfc97 100644 Binary files a/png/nextcloud-deck.png and b/png/nextcloud-deck.png differ diff --git a/png/nextcloud-files.png b/png/nextcloud-files.png index 163d5bc4..63f48e53 100644 Binary files a/png/nextcloud-files.png and b/png/nextcloud-files.png differ diff --git a/png/nextcloud-ncdownloader.png b/png/nextcloud-ncdownloader.png index b8f76249..71c08623 100644 Binary files a/png/nextcloud-ncdownloader.png and b/png/nextcloud-ncdownloader.png differ diff --git a/png/nextcloud-news.png b/png/nextcloud-news.png index ab71cda1..7bc95962 100644 Binary files a/png/nextcloud-news.png and b/png/nextcloud-news.png differ diff --git a/png/nextcloud-notes.png b/png/nextcloud-notes.png index 66e3c048..2ec51b8e 100644 Binary files a/png/nextcloud-notes.png and b/png/nextcloud-notes.png differ diff --git a/png/nextcloud-photos.png b/png/nextcloud-photos.png index 8b04309a..5ad44819 100644 Binary files a/png/nextcloud-photos.png and b/png/nextcloud-photos.png differ diff --git a/png/nextcloud-social.png b/png/nextcloud-social.png new file mode 100644 index 00000000..ce7036b2 Binary files /dev/null and b/png/nextcloud-social.png differ diff --git a/png/nextcloud-tables.png b/png/nextcloud-tables.png new file mode 100644 index 00000000..df928d0e Binary files /dev/null and b/png/nextcloud-tables.png differ diff --git a/png/nextcloud-talk.png b/png/nextcloud-talk.png deleted file mode 100644 index 8456e27c..00000000 Binary files a/png/nextcloud-talk.png and /dev/null differ diff --git a/png/nextcloud-tasks.png b/png/nextcloud-tasks.png index 177204c1..86e1c40e 100644 Binary files a/png/nextcloud-tasks.png and b/png/nextcloud-tasks.png differ diff --git a/png/nextcloud-timemanager.png b/png/nextcloud-timemanager.png index 25fe3fab..76876010 100644 Binary files a/png/nextcloud-timemanager.png and b/png/nextcloud-timemanager.png differ diff --git a/png/nextcloud-white.png b/png/nextcloud-white.png index ea63e338..83ab62b4 100644 Binary files a/png/nextcloud-white.png and b/png/nextcloud-white.png differ diff --git a/png/nextcloud.png b/png/nextcloud.png index 7adc9c83..70987521 100644 Binary files a/png/nextcloud.png and b/png/nextcloud.png differ diff --git a/png/nextcloudpi.png b/png/nextcloudpi.png new file mode 100644 index 00000000..28099c3f Binary files /dev/null and b/png/nextcloudpi.png differ diff --git a/png/nextdns.png b/png/nextdns.png index a3db99c5..d7be7496 100644 Binary files a/png/nextdns.png and b/png/nextdns.png differ diff --git a/png/nexterm.png b/png/nexterm.png new file mode 100644 index 00000000..0974d0de Binary files /dev/null and b/png/nexterm.png differ diff --git a/png/nextjs-light.png b/png/nextjs-light.png new file mode 100644 index 00000000..6fd3b79d Binary files /dev/null and b/png/nextjs-light.png differ diff --git a/png/nextjs.png b/png/nextjs.png index fdc26757..00770f7e 100644 Binary files a/png/nextjs.png and b/png/nextjs.png differ diff --git a/png/nextpvr.png b/png/nextpvr.png deleted file mode 100644 index 7afc497a..00000000 Binary files a/png/nextpvr.png and /dev/null differ diff --git a/png/nginx-proxy-manager.png b/png/nginx-proxy-manager.png index 95dad95e..df445851 100644 Binary files a/png/nginx-proxy-manager.png and b/png/nginx-proxy-manager.png differ diff --git a/png/nginx.png b/png/nginx.png index 639fe197..9a2f06d7 100644 Binary files a/png/nginx.png and b/png/nginx.png differ diff --git a/png/nicotine-plus.png b/png/nicotine-plus.png index b3999160..79049d64 100644 Binary files a/png/nicotine-plus.png and b/png/nicotine-plus.png differ diff --git a/png/nightscout-light.png b/png/nightscout-light.png index a2ae9222..bdd3e0f2 100644 Binary files a/png/nightscout-light.png and b/png/nightscout-light.png differ diff --git a/png/nightscout.png b/png/nightscout.png index 8951e599..b4b4217f 100644 Binary files a/png/nightscout.png and b/png/nightscout.png differ diff --git a/png/nintendo-switch.png b/png/nintendo-switch.png new file mode 100644 index 00000000..feed58be Binary files /dev/null and b/png/nintendo-switch.png differ diff --git a/png/nitter.png b/png/nitter.png index c04a90e3..bdbcc3ff 100644 Binary files a/png/nitter.png and b/png/nitter.png differ diff --git a/png/nixos.png b/png/nixos.png new file mode 100644 index 00000000..2ab507c0 Binary files /dev/null and b/png/nixos.png differ diff --git a/png/nocobase-light.png b/png/nocobase-light.png deleted file mode 100644 index cababa8c..00000000 Binary files a/png/nocobase-light.png and /dev/null differ diff --git a/png/nocobase.png b/png/nocobase.png deleted file mode 100644 index 1ae46135..00000000 Binary files a/png/nocobase.png and /dev/null differ diff --git a/png/nocodb.png b/png/nocodb.png index 62fe4210..2960f561 100644 Binary files a/png/nocodb.png and b/png/nocodb.png differ diff --git a/png/node-red.png b/png/node-red.png index 3b77a8ad..b78c9cd4 100644 Binary files a/png/node-red.png and b/png/node-red.png differ diff --git a/png/nodebb.png b/png/nodebb.png new file mode 100644 index 00000000..3bbf6669 Binary files /dev/null and b/png/nodebb.png differ diff --git a/png/nodejs-alt.png b/png/nodejs-alt.png index 2462d310..69c491b1 100644 Binary files a/png/nodejs-alt.png and b/png/nodejs-alt.png differ diff --git a/png/nodejs.png b/png/nodejs.png index e8a2c343..897bf87d 100644 Binary files a/png/nodejs.png and b/png/nodejs.png differ diff --git a/png/nomad.png b/png/nomad.png index 37b289de..7cf6a001 100644 Binary files a/png/nomad.png and b/png/nomad.png differ diff --git a/png/nomie.png b/png/nomie.png index 0c7abf6e..a4def597 100644 Binary files a/png/nomie.png and b/png/nomie.png differ diff --git a/png/nordvpn.png b/png/nordvpn.png index 245a96b0..89e44bcc 100644 Binary files a/png/nordvpn.png and b/png/nordvpn.png differ diff --git a/png/note-mark.png b/png/note-mark.png new file mode 100644 index 00000000..cfc4c975 Binary files /dev/null and b/png/note-mark.png differ diff --git a/png/notesnook-light.png b/png/notesnook-light.png index c0d10d1c..b3a716af 100644 Binary files a/png/notesnook-light.png and b/png/notesnook-light.png differ diff --git a/png/notesnook.png b/png/notesnook.png index 977ee27c..f17e84f8 100644 Binary files a/png/notesnook.png and b/png/notesnook.png differ diff --git a/png/notifiarr.png b/png/notifiarr.png deleted file mode 100644 index ffdccd3b..00000000 Binary files a/png/notifiarr.png and /dev/null differ diff --git a/png/notion-light.png b/png/notion-light.png index a447c5a6..5045f839 100644 Binary files a/png/notion-light.png and b/png/notion-light.png differ diff --git a/png/notion.png b/png/notion.png index 84f319be..43498f6e 100644 Binary files a/png/notion.png and b/png/notion.png differ diff --git a/png/nowshowing.png b/png/nowshowing.png deleted file mode 100644 index 4a75e2dd..00000000 Binary files a/png/nowshowing.png and /dev/null differ diff --git a/png/ntfy-light.png b/png/ntfy-light.png deleted file mode 100644 index 9d6ddc56..00000000 Binary files a/png/ntfy-light.png and /dev/null differ diff --git a/png/ntfy.png b/png/ntfy.png index fd7760af..97ed31c0 100644 Binary files a/png/ntfy.png and b/png/ntfy.png differ diff --git a/png/ntop.png b/png/ntop.png deleted file mode 100644 index bd4c64d0..00000000 Binary files a/png/ntop.png and /dev/null differ diff --git a/png/ntopng.png b/png/ntopng.png deleted file mode 100644 index c7bc8a50..00000000 Binary files a/png/ntopng.png and /dev/null differ diff --git a/png/nut.png b/png/nut.png old mode 100755 new mode 100644 index ebdcd2cd..7f718e62 Binary files a/png/nut.png and b/png/nut.png differ diff --git a/png/nvidia.png b/png/nvidia.png new file mode 100644 index 00000000..00efea0d Binary files /dev/null and b/png/nvidia.png differ diff --git a/png/nxfilter.png b/png/nxfilter.png deleted file mode 100644 index 457ed9d7..00000000 Binary files a/png/nxfilter.png and /dev/null differ diff --git a/png/nxlog.png b/png/nxlog.png deleted file mode 100644 index f6894416..00000000 Binary files a/png/nxlog.png and /dev/null differ diff --git a/png/nzbget.png b/png/nzbget.png deleted file mode 100644 index faedd800..00000000 Binary files a/png/nzbget.png and /dev/null differ diff --git a/png/nzbhydra.png b/png/nzbhydra.png deleted file mode 100644 index 3ae78c6b..00000000 Binary files a/png/nzbhydra.png and /dev/null differ diff --git a/png/nzbhydra2-light.png b/png/nzbhydra2-light.png index b9a7c5ae..7e6ed4c8 100644 Binary files a/png/nzbhydra2-light.png and b/png/nzbhydra2-light.png differ diff --git a/png/nzbhydra2.png b/png/nzbhydra2.png index 6dcb263f..172c55a5 100644 Binary files a/png/nzbhydra2.png and b/png/nzbhydra2.png differ diff --git a/png/obico.png b/png/obico.png index 2064a46b..56abf1a3 100644 Binary files a/png/obico.png and b/png/obico.png differ diff --git a/png/obitalk.png b/png/obitalk.png deleted file mode 100644 index 787061ed..00000000 Binary files a/png/obitalk.png and /dev/null differ diff --git a/png/observium.png b/png/observium.png deleted file mode 100644 index cb426d95..00000000 Binary files a/png/observium.png and /dev/null differ diff --git a/png/observo-ai.png b/png/observo-ai.png deleted file mode 100644 index 8e7bafef..00000000 Binary files a/png/observo-ai.png and /dev/null differ diff --git a/png/obsidian.png b/png/obsidian.png index 6ac8fac1..37468bdf 100644 Binary files a/png/obsidian.png and b/png/obsidian.png differ diff --git a/png/obtainium.png b/png/obtainium.png new file mode 100644 index 00000000..b7fe6fa7 Binary files /dev/null and b/png/obtainium.png differ diff --git a/png/octoeverywhere.png b/png/octoeverywhere.png deleted file mode 100644 index 717cdecc..00000000 Binary files a/png/octoeverywhere.png and /dev/null differ diff --git a/png/octoprint.png b/png/octoprint.png index 623365fa..d7ccf93f 100644 Binary files a/png/octoprint.png and b/png/octoprint.png differ diff --git a/png/oculus-light.png b/png/oculus-light.png index 13ec079e..71fce1ca 100644 Binary files a/png/oculus-light.png and b/png/oculus-light.png differ diff --git a/png/oculus.png b/png/oculus.png index d9ce3a04..4dfd305c 100644 Binary files a/png/oculus.png and b/png/oculus.png differ diff --git a/png/odoo.png b/png/odoo.png index dc02b27c..50d02698 100644 Binary files a/png/odoo.png and b/png/odoo.png differ diff --git a/png/office-365.png b/png/office-365.png index b719ed30..f3c41e4e 100644 Binary files a/png/office-365.png and b/png/office-365.png differ diff --git a/png/olivetin-light.png b/png/olivetin-light.png new file mode 100644 index 00000000..2cd0cdfd Binary files /dev/null and b/png/olivetin-light.png differ diff --git a/png/olivetin.png b/png/olivetin.png index 4ef39910..8aeafd38 100644 Binary files a/png/olivetin.png and b/png/olivetin.png differ diff --git a/png/ollama.png b/png/ollama.png index bc469071..f7525ddb 100644 Binary files a/png/ollama.png and b/png/ollama.png differ diff --git a/png/omada.png b/png/omada.png index 93ed26a1..6ae4ea58 100644 Binary files a/png/omada.png and b/png/omada.png differ diff --git a/png/ombi.png b/png/ombi.png index 50857c94..d034489c 100644 Binary files a/png/ombi.png and b/png/ombi.png differ diff --git a/png/omnidb.png b/png/omnidb.png index afa4d125..7e5ddd01 100644 Binary files a/png/omnidb.png and b/png/omnidb.png differ diff --git a/png/omnivore.png b/png/omnivore.png new file mode 100644 index 00000000..2b9bb628 Binary files /dev/null and b/png/omnivore.png differ diff --git a/png/onedev-light.png b/png/onedev-light.png index 5b79523f..4d6f0d36 100644 Binary files a/png/onedev-light.png and b/png/onedev-light.png differ diff --git a/png/onedev.png b/png/onedev.png index ea6fb045..d5d5cf8c 100644 Binary files a/png/onedev.png and b/png/onedev.png differ diff --git a/png/oneuptime-light.png b/png/oneuptime-light.png new file mode 100644 index 00000000..1c236156 Binary files /dev/null and b/png/oneuptime-light.png differ diff --git a/png/oneuptime.png b/png/oneuptime.png new file mode 100644 index 00000000..83bd0902 Binary files /dev/null and b/png/oneuptime.png differ diff --git a/png/onlyoffice.png b/png/onlyoffice.png index eba4f00c..6de4c135 100644 Binary files a/png/onlyoffice.png and b/png/onlyoffice.png differ diff --git a/png/open-resume.png b/png/open-resume.png index 3028c9b0..a9f2617b 100644 Binary files a/png/open-resume.png and b/png/open-resume.png differ diff --git a/png/open-source-initiative.png b/png/open-source-initiative.png new file mode 100644 index 00000000..92a35e16 Binary files /dev/null and b/png/open-source-initiative.png differ diff --git a/png/open-webui-light.png b/png/open-webui-light.png deleted file mode 100644 index 6afdd3ac..00000000 Binary files a/png/open-webui-light.png and /dev/null differ diff --git a/png/open-webui.png b/png/open-webui.png deleted file mode 100644 index 4ec052fe..00000000 Binary files a/png/open-webui.png and /dev/null differ diff --git a/png/openai-light.png b/png/openai-light.png index 65e7a58e..7eefbf1d 100644 Binary files a/png/openai-light.png and b/png/openai-light.png differ diff --git a/png/openai.png b/png/openai.png index bbff3092..f31043a8 100644 Binary files a/png/openai.png and b/png/openai.png differ diff --git a/png/openchangelog-light.png b/png/openchangelog-light.png new file mode 100644 index 00000000..54526190 Binary files /dev/null and b/png/openchangelog-light.png differ diff --git a/png/openchangelog.png b/png/openchangelog.png new file mode 100644 index 00000000..99e1f830 Binary files /dev/null and b/png/openchangelog.png differ diff --git a/png/openeats-light.png b/png/openeats-light.png new file mode 100644 index 00000000..16b0b26d Binary files /dev/null and b/png/openeats-light.png differ diff --git a/png/openeats.png b/png/openeats.png index 30fb1867..0bef255d 100644 Binary files a/png/openeats.png and b/png/openeats.png differ diff --git a/png/openemr-light.png b/png/openemr-light.png new file mode 100644 index 00000000..ae7ee2bb Binary files /dev/null and b/png/openemr-light.png differ diff --git a/png/openemr.png b/png/openemr.png new file mode 100644 index 00000000..e02c132b Binary files /dev/null and b/png/openemr.png differ diff --git a/png/opengarage.png b/png/opengarage.png deleted file mode 100644 index 9f87cc3a..00000000 Binary files a/png/opengarage.png and /dev/null differ diff --git a/png/opengist-light.png b/png/opengist-light.png index 91a8dcf3..ff33e675 100644 Binary files a/png/opengist-light.png and b/png/opengist-light.png differ diff --git a/png/opengist.png b/png/opengist.png index daec6d22..413ae61e 100644 Binary files a/png/opengist.png and b/png/opengist.png differ diff --git a/png/openhab.png b/png/openhab.png index 35b278a5..107528bf 100644 Binary files a/png/openhab.png and b/png/openhab.png differ diff --git a/png/openldap.png b/png/openldap.png new file mode 100644 index 00000000..6186080a Binary files /dev/null and b/png/openldap.png differ diff --git a/png/openmaptiles.png b/png/openmaptiles.png deleted file mode 100644 index 8756f5d8..00000000 Binary files a/png/openmaptiles.png and /dev/null differ diff --git a/png/openmediavault.png b/png/openmediavault.png index 707d4175..f13949d7 100644 Binary files a/png/openmediavault.png and b/png/openmediavault.png differ diff --git a/png/openoffice.png b/png/openoffice.png index f1b680e7..c8feb075 100644 Binary files a/png/openoffice.png and b/png/openoffice.png differ diff --git a/png/openpanel-light.png b/png/openpanel-light.png new file mode 100644 index 00000000..851839f9 Binary files /dev/null and b/png/openpanel-light.png differ diff --git a/png/openpanel.png b/png/openpanel.png new file mode 100644 index 00000000..cf7b31b7 Binary files /dev/null and b/png/openpanel.png differ diff --git a/png/openproject.png b/png/openproject.png index ad8bcb02..04e66c15 100644 Binary files a/png/openproject.png and b/png/openproject.png differ diff --git a/png/openreads.png b/png/openreads.png new file mode 100644 index 00000000..2a7d7462 Binary files /dev/null and b/png/openreads.png differ diff --git a/png/opensearch.png b/png/opensearch.png index dc3d0a2e..c2593df5 100644 Binary files a/png/opensearch.png and b/png/opensearch.png differ diff --git a/png/openspeedtest.png b/png/openspeedtest.png index 88800045..7db42644 100644 Binary files a/png/openspeedtest.png and b/png/openspeedtest.png differ diff --git a/png/opensprinkler.png b/png/opensprinkler.png deleted file mode 100644 index 551ab229..00000000 Binary files a/png/opensprinkler.png and /dev/null differ diff --git a/png/openstack.png b/png/openstack.png index cd463d62..154768b6 100644 Binary files a/png/openstack.png and b/png/openstack.png differ diff --git a/png/openstreetmap.png b/png/openstreetmap.png index dd46f68f..3e81b6e8 100644 Binary files a/png/openstreetmap.png and b/png/openstreetmap.png differ diff --git a/png/opensuse.png b/png/opensuse.png index 74a8148d..678ad280 100644 Binary files a/png/opensuse.png and b/png/opensuse.png differ diff --git a/png/opentalk.png b/png/opentalk.png new file mode 100644 index 00000000..f5ba40e3 Binary files /dev/null and b/png/opentalk.png differ diff --git a/png/opentofu.png b/png/opentofu.png new file mode 100644 index 00000000..b85d3567 Binary files /dev/null and b/png/opentofu.png differ diff --git a/png/openvas.png b/png/openvas.png index a3705fa9..e9d6850d 100644 Binary files a/png/openvas.png and b/png/openvas.png differ diff --git a/png/openvpn.png b/png/openvpn.png index f4efac59..5ba690f5 100644 Binary files a/png/openvpn.png and b/png/openvpn.png differ diff --git a/png/openwrt.png b/png/openwrt.png index 247ecc49..3700f1ff 100644 Binary files a/png/openwrt.png and b/png/openwrt.png differ diff --git a/png/opera-beta.png b/png/opera-beta.png deleted file mode 100644 index cf871683..00000000 Binary files a/png/opera-beta.png and /dev/null differ diff --git a/png/opera-developer.png b/png/opera-developer.png deleted file mode 100644 index 8d5eda58..00000000 Binary files a/png/opera-developer.png and /dev/null differ diff --git a/png/opera-mini-beta.png b/png/opera-mini-beta.png deleted file mode 100644 index c3fc28fa..00000000 Binary files a/png/opera-mini-beta.png and /dev/null differ diff --git a/png/opera-mini.png b/png/opera-mini.png deleted file mode 100644 index b59f8777..00000000 Binary files a/png/opera-mini.png and /dev/null differ diff --git a/png/opera-neon.png b/png/opera-neon.png deleted file mode 100644 index c53dff62..00000000 Binary files a/png/opera-neon.png and /dev/null differ diff --git a/png/opera-touch.png b/png/opera-touch.png index 75a06939..ecc9d9ae 100644 Binary files a/png/opera-touch.png and b/png/opera-touch.png differ diff --git a/png/opera.png b/png/opera.png index 01c03bbb..480e9ff1 100644 Binary files a/png/opera.png and b/png/opera.png differ diff --git a/png/opnform.png b/png/opnform.png new file mode 100644 index 00000000..4333a8ee Binary files /dev/null and b/png/opnform.png differ diff --git a/png/opnsense.png b/png/opnsense.png index 18b295b0..ff5028b2 100644 Binary files a/png/opnsense.png and b/png/opnsense.png differ diff --git a/png/oracle-cloud.png b/png/oracle-cloud.png index c1d84a2a..9cac576c 100644 Binary files a/png/oracle-cloud.png and b/png/oracle-cloud.png differ diff --git a/png/oracle.png b/png/oracle.png index c1d84a2a..9cac576c 100644 Binary files a/png/oracle.png and b/png/oracle.png differ diff --git a/png/orange.png b/png/orange.png index 066dfa6c..f0f18960 100644 Binary files a/png/orange.png and b/png/orange.png differ diff --git a/png/orcaslicer.png b/png/orcaslicer.png deleted file mode 100644 index 2ae399e4..00000000 Binary files a/png/orcaslicer.png and /dev/null differ diff --git a/png/organizr.png b/png/organizr.png deleted file mode 100644 index a757ccd0..00000000 Binary files a/png/organizr.png and /dev/null differ diff --git a/png/origin.png b/png/origin.png index 2f49eaa9..8081bfc2 100644 Binary files a/png/origin.png and b/png/origin.png differ diff --git a/png/oscarr-light.png b/png/oscarr-light.png index 5f4d8be1..cd8cac39 100644 Binary files a/png/oscarr-light.png and b/png/oscarr-light.png differ diff --git a/png/oscarr.png b/png/oscarr.png index 8d1aa03c..2f6dbcc8 100644 Binary files a/png/oscarr.png and b/png/oscarr.png differ diff --git a/png/osticket.png b/png/osticket.png index 6a8499ba..4173c7a3 100644 Binary files a/png/osticket.png and b/png/osticket.png differ diff --git a/png/outline-light.png b/png/outline-light.png new file mode 100644 index 00000000..06b20df9 Binary files /dev/null and b/png/outline-light.png differ diff --git a/png/outline.png b/png/outline.png index 9800808f..187afc8e 100644 Binary files a/png/outline.png and b/png/outline.png differ diff --git a/png/overclockers.png b/png/overclockers.png deleted file mode 100644 index c7c84712..00000000 Binary files a/png/overclockers.png and /dev/null differ diff --git a/png/overleaf.png b/png/overleaf.png index 09df7052..cdcca434 100644 Binary files a/png/overleaf.png and b/png/overleaf.png differ diff --git a/png/overseerr.png b/png/overseerr.png index a847d270..2f4f1b58 100644 Binary files a/png/overseerr.png and b/png/overseerr.png differ diff --git a/png/ovh.png b/png/ovh.png index 40db686e..6fa4b2af 100644 Binary files a/png/ovh.png and b/png/ovh.png differ diff --git a/png/ovirt-light.png b/png/ovirt-light.png new file mode 100644 index 00000000..bba531f6 Binary files /dev/null and b/png/ovirt-light.png differ diff --git a/png/ovirt.png b/png/ovirt.png index 8a231ea6..ba4128f5 100644 Binary files a/png/ovirt.png and b/png/ovirt.png differ diff --git a/png/owasp-zap.png b/png/owasp-zap.png deleted file mode 100644 index c5b02f9d..00000000 Binary files a/png/owasp-zap.png and /dev/null differ diff --git a/png/owncast.png b/png/owncast.png new file mode 100644 index 00000000..b7b5b572 Binary files /dev/null and b/png/owncast.png differ diff --git a/png/owncloud.png b/png/owncloud.png index 2696558b..e9ff9bf1 100644 Binary files a/png/owncloud.png and b/png/owncloud.png differ diff --git a/png/ownphotos-light.png b/png/ownphotos-light.png deleted file mode 100644 index 033dd1a3..00000000 Binary files a/png/ownphotos-light.png and /dev/null differ diff --git a/png/ownphotos.png b/png/ownphotos.png deleted file mode 100644 index 988d5944..00000000 Binary files a/png/ownphotos.png and /dev/null differ diff --git a/png/owntone.png b/png/owntone.png index 79a09bd7..ae57fba8 100644 Binary files a/png/owntone.png and b/png/owntone.png differ diff --git a/png/owntracks.png b/png/owntracks.png index a1864fbe..0ed77307 100644 Binary files a/png/owntracks.png and b/png/owntracks.png differ diff --git a/png/oxker-light.png b/png/oxker-light.png new file mode 100644 index 00000000..82772975 Binary files /dev/null and b/png/oxker-light.png differ diff --git a/png/oxker.png b/png/oxker.png new file mode 100644 index 00000000..19130367 Binary files /dev/null and b/png/oxker.png differ diff --git a/png/p1ib.png b/png/p1ib.png index 92d4391a..0f555953 100644 Binary files a/png/p1ib.png and b/png/p1ib.png differ diff --git a/png/pagerduty.png b/png/pagerduty.png index fd7b44c5..532f612e 100644 Binary files a/png/pagerduty.png and b/png/pagerduty.png differ diff --git a/png/pairdrop.png b/png/pairdrop.png deleted file mode 100644 index 2f90a4a8..00000000 Binary files a/png/pairdrop.png and /dev/null differ diff --git a/png/palemoon.png b/png/palemoon.png index dc8828ac..7049c9e3 100644 Binary files a/png/palemoon.png and b/png/palemoon.png differ diff --git a/png/palo-alto.png b/png/palo-alto.png index 650ff047..12550d52 100644 Binary files a/png/palo-alto.png and b/png/palo-alto.png differ diff --git a/png/paperless-ng.png b/png/paperless-ng.png index ecb9283a..ec53cae1 100644 Binary files a/png/paperless-ng.png and b/png/paperless-ng.png differ diff --git a/png/paperless-ngx.png b/png/paperless-ngx.png index ecb9283a..eb2da354 100644 Binary files a/png/paperless-ngx.png and b/png/paperless-ngx.png differ diff --git a/png/paperless.png b/png/paperless.png index 5705d3c4..a40f795c 100644 Binary files a/png/paperless.png and b/png/paperless.png differ diff --git a/png/papermark-light.png b/png/papermark-light.png new file mode 100644 index 00000000..af2f6b1b Binary files /dev/null and b/png/papermark-light.png differ diff --git a/png/papermark.png b/png/papermark.png new file mode 100644 index 00000000..1ad101b0 Binary files /dev/null and b/png/papermark.png differ diff --git a/png/papermerge-light.png b/png/papermerge-light.png new file mode 100644 index 00000000..3671cd85 Binary files /dev/null and b/png/papermerge-light.png differ diff --git a/png/papermerge.png b/png/papermerge.png index 1933a350..286a595e 100644 Binary files a/png/papermerge.png and b/png/papermerge.png differ diff --git a/png/parseable.png b/png/parseable.png new file mode 100644 index 00000000..3ecf1ce1 Binary files /dev/null and b/png/parseable.png differ diff --git a/png/part-db-light.png b/png/part-db-light.png index 175df9b5..4f8a810b 100644 Binary files a/png/part-db-light.png and b/png/part-db-light.png differ diff --git a/png/part-db.png b/png/part-db.png index 97bebba1..4d9350f2 100644 Binary files a/png/part-db.png and b/png/part-db.png differ diff --git a/png/partkeepr.png b/png/partkeepr.png index 655b172b..6fab29be 100644 Binary files a/png/partkeepr.png and b/png/partkeepr.png differ diff --git a/png/passbolt.png b/png/passbolt.png index 155e05db..806d8e80 100644 Binary files a/png/passbolt.png and b/png/passbolt.png differ diff --git a/png/passwordpusher-light.png b/png/passwordpusher-light.png deleted file mode 100644 index 79c6d29d..00000000 Binary files a/png/passwordpusher-light.png and /dev/null differ diff --git a/png/passwordpusher.png b/png/passwordpusher.png deleted file mode 100644 index 89b8bc33..00000000 Binary files a/png/passwordpusher.png and /dev/null differ diff --git a/png/passwork.png b/png/passwork.png index 6bcc701b..113df0f3 100644 Binary files a/png/passwork.png and b/png/passwork.png differ diff --git a/png/pastatool-light.png b/png/pastatool-light.png deleted file mode 100644 index 49b16c0e..00000000 Binary files a/png/pastatool-light.png and /dev/null differ diff --git a/png/pastatool.png b/png/pastatool.png deleted file mode 100644 index ccc1db24..00000000 Binary files a/png/pastatool.png and /dev/null differ diff --git a/png/pastebin-dark.png b/png/pastebin-dark.png new file mode 100644 index 00000000..75b1d1ec Binary files /dev/null and b/png/pastebin-dark.png differ diff --git a/png/pastebin.png b/png/pastebin.png index 7d494d81..2d815438 100644 Binary files a/png/pastebin.png and b/png/pastebin.png differ diff --git a/png/pastey.png b/png/pastey.png deleted file mode 100644 index db4ab970..00000000 Binary files a/png/pastey.png and /dev/null differ diff --git a/png/patreon-light.png b/png/patreon-light.png new file mode 100644 index 00000000..12dcc472 Binary files /dev/null and b/png/patreon-light.png differ diff --git a/png/patreon-white.png b/png/patreon-white.png deleted file mode 100644 index 5f475f59..00000000 Binary files a/png/patreon-white.png and /dev/null differ diff --git a/png/patreon.png b/png/patreon.png index 32b6e146..24f76652 100644 Binary files a/png/patreon.png and b/png/patreon.png differ diff --git a/png/payload-light.png b/png/payload-light.png new file mode 100644 index 00000000..e9d14282 Binary files /dev/null and b/png/payload-light.png differ diff --git a/png/payload.png b/png/payload.png new file mode 100644 index 00000000..a7c0913b Binary files /dev/null and b/png/payload.png differ diff --git a/png/paypal.png b/png/paypal.png index a64e8ff3..f4e711d4 100644 Binary files a/png/paypal.png and b/png/paypal.png differ diff --git a/png/pdfding-light.png b/png/pdfding-light.png new file mode 100644 index 00000000..8a7d0c14 Binary files /dev/null and b/png/pdfding-light.png differ diff --git a/png/pdfding.png b/png/pdfding.png new file mode 100644 index 00000000..279028e1 Binary files /dev/null and b/png/pdfding.png differ diff --git a/png/peacock-light.png b/png/peacock-light.png new file mode 100644 index 00000000..977f2183 Binary files /dev/null and b/png/peacock-light.png differ diff --git a/png/peacock.png b/png/peacock.png new file mode 100644 index 00000000..9a15c29b Binary files /dev/null and b/png/peacock.png differ diff --git a/png/peanut-light.png b/png/peanut-light.png new file mode 100644 index 00000000..caead99d Binary files /dev/null and b/png/peanut-light.png differ diff --git a/png/peanut.png b/png/peanut.png index f484e9ad..d4dc910d 100644 Binary files a/png/peanut.png and b/png/peanut.png differ diff --git a/png/peertube.png b/png/peertube.png index df699299..d30d30ba 100644 Binary files a/png/peertube.png and b/png/peertube.png differ diff --git a/png/pelican-panel.png b/png/pelican-panel.png new file mode 100644 index 00000000..ff006c33 Binary files /dev/null and b/png/pelican-panel.png differ diff --git a/png/penpot-light.png b/png/penpot-light.png index 1ac4b162..247a09e6 100644 Binary files a/png/penpot-light.png and b/png/penpot-light.png differ diff --git a/png/penpot.png b/png/penpot.png index 5b596232..715c3e94 100644 Binary files a/png/penpot.png and b/png/penpot.png differ diff --git a/png/peppermint.png b/png/peppermint.png new file mode 100644 index 00000000..c5a433fb Binary files /dev/null and b/png/peppermint.png differ diff --git a/png/pepperminty-wiki.png b/png/pepperminty-wiki.png new file mode 100644 index 00000000..8817d622 Binary files /dev/null and b/png/pepperminty-wiki.png differ diff --git a/png/perlite.png b/png/perlite.png index 7c754fe6..70895318 100644 Binary files a/png/perlite.png and b/png/perlite.png differ diff --git a/png/petio.png b/png/petio.png deleted file mode 100644 index 50fca22c..00000000 Binary files a/png/petio.png and /dev/null differ diff --git a/png/pfsense-light.png b/png/pfsense-light.png new file mode 100644 index 00000000..8ab4e533 Binary files /dev/null and b/png/pfsense-light.png differ diff --git a/png/pfsense.png b/png/pfsense.png index 819a2847..7f084ef4 100644 Binary files a/png/pfsense.png and b/png/pfsense.png differ diff --git a/png/pg-back-web.png b/png/pg-back-web.png new file mode 100644 index 00000000..664f167e Binary files /dev/null and b/png/pg-back-web.png differ diff --git a/png/pgadmin.png b/png/pgadmin.png index a42f574f..18b8bdf8 100644 Binary files a/png/pgadmin.png and b/png/pgadmin.png differ diff --git a/png/phanpy.png b/png/phanpy.png new file mode 100644 index 00000000..81ea2347 Binary files /dev/null and b/png/phanpy.png differ diff --git a/png/phantombot.png b/png/phantombot.png deleted file mode 100644 index 9c35938c..00000000 Binary files a/png/phantombot.png and /dev/null differ diff --git a/png/phoneinfoga-light.png b/png/phoneinfoga-light.png index f7981d04..295bb3bd 100644 Binary files a/png/phoneinfoga-light.png and b/png/phoneinfoga-light.png differ diff --git a/png/phoneinfoga.png b/png/phoneinfoga.png index 7d983f21..5e340648 100644 Binary files a/png/phoneinfoga.png and b/png/phoneinfoga.png differ diff --git a/png/phorge-light.png b/png/phorge-light.png new file mode 100644 index 00000000..d47a60bb Binary files /dev/null and b/png/phorge-light.png differ diff --git a/png/phorge.png b/png/phorge.png new file mode 100644 index 00000000..870e4e19 Binary files /dev/null and b/png/phorge.png differ diff --git a/png/phoscon-light.png b/png/phoscon-light.png index 96877b68..8cdd8d7b 100644 Binary files a/png/phoscon-light.png and b/png/phoscon-light.png differ diff --git a/png/phoscon.png b/png/phoscon.png index 5b1abfdf..ae83c373 100644 Binary files a/png/phoscon.png and b/png/phoscon.png differ diff --git a/png/photonix-light.png b/png/photonix-light.png index c37eaaf5..d02c4418 100644 Binary files a/png/photonix-light.png and b/png/photonix-light.png differ diff --git a/png/photonix.png b/png/photonix.png index 0b15b945..f2ae5bf1 100644 Binary files a/png/photonix.png and b/png/photonix.png differ diff --git a/png/photopea.png b/png/photopea.png new file mode 100644 index 00000000..cbc40a0e Binary files /dev/null and b/png/photopea.png differ diff --git a/png/photoprism-light.png b/png/photoprism-light.png new file mode 100644 index 00000000..58d418e5 Binary files /dev/null and b/png/photoprism-light.png differ diff --git a/png/photoprism.png b/png/photoprism.png index b3545893..9061f02c 100644 Binary files a/png/photoprism.png and b/png/photoprism.png differ diff --git a/png/photostructure-dark.png b/png/photostructure-dark.png new file mode 100644 index 00000000..20210a1d Binary files /dev/null and b/png/photostructure-dark.png differ diff --git a/png/photostructure.png b/png/photostructure.png index 8dedee91..7afbf2b4 100644 Binary files a/png/photostructure.png and b/png/photostructure.png differ diff --git a/png/photoview.png b/png/photoview.png index 5b20fb1c..51c4a412 100644 Binary files a/png/photoview.png and b/png/photoview.png differ diff --git a/png/php-light.png b/png/php-light.png new file mode 100644 index 00000000..9c808499 Binary files /dev/null and b/png/php-light.png differ diff --git a/png/php.png b/png/php.png index 78103952..0a01522d 100644 Binary files a/png/php.png and b/png/php.png differ diff --git a/png/phpipam.png b/png/phpipam.png deleted file mode 100644 index 38bf098f..00000000 Binary files a/png/phpipam.png and /dev/null differ diff --git a/png/phpldapadmin.png b/png/phpldapadmin.png deleted file mode 100644 index 22b7f511..00000000 Binary files a/png/phpldapadmin.png and /dev/null differ diff --git a/png/phpmyadmin.png b/png/phpmyadmin.png index 6cef98e8..5131ab40 100644 Binary files a/png/phpmyadmin.png and b/png/phpmyadmin.png differ diff --git a/png/pi-alert.png b/png/pi-alert.png deleted file mode 100644 index b98a0f0e..00000000 Binary files a/png/pi-alert.png and /dev/null differ diff --git a/png/pi-hole-unbound.png b/png/pi-hole-unbound.png deleted file mode 100644 index 7c79324e..00000000 Binary files a/png/pi-hole-unbound.png and /dev/null differ diff --git a/png/pi-hole.png b/png/pi-hole.png index de1dd7da..71813f52 100644 Binary files a/png/pi-hole.png and b/png/pi-hole.png differ diff --git a/png/pia.png b/png/pia.png index 0636bd29..e1b03163 100644 Binary files a/png/pia.png and b/png/pia.png differ diff --git a/png/piaware.png b/png/piaware.png deleted file mode 100644 index f1e87c24..00000000 Binary files a/png/piaware.png and /dev/null differ diff --git a/png/picsur-light.png b/png/picsur-light.png new file mode 100644 index 00000000..d26b543e Binary files /dev/null and b/png/picsur-light.png differ diff --git a/png/picsur.png b/png/picsur.png index 530bd0c1..34f4000f 100644 Binary files a/png/picsur.png and b/png/picsur.png differ diff --git a/png/pigallery2-light.png b/png/pigallery2-light.png deleted file mode 100644 index a39b7b03..00000000 Binary files a/png/pigallery2-light.png and /dev/null differ diff --git a/png/pigallery2.png b/png/pigallery2.png index 3e1abb7c..a8501e39 100644 Binary files a/png/pigallery2.png and b/png/pigallery2.png differ diff --git a/png/pikapods.png b/png/pikapods.png new file mode 100644 index 00000000..d7439b95 Binary files /dev/null and b/png/pikapods.png differ diff --git a/png/pikvm-light.png b/png/pikvm-light.png deleted file mode 100644 index 0ec04fb5..00000000 Binary files a/png/pikvm-light.png and /dev/null differ diff --git a/png/pikvm.png b/png/pikvm.png deleted file mode 100644 index 19053da3..00000000 Binary files a/png/pikvm.png and /dev/null differ diff --git a/png/pinchflat.png b/png/pinchflat.png deleted file mode 100644 index 84d404e7..00000000 Binary files a/png/pinchflat.png and /dev/null differ diff --git a/png/pingdom-light.png b/png/pingdom-light.png new file mode 100644 index 00000000..f43c352b Binary files /dev/null and b/png/pingdom-light.png differ diff --git a/png/pingdom.png b/png/pingdom.png index b1322671..857acf70 100644 Binary files a/png/pingdom.png and b/png/pingdom.png differ diff --git a/png/pingvin-dark.png b/png/pingvin-dark.png new file mode 100644 index 00000000..1480cf24 Binary files /dev/null and b/png/pingvin-dark.png differ diff --git a/png/pingvin-share-dark.png b/png/pingvin-share-dark.png new file mode 100644 index 00000000..1480cf24 Binary files /dev/null and b/png/pingvin-share-dark.png differ diff --git a/png/pingvin-share.png b/png/pingvin-share.png index ef497fc1..0a057fdc 100644 Binary files a/png/pingvin-share.png and b/png/pingvin-share.png differ diff --git a/png/pingvin.png b/png/pingvin.png index ef497fc1..93d91f8e 100644 Binary files a/png/pingvin.png and b/png/pingvin.png differ diff --git a/png/pinkary.png b/png/pinkary.png new file mode 100644 index 00000000..e5c819a3 Binary files /dev/null and b/png/pinkary.png differ diff --git a/png/pinry.png b/png/pinry.png deleted file mode 100644 index adbcc285..00000000 Binary files a/png/pinry.png and /dev/null differ diff --git a/png/pinterest.png b/png/pinterest.png index 5d2e9b12..6889f180 100644 Binary files a/png/pinterest.png and b/png/pinterest.png differ diff --git a/png/pioneer-light.png b/png/pioneer-light.png index deac7d34..ccc6a978 100644 Binary files a/png/pioneer-light.png and b/png/pioneer-light.png differ diff --git a/png/pioneer.png b/png/pioneer.png index 4fba6f93..22fe474d 100644 Binary files a/png/pioneer.png and b/png/pioneer.png differ diff --git a/png/piped.png b/png/piped.png new file mode 100644 index 00000000..55ffb52a Binary files /dev/null and b/png/piped.png differ diff --git a/png/pirate-proxy.png b/png/pirate-proxy.png index bd74a9e1..71df7a29 100644 Binary files a/png/pirate-proxy.png and b/png/pirate-proxy.png differ diff --git a/png/pivpn.png b/png/pivpn.png deleted file mode 100644 index b52d602a..00000000 Binary files a/png/pivpn.png and /dev/null differ diff --git a/png/piwigo.png b/png/piwigo.png index fcfebad9..c10d3ba4 100644 Binary files a/png/piwigo.png and b/png/piwigo.png differ diff --git a/png/pixelfed.png b/png/pixelfed.png index 5e3d2245..ea4be692 100644 Binary files a/png/pixelfed.png and b/png/pixelfed.png differ diff --git a/png/plane.png b/png/plane.png new file mode 100644 index 00000000..c730bee9 Binary files /dev/null and b/png/plane.png differ diff --git a/png/planka-dark.png b/png/planka-dark.png new file mode 100644 index 00000000..3f1e95bd Binary files /dev/null and b/png/planka-dark.png differ diff --git a/png/planka.png b/png/planka.png index 8d852387..06c5d2c5 100644 Binary files a/png/planka.png and b/png/planka.png differ diff --git a/png/plant-it.png b/png/plant-it.png deleted file mode 100644 index 943bb3f7..00000000 Binary files a/png/plant-it.png and /dev/null differ diff --git a/png/plausible.png b/png/plausible.png index ea79012a..c6e4e7d5 100644 Binary files a/png/plausible.png and b/png/plausible.png differ diff --git a/png/playstation.png b/png/playstation.png new file mode 100644 index 00000000..72eaf1bc Binary files /dev/null and b/png/playstation.png differ diff --git a/png/pleroma.png b/png/pleroma.png index 4fee27b4..a6f57857 100644 Binary files a/png/pleroma.png and b/png/pleroma.png differ diff --git a/png/plesk-light.png b/png/plesk-light.png deleted file mode 100644 index e616d8fb..00000000 Binary files a/png/plesk-light.png and /dev/null differ diff --git a/png/plesk.png b/png/plesk.png index ecf3448e..f4f24955 100644 Binary files a/png/plesk.png and b/png/plesk.png differ diff --git a/png/plex-alt-light.png b/png/plex-alt-light.png index 6a25bc02..c9fd5fa1 100644 Binary files a/png/plex-alt-light.png and b/png/plex-alt-light.png differ diff --git a/png/plex-alt.png b/png/plex-alt.png index 73a14a63..48ace9ab 100644 Binary files a/png/plex-alt.png and b/png/plex-alt.png differ diff --git a/png/plex-light.png b/png/plex-light.png new file mode 100644 index 00000000..fa7b3294 Binary files /dev/null and b/png/plex-light.png differ diff --git a/png/plex-meta-manager-light.png b/png/plex-meta-manager-light.png deleted file mode 100644 index 68d06f0a..00000000 Binary files a/png/plex-meta-manager-light.png and /dev/null differ diff --git a/png/plex-meta-manager.png b/png/plex-meta-manager.png deleted file mode 100644 index 9e1823d3..00000000 Binary files a/png/plex-meta-manager.png and /dev/null differ diff --git a/png/plex-rewind.png b/png/plex-rewind.png new file mode 100644 index 00000000..f42e7dd0 Binary files /dev/null and b/png/plex-rewind.png differ diff --git a/png/plex.png b/png/plex.png index e7af890a..d1c4398c 100644 Binary files a/png/plex.png and b/png/plex.png differ diff --git a/png/plexdrive.png b/png/plexdrive.png deleted file mode 100644 index cada67a2..00000000 Binary files a/png/plexdrive.png and /dev/null differ diff --git a/png/plexrequests-light.png b/png/plexrequests-light.png new file mode 100644 index 00000000..de5b9da5 Binary files /dev/null and b/png/plexrequests-light.png differ diff --git a/png/plexrequests.png b/png/plexrequests.png index 5d0061c3..c2057a37 100644 Binary files a/png/plexrequests.png and b/png/plexrequests.png differ diff --git a/png/plexripper.png b/png/plexripper.png deleted file mode 100644 index 869e33b9..00000000 Binary files a/png/plexripper.png and /dev/null differ diff --git a/png/plume.png b/png/plume.png index 415ce04b..b792acca 100644 Binary files a/png/plume.png and b/png/plume.png differ diff --git a/png/pocket-casts-dark.png b/png/pocket-casts-dark.png new file mode 100644 index 00000000..46c680d7 Binary files /dev/null and b/png/pocket-casts-dark.png differ diff --git a/png/pocket-casts.png b/png/pocket-casts.png new file mode 100644 index 00000000..268ad5c7 Binary files /dev/null and b/png/pocket-casts.png differ diff --git a/png/pocket-id-light.png b/png/pocket-id-light.png new file mode 100644 index 00000000..80b72f64 Binary files /dev/null and b/png/pocket-id-light.png differ diff --git a/png/pocket-id.png b/png/pocket-id.png new file mode 100644 index 00000000..050aef29 Binary files /dev/null and b/png/pocket-id.png differ diff --git a/png/pocketbase-dark.png b/png/pocketbase-dark.png new file mode 100644 index 00000000..da0a824e Binary files /dev/null and b/png/pocketbase-dark.png differ diff --git a/png/pocketbase.png b/png/pocketbase.png index 8ff709f4..551c5d1a 100644 Binary files a/png/pocketbase.png and b/png/pocketbase.png differ diff --git a/png/podfetch-light.png b/png/podfetch-light.png new file mode 100644 index 00000000..6f206390 Binary files /dev/null and b/png/podfetch-light.png differ diff --git a/png/podfetch.png b/png/podfetch.png new file mode 100644 index 00000000..9a8998a6 Binary files /dev/null and b/png/podfetch.png differ diff --git a/png/podgrab.png b/png/podgrab.png deleted file mode 100644 index 2111598f..00000000 Binary files a/png/podgrab.png and /dev/null differ diff --git a/png/podify.png b/png/podify.png index 84494e5c..bb7946dd 100644 Binary files a/png/podify.png and b/png/podify.png differ diff --git a/png/podman.png b/png/podman.png new file mode 100644 index 00000000..825824e5 Binary files /dev/null and b/png/podman.png differ diff --git a/png/podnapisi.png b/png/podnapisi.png deleted file mode 100644 index 0c6afee0..00000000 Binary files a/png/podnapisi.png and /dev/null differ diff --git a/png/policycontroller.png b/png/policycontroller.png index 2b996c32..1b92896f 100644 Binary files a/png/policycontroller.png and b/png/policycontroller.png differ diff --git a/png/poly.png b/png/poly.png index e2db72ba..ac39430f 100644 Binary files a/png/poly.png and b/png/poly.png differ diff --git a/png/polywork.png b/png/polywork.png index aee0b49a..b5d84493 100644 Binary files a/png/polywork.png and b/png/polywork.png differ diff --git a/png/porkbun.png b/png/porkbun.png deleted file mode 100644 index 4a07de34..00000000 Binary files a/png/porkbun.png and /dev/null differ diff --git a/png/portainer-alt.png b/png/portainer-alt.png deleted file mode 100644 index e336a781..00000000 Binary files a/png/portainer-alt.png and /dev/null differ diff --git a/png/portainer.png b/png/portainer.png index a3a7e092..bc7619f4 100644 Binary files a/png/portainer.png and b/png/portainer.png differ diff --git a/png/portus.png b/png/portus.png index afb3a5af..8a843fec 100644 Binary files a/png/portus.png and b/png/portus.png differ diff --git a/png/postal.png b/png/postal.png new file mode 100644 index 00000000..b83234c1 Binary files /dev/null and b/png/postal.png differ diff --git a/png/poste.png b/png/poste.png index 9d6e13b2..578ee55a 100644 Binary files a/png/poste.png and b/png/poste.png differ diff --git a/png/postgres.png b/png/postgres.png index a42f574f..18b8bdf8 100644 Binary files a/png/postgres.png and b/png/postgres.png differ diff --git a/png/postgresql.png b/png/postgresql.png new file mode 100644 index 00000000..dc711e02 Binary files /dev/null and b/png/postgresql.png differ diff --git a/png/posthog-light.png b/png/posthog-light.png new file mode 100644 index 00000000..1069fab8 Binary files /dev/null and b/png/posthog-light.png differ diff --git a/png/posthog.png b/png/posthog.png new file mode 100644 index 00000000..7f0bae7e Binary files /dev/null and b/png/posthog.png differ diff --git a/png/postiz-dark.png b/png/postiz-dark.png new file mode 100644 index 00000000..623a1414 Binary files /dev/null and b/png/postiz-dark.png differ diff --git a/png/postiz.png b/png/postiz.png new file mode 100644 index 00000000..ce25ed4c Binary files /dev/null and b/png/postiz.png differ diff --git a/png/powerbi.png b/png/powerbi.png index 96a9813b..8df33541 100644 Binary files a/png/powerbi.png and b/png/powerbi.png differ diff --git a/png/powerdns.png b/png/powerdns.png index 9303f607..7327d426 100644 Binary files a/png/powerdns.png and b/png/powerdns.png differ diff --git a/png/powerpanel.png b/png/powerpanel.png deleted file mode 100644 index dfe193aa..00000000 Binary files a/png/powerpanel.png and /dev/null differ diff --git a/png/premium-mobile.png b/png/premium-mobile.png deleted file mode 100644 index a7e650f6..00000000 Binary files a/png/premium-mobile.png and /dev/null differ diff --git a/png/prime-video-light.png b/png/prime-video-light.png index aaa52c6f..350d37ba 100644 Binary files a/png/prime-video-light.png and b/png/prime-video-light.png differ diff --git a/png/prime-video.png b/png/prime-video.png index d05dfed1..10e0a654 100644 Binary files a/png/prime-video.png and b/png/prime-video.png differ diff --git a/png/printer.png b/png/printer.png index 65e67a66..63f30fe4 100644 Binary files a/png/printer.png and b/png/printer.png differ diff --git a/png/pritunl.png b/png/pritunl.png index 451793b8..1622c088 100644 Binary files a/png/pritunl.png and b/png/pritunl.png differ diff --git a/png/privacyidea.png b/png/privacyidea.png index 2da59876..94bdbec1 100644 Binary files a/png/privacyidea.png and b/png/privacyidea.png differ diff --git a/png/private-internet-access.png b/png/private-internet-access.png index 0636bd29..38b1e269 100644 Binary files a/png/private-internet-access.png and b/png/private-internet-access.png differ diff --git a/png/privatebin.png b/png/privatebin.png index fe7c6e63..ae3d2605 100644 Binary files a/png/privatebin.png and b/png/privatebin.png differ diff --git a/png/projectsend.png b/png/projectsend.png index 115085af..9937c0b7 100644 Binary files a/png/projectsend.png and b/png/projectsend.png differ diff --git a/png/prometheus.png b/png/prometheus.png index c83eebda..dab3b500 100644 Binary files a/png/prometheus.png and b/png/prometheus.png differ diff --git a/png/proton-calendar.png b/png/proton-calendar.png index 7878c1ca..2f028180 100644 Binary files a/png/proton-calendar.png and b/png/proton-calendar.png differ diff --git a/png/proton-drive.png b/png/proton-drive.png index 75c4cb33..99fd2605 100644 Binary files a/png/proton-drive.png and b/png/proton-drive.png differ diff --git a/png/proton-mail.png b/png/proton-mail.png index 773e79ec..2a95a338 100644 Binary files a/png/proton-mail.png and b/png/proton-mail.png differ diff --git a/png/proton-pass.png b/png/proton-pass.png index 7e17c3a4..912b3c12 100644 Binary files a/png/proton-pass.png and b/png/proton-pass.png differ diff --git a/png/proton-vpn.png b/png/proton-vpn.png index 3b22b1eb..20b40515 100644 Binary files a/png/proton-vpn.png and b/png/proton-vpn.png differ diff --git a/png/prowlarr.png b/png/prowlarr.png index 0b84dea6..00af5d95 100644 Binary files a/png/prowlarr.png and b/png/prowlarr.png differ diff --git a/png/proxmox-light.png b/png/proxmox-light.png index 69411c59..4d55ab66 100644 Binary files a/png/proxmox-light.png and b/png/proxmox-light.png differ diff --git a/png/proxmox.png b/png/proxmox.png index 211fa0fa..5a2853b8 100644 Binary files a/png/proxmox.png and b/png/proxmox.png differ diff --git a/png/prtg.png b/png/prtg.png index 41cb5bd4..dbd2f6dc 100644 Binary files a/png/prtg.png and b/png/prtg.png differ diff --git a/png/prusa-research-light.png b/png/prusa-research-light.png deleted file mode 100644 index c54ab6ef..00000000 Binary files a/png/prusa-research-light.png and /dev/null differ diff --git a/png/prusa-research.png b/png/prusa-research.png index bd66f15c..d839b28b 100644 Binary files a/png/prusa-research.png and b/png/prusa-research.png differ diff --git a/png/psitransfer.png b/png/psitransfer.png deleted file mode 100644 index a765f6f4..00000000 Binary files a/png/psitransfer.png and /dev/null differ diff --git a/png/pterodactyl.png b/png/pterodactyl.png index a5addb87..2ac289f5 100644 Binary files a/png/pterodactyl.png and b/png/pterodactyl.png differ diff --git a/png/pufferpanel.png b/png/pufferpanel.png index 6df0f11b..b689398d 100644 Binary files a/png/pufferpanel.png and b/png/pufferpanel.png differ diff --git a/png/purelymail.png b/png/purelymail.png index 3b0b1474..70374261 100644 Binary files a/png/purelymail.png and b/png/purelymail.png differ diff --git a/png/pushfish.png b/png/pushfish.png index 243d3a64..1dd6a3e6 100644 Binary files a/png/pushfish.png and b/png/pushfish.png differ diff --git a/png/pushover.png b/png/pushover.png index 2383f6ca..dab9bf0d 100644 Binary files a/png/pushover.png and b/png/pushover.png differ diff --git a/png/putty.png b/png/putty.png index 70dc9a9f..87e7dd2b 100644 Binary files a/png/putty.png and b/png/putty.png differ diff --git a/png/pve-helper-scripts.png b/png/pve-helper-scripts.png deleted file mode 100644 index 3e2e23c8..00000000 Binary files a/png/pve-helper-scripts.png and /dev/null differ diff --git a/png/pwndrop-light.png b/png/pwndrop-light.png deleted file mode 100644 index da62dc61..00000000 Binary files a/png/pwndrop-light.png and /dev/null differ diff --git a/png/pwndrop.png b/png/pwndrop.png deleted file mode 100644 index dc726238..00000000 Binary files a/png/pwndrop.png and /dev/null differ diff --git a/png/pwpush-light.png b/png/pwpush-light.png deleted file mode 100644 index 79c6d29d..00000000 Binary files a/png/pwpush-light.png and /dev/null differ diff --git a/png/pwpush.png b/png/pwpush.png deleted file mode 100644 index 89b8bc33..00000000 Binary files a/png/pwpush.png and /dev/null differ diff --git a/png/pydio.png b/png/pydio.png index 0b13cf50..34f637f7 100644 Binary files a/png/pydio.png and b/png/pydio.png differ diff --git a/png/pyload.png b/png/pyload.png index e9600334..22d26c07 100644 Binary files a/png/pyload.png and b/png/pyload.png differ diff --git a/png/python.png b/png/python.png index a20dc86b..ca002ef1 100644 Binary files a/png/python.png and b/png/python.png differ diff --git a/png/qbittorrent.png b/png/qbittorrent.png index da45342c..b880e9c0 100644 Binary files a/png/qbittorrent.png and b/png/qbittorrent.png differ diff --git a/png/qdirstat.png b/png/qdirstat.png index 176cfc7f..8b40bac9 100644 Binary files a/png/qdirstat.png and b/png/qdirstat.png differ diff --git a/png/qinglong.png b/png/qinglong.png index 2455dd35..d6534d15 100644 Binary files a/png/qinglong.png and b/png/qinglong.png differ diff --git a/png/qnap-alt.png b/png/qnap-alt.png deleted file mode 100644 index 499aed97..00000000 Binary files a/png/qnap-alt.png and /dev/null differ diff --git a/png/qnap.png b/png/qnap.png index d4a13914..2fb6b22f 100644 Binary files a/png/qnap.png and b/png/qnap.png differ diff --git a/png/quant-ux.png b/png/quant-ux.png deleted file mode 100644 index 8c349999..00000000 Binary files a/png/quant-ux.png and /dev/null differ diff --git a/png/questdb.png b/png/questdb.png index 727a0fd6..79301c5c 100644 Binary files a/png/questdb.png and b/png/questdb.png differ diff --git a/png/quetre.png b/png/quetre.png index 62d491c9..00bdc280 100644 Binary files a/png/quetre.png and b/png/quetre.png differ diff --git a/png/quickwit.png b/png/quickwit.png new file mode 100644 index 00000000..69646091 Binary files /dev/null and b/png/quickwit.png differ diff --git a/png/qutebrowser.png b/png/qutebrowser.png index c049d725..893e096b 100644 Binary files a/png/qutebrowser.png and b/png/qutebrowser.png differ diff --git a/png/r.png b/png/r.png index e3789730..e89d7377 100644 Binary files a/png/r.png and b/png/r.png differ diff --git a/png/rabbitmq.png b/png/rabbitmq.png index ba87e7b7..f5350347 100644 Binary files a/png/rabbitmq.png and b/png/rabbitmq.png differ diff --git a/png/radarr-light.png b/png/radarr-light.png deleted file mode 100644 index 3a584c65..00000000 Binary files a/png/radarr-light.png and /dev/null differ diff --git a/png/radarr.png b/png/radarr.png index 604d8ff3..417f77fb 100644 Binary files a/png/radarr.png and b/png/radarr.png differ diff --git a/png/radicale.png b/png/radicale.png index a0341522..0d8b45d5 100644 Binary files a/png/radicale.png and b/png/radicale.png differ diff --git a/png/rainloop-light.png b/png/rainloop-light.png deleted file mode 100644 index 73d62d6a..00000000 Binary files a/png/rainloop-light.png and /dev/null differ diff --git a/png/rainloop.png b/png/rainloop.png index 215a273d..4d92d021 100644 Binary files a/png/rainloop.png and b/png/rainloop.png differ diff --git a/png/rallly.png b/png/rallly.png index 15f279df..9a3d89a8 100644 Binary files a/png/rallly.png and b/png/rallly.png differ diff --git a/png/rancher.png b/png/rancher.png index 4515d6c0..f4c64592 100644 Binary files a/png/rancher.png and b/png/rancher.png differ diff --git a/png/raneto.png b/png/raneto.png deleted file mode 100644 index 0758f367..00000000 Binary files a/png/raneto.png and /dev/null differ diff --git a/png/raritan-light.png b/png/raritan-light.png deleted file mode 100644 index f4c29508..00000000 Binary files a/png/raritan-light.png and /dev/null differ diff --git a/png/raritan.png b/png/raritan.png deleted file mode 100644 index 683ab420..00000000 Binary files a/png/raritan.png and /dev/null differ diff --git a/png/raspberry-pi-light.png b/png/raspberry-pi-light.png new file mode 100644 index 00000000..166b3ea1 Binary files /dev/null and b/png/raspberry-pi-light.png differ diff --git a/png/raspberry-pi.png b/png/raspberry-pi.png new file mode 100644 index 00000000..28d6979d Binary files /dev/null and b/png/raspberry-pi.png differ diff --git a/png/raspberrymatic.png b/png/raspberrymatic.png deleted file mode 100644 index c9e367d8..00000000 Binary files a/png/raspberrymatic.png and /dev/null differ diff --git a/png/raspberrypi.png b/png/raspberrypi.png deleted file mode 100644 index 7996cc45..00000000 Binary files a/png/raspberrypi.png and /dev/null differ diff --git a/png/rathole.png b/png/rathole.png deleted file mode 100644 index 25744ff9..00000000 Binary files a/png/rathole.png and /dev/null differ diff --git a/png/rclone.png b/png/rclone.png index 90df575c..9ee52518 100644 Binary files a/png/rclone.png and b/png/rclone.png differ diff --git a/png/rdt-client.png b/png/rdt-client.png index b164a378..7a4d978c 100644 Binary files a/png/rdt-client.png and b/png/rdt-client.png differ diff --git a/png/reactive-resume-light.png b/png/reactive-resume-light.png new file mode 100644 index 00000000..a9db1bfa Binary files /dev/null and b/png/reactive-resume-light.png differ diff --git a/png/reactive-resume.png b/png/reactive-resume.png index 70ba2ee8..20d127d3 100644 Binary files a/png/reactive-resume.png and b/png/reactive-resume.png differ diff --git a/png/readarr.png b/png/readarr.png index 9bccfeee..4335bee4 100644 Binary files a/png/readarr.png and b/png/readarr.png differ diff --git a/png/readeck.png b/png/readeck.png index ee635132..a9ff749b 100644 Binary files a/png/readeck.png and b/png/readeck.png differ diff --git a/png/readthedocs-light.png b/png/readthedocs-light.png index 5a950385..bc9f485a 100644 Binary files a/png/readthedocs-light.png and b/png/readthedocs-light.png differ diff --git a/png/readthedocs.png b/png/readthedocs.png index b2ce3637..df8fd812 100644 Binary files a/png/readthedocs.png and b/png/readthedocs.png differ diff --git a/png/real-debrid.png b/png/real-debrid.png index b164a378..7a4d978c 100644 Binary files a/png/real-debrid.png and b/png/real-debrid.png differ diff --git a/png/realhosting.png b/png/realhosting.png deleted file mode 100644 index 6f2d9eb9..00000000 Binary files a/png/realhosting.png and /dev/null differ diff --git a/png/recalbox.png b/png/recalbox.png index 5d1703fd..ae3ee3d3 100644 Binary files a/png/recalbox.png and b/png/recalbox.png differ diff --git a/png/receipt-wrangler.png b/png/receipt-wrangler.png new file mode 100644 index 00000000..71096e1d Binary files /dev/null and b/png/receipt-wrangler.png differ diff --git a/png/recipesage.png b/png/recipesage.png index 4d7e1869..e0b3b015 100644 Binary files a/png/recipesage.png and b/png/recipesage.png differ diff --git a/png/recipya.png b/png/recipya.png deleted file mode 100644 index 2bd04e25..00000000 Binary files a/png/recipya.png and /dev/null differ diff --git a/png/reddit.png b/png/reddit.png index 455876db..39945e3e 100644 Binary files a/png/reddit.png and b/png/reddit.png differ diff --git a/png/redict.png b/png/redict.png new file mode 100644 index 00000000..5bc064cb Binary files /dev/null and b/png/redict.png differ diff --git a/png/redis.png b/png/redis.png index cdf3273f..306dae14 100644 Binary files a/png/redis.png and b/png/redis.png differ diff --git a/png/redlib-light.png b/png/redlib-light.png new file mode 100644 index 00000000..741c4b4b Binary files /dev/null and b/png/redlib-light.png differ diff --git a/png/redlib.png b/png/redlib.png new file mode 100644 index 00000000..32223aa6 Binary files /dev/null and b/png/redlib.png differ diff --git a/png/rekor.png b/png/rekor.png index b71ffe2b..d2834222 100644 Binary files a/png/rekor.png and b/png/rekor.png differ diff --git a/png/remmina.png b/png/remmina.png index ed6cc474..2741cde5 100644 Binary files a/png/remmina.png and b/png/remmina.png differ diff --git a/png/remotely.png b/png/remotely.png deleted file mode 100644 index 4c5a4e99..00000000 Binary files a/png/remotely.png and /dev/null differ diff --git a/png/reolink.png b/png/reolink.png new file mode 100644 index 00000000..d16814f2 Binary files /dev/null and b/png/reolink.png differ diff --git a/png/requestly.png b/png/requestly.png index e48c6d67..b36869c9 100644 Binary files a/png/requestly.png and b/png/requestly.png differ diff --git a/png/requestrr.png b/png/requestrr.png index caf255e6..7bbad815 100644 Binary files a/png/requestrr.png and b/png/requestrr.png differ diff --git a/png/resiliosync-light.png b/png/resiliosync-light.png new file mode 100644 index 00000000..0b26c073 Binary files /dev/null and b/png/resiliosync-light.png differ diff --git a/png/resiliosync.png b/png/resiliosync.png index 9e7b28f8..07611f70 100644 Binary files a/png/resiliosync.png and b/png/resiliosync.png differ diff --git a/png/restic.png b/png/restic.png deleted file mode 100644 index 951e1938..00000000 Binary files a/png/restic.png and /dev/null differ diff --git a/png/restreamer.png b/png/restreamer.png new file mode 100644 index 00000000..aa450316 Binary files /dev/null and b/png/restreamer.png differ diff --git a/png/revolt-light.png b/png/revolt-light.png new file mode 100644 index 00000000..68867421 Binary files /dev/null and b/png/revolt-light.png differ diff --git a/png/revolt.png b/png/revolt.png new file mode 100644 index 00000000..89764803 Binary files /dev/null and b/png/revolt.png differ diff --git a/png/rhasspy-dark.png b/png/rhasspy-dark.png new file mode 100644 index 00000000..d7bba13a Binary files /dev/null and b/png/rhasspy-dark.png differ diff --git a/png/rhasspy-light.png b/png/rhasspy-light.png deleted file mode 100644 index bd3cbef8..00000000 Binary files a/png/rhasspy-light.png and /dev/null differ diff --git a/png/rhasspy.png b/png/rhasspy.png index af00f6d0..e7242f2e 100644 Binary files a/png/rhasspy.png and b/png/rhasspy.png differ diff --git a/png/rhodecode.png b/png/rhodecode.png index 5a95270e..e7fcc06a 100644 Binary files a/png/rhodecode.png and b/png/rhodecode.png differ diff --git a/png/richy.png b/png/richy.png new file mode 100644 index 00000000..00292b3a Binary files /dev/null and b/png/richy.png differ diff --git a/png/rimgo-light.png b/png/rimgo-light.png index 3daac3e5..09de8b5f 100644 Binary files a/png/rimgo-light.png and b/png/rimgo-light.png differ diff --git a/png/rimgo.png b/png/rimgo.png index ed4b0e9b..d79a4625 100644 Binary files a/png/rimgo.png and b/png/rimgo.png differ diff --git a/png/riot.png b/png/riot.png index eb28d2bd..33903fa4 100644 Binary files a/png/riot.png and b/png/riot.png differ diff --git a/png/riverside-fm-light.png b/png/riverside-fm-light.png new file mode 100644 index 00000000..be0b4997 Binary files /dev/null and b/png/riverside-fm-light.png differ diff --git a/png/riverside-fm.png b/png/riverside-fm.png new file mode 100644 index 00000000..5f6d66e0 Binary files /dev/null and b/png/riverside-fm.png differ diff --git a/png/rocket-chat.png b/png/rocket-chat.png new file mode 100644 index 00000000..c743e38d Binary files /dev/null and b/png/rocket-chat.png differ diff --git a/png/rocketchat.png b/png/rocketchat.png deleted file mode 100644 index af17c388..00000000 Binary files a/png/rocketchat.png and /dev/null differ diff --git a/png/rocky-linux.png b/png/rocky-linux.png index 531547da..efbf8bf1 100644 Binary files a/png/rocky-linux.png and b/png/rocky-linux.png differ diff --git a/png/romm.png b/png/romm.png index c1a75123..a19168c0 100644 Binary files a/png/romm.png and b/png/romm.png differ diff --git a/png/rompya.png b/png/rompya.png deleted file mode 100644 index 3b2af499..00000000 Binary files a/png/rompya.png and /dev/null differ diff --git a/png/rook.png b/png/rook.png index 168d6d0f..fd7637c2 100644 Binary files a/png/rook.png and b/png/rook.png differ diff --git a/png/roundcube.png b/png/roundcube.png index 0a2f3cd0..f001ef64 100644 Binary files a/png/roundcube.png and b/png/roundcube.png differ diff --git a/png/router.png b/png/router.png index 1ea6ec98..3dd3454a 100644 Binary files a/png/router.png and b/png/router.png differ diff --git a/png/rpi-monitor.png b/png/rpi-monitor.png deleted file mode 100644 index 1e9c9c19..00000000 Binary files a/png/rpi-monitor.png and /dev/null differ diff --git a/png/rport.png b/png/rport.png index 480467b8..d510d2cf 100644 Binary files a/png/rport.png and b/png/rport.png differ diff --git a/png/rspamd.png b/png/rspamd.png deleted file mode 100644 index eab4c375..00000000 Binary files a/png/rspamd.png and /dev/null differ diff --git a/png/rss-bridge.png b/png/rss-bridge.png index b02760a1..3e36fd4d 100644 Binary files a/png/rss-bridge.png and b/png/rss-bridge.png differ diff --git a/png/rss-translator.png b/png/rss-translator.png new file mode 100644 index 00000000..87e2c1df Binary files /dev/null and b/png/rss-translator.png differ diff --git a/png/rsshub.png b/png/rsshub.png deleted file mode 100644 index 15ba763d..00000000 Binary files a/png/rsshub.png and /dev/null differ diff --git a/png/rstudio.png b/png/rstudio.png index 6df81335..a1811174 100644 Binary files a/png/rstudio.png and b/png/rstudio.png differ diff --git a/png/rstudioserver.png b/png/rstudioserver.png index 6df81335..a1811174 100644 Binary files a/png/rstudioserver.png and b/png/rstudioserver.png differ diff --git a/png/ruby.png b/png/ruby.png index ecf48b26..faf4d750 100644 Binary files a/png/ruby.png and b/png/ruby.png differ diff --git a/png/rumble.png b/png/rumble.png index d28430a2..cc6c3e7b 100644 Binary files a/png/rumble.png and b/png/rumble.png differ diff --git a/png/rundeck.png b/png/rundeck.png index c94c9ae2..ef9738d8 100644 Binary files a/png/rundeck.png and b/png/rundeck.png differ diff --git a/png/runeaudio.png b/png/runeaudio.png deleted file mode 100644 index 4d69f3e0..00000000 Binary files a/png/runeaudio.png and /dev/null differ diff --git a/png/runonflux.png b/png/runonflux.png index 66d3ff79..23c92f58 100644 Binary files a/png/runonflux.png and b/png/runonflux.png differ diff --git a/png/runson-light.png b/png/runson-light.png new file mode 100644 index 00000000..d223df78 Binary files /dev/null and b/png/runson-light.png differ diff --git a/png/runson.png b/png/runson.png new file mode 100644 index 00000000..afa870d4 Binary files /dev/null and b/png/runson.png differ diff --git a/png/rust.png b/png/rust.png index be85d158..460d4153 100644 Binary files a/png/rust.png and b/png/rust.png differ diff --git a/png/rustdesk.png b/png/rustdesk.png index 805a0228..4225d231 100644 Binary files a/png/rustdesk.png and b/png/rustdesk.png differ diff --git a/png/rutorrent.png b/png/rutorrent.png index 40d4a4ec..fecdf6fd 100644 Binary files a/png/rutorrent.png and b/png/rutorrent.png differ diff --git a/png/ryot-light.png b/png/ryot-light.png index cf880387..a71e26e2 100644 Binary files a/png/ryot-light.png and b/png/ryot-light.png differ diff --git a/png/ryot.png b/png/ryot.png index 8f03b124..f2abbfba 100644 Binary files a/png/ryot.png and b/png/ryot.png differ diff --git a/png/sabnzbd-alt.png b/png/sabnzbd-alt.png deleted file mode 100644 index b2628690..00000000 Binary files a/png/sabnzbd-alt.png and /dev/null differ diff --git a/png/sabnzbd-light.png b/png/sabnzbd-light.png new file mode 100644 index 00000000..93533b05 Binary files /dev/null and b/png/sabnzbd-light.png differ diff --git a/png/sabnzbd.png b/png/sabnzbd.png index c77a304d..94808f59 100644 Binary files a/png/sabnzbd.png and b/png/sabnzbd.png differ diff --git a/png/safari-ios.png b/png/safari-ios.png index 9701da69..77133a54 100644 Binary files a/png/safari-ios.png and b/png/safari-ios.png differ diff --git a/png/safari.png b/png/safari.png index 0a049e25..77133a54 100644 Binary files a/png/safari.png and b/png/safari.png differ diff --git a/png/sagemcom.png b/png/sagemcom.png deleted file mode 100644 index cc33686a..00000000 Binary files a/png/sagemcom.png and /dev/null differ diff --git a/png/salad.png b/png/salad.png deleted file mode 100644 index 6316a70e..00000000 Binary files a/png/salad.png and /dev/null differ diff --git a/png/saltcorn.png b/png/saltcorn.png new file mode 100644 index 00000000..3a7ade3b Binary files /dev/null and b/png/saltcorn.png differ diff --git a/png/samsung-internet.png b/png/samsung-internet.png index 0c77c7ac..307c81b0 100644 Binary files a/png/samsung-internet.png and b/png/samsung-internet.png differ diff --git a/png/sandstorm.png b/png/sandstorm.png index 8337659f..b317dce7 100644 Binary files a/png/sandstorm.png and b/png/sandstorm.png differ diff --git a/png/scanservjs.png b/png/scanservjs.png deleted file mode 100644 index 75afdb4c..00000000 Binary files a/png/scanservjs.png and /dev/null differ diff --git a/png/schneider.png b/png/schneider.png deleted file mode 100644 index d08011fc..00000000 Binary files a/png/schneider.png and /dev/null differ diff --git a/png/screenconnect.png b/png/screenconnect.png index 3b98850d..ebd67a2d 100644 Binary files a/png/screenconnect.png and b/png/screenconnect.png differ diff --git a/png/scrutiny-light.png b/png/scrutiny-light.png index 8d0f4850..eaf0ab0d 100644 Binary files a/png/scrutiny-light.png and b/png/scrutiny-light.png differ diff --git a/png/scrutiny.png b/png/scrutiny.png index 9b8f5e58..32e01250 100644 Binary files a/png/scrutiny.png and b/png/scrutiny.png differ diff --git a/png/scrypted.png b/png/scrypted.png deleted file mode 100644 index 45e4659f..00000000 Binary files a/png/scrypted.png and /dev/null differ diff --git a/png/seafile.png b/png/seafile.png index d4445192..9e91e1eb 100644 Binary files a/png/seafile.png and b/png/seafile.png differ diff --git a/png/searx-light.png b/png/searx-light.png deleted file mode 100644 index ee51e197..00000000 Binary files a/png/searx-light.png and /dev/null differ diff --git a/png/searx.png b/png/searx.png index b59eb728..fb5a3556 100644 Binary files a/png/searx.png and b/png/searx.png differ diff --git a/png/searxng.png b/png/searxng.png index b7d60049..13b4e57b 100644 Binary files a/png/searxng.png and b/png/searxng.png differ diff --git a/png/secureai-tools-light.png b/png/secureai-tools-light.png new file mode 100644 index 00000000..66d9e4dd Binary files /dev/null and b/png/secureai-tools-light.png differ diff --git a/png/secureai-tools.png b/png/secureai-tools.png new file mode 100644 index 00000000..02da451d Binary files /dev/null and b/png/secureai-tools.png differ diff --git a/png/seelf.png b/png/seelf.png new file mode 100644 index 00000000..c5c175a4 Binary files /dev/null and b/png/seelf.png differ diff --git a/png/self-hosted-gateway.png b/png/self-hosted-gateway.png new file mode 100644 index 00000000..d7e6798c Binary files /dev/null and b/png/self-hosted-gateway.png differ diff --git a/png/selfh-st-light.png b/png/selfh-st-light.png new file mode 100644 index 00000000..992a38ca Binary files /dev/null and b/png/selfh-st-light.png differ diff --git a/png/selfh-st.png b/png/selfh-st.png new file mode 100644 index 00000000..93d0040b Binary files /dev/null and b/png/selfh-st.png differ diff --git a/png/selfhosted-light.png b/png/selfhosted-light.png deleted file mode 100644 index 682ff3e1..00000000 Binary files a/png/selfhosted-light.png and /dev/null differ diff --git a/png/selfhosted.png b/png/selfhosted.png deleted file mode 100644 index e64a9778..00000000 Binary files a/png/selfhosted.png and /dev/null differ diff --git a/png/semaphore-dark.png b/png/semaphore-dark.png new file mode 100644 index 00000000..a50c2727 Binary files /dev/null and b/png/semaphore-dark.png differ diff --git a/png/semaphore.png b/png/semaphore.png index 13f87cca..5ec2cb62 100644 Binary files a/png/semaphore.png and b/png/semaphore.png differ diff --git a/png/send.png b/png/send.png index 150d5997..11626f54 100644 Binary files a/png/send.png and b/png/send.png differ diff --git a/png/sendgrid.png b/png/sendgrid.png new file mode 100644 index 00000000..f2038efc Binary files /dev/null and b/png/sendgrid.png differ diff --git a/png/sendinblue.png b/png/sendinblue.png index cc98b788..a5c50beb 100644 Binary files a/png/sendinblue.png and b/png/sendinblue.png differ diff --git a/png/sensu.png b/png/sensu.png index ff46b02e..8595ec13 100644 Binary files a/png/sensu.png and b/png/sensu.png differ diff --git a/png/sentry-light.png b/png/sentry-light.png new file mode 100644 index 00000000..69012fef Binary files /dev/null and b/png/sentry-light.png differ diff --git a/png/sentry.png b/png/sentry.png index 2a44ab3e..58dbdfb8 100644 Binary files a/png/sentry.png and b/png/sentry.png differ diff --git a/png/seq.png b/png/seq.png deleted file mode 100644 index fdc058d2..00000000 Binary files a/png/seq.png and /dev/null differ diff --git a/png/serpbear.png b/png/serpbear.png deleted file mode 100644 index e8a0438f..00000000 Binary files a/png/serpbear.png and /dev/null differ diff --git a/png/servarr-light.png b/png/servarr-light.png index 1be60698..899bf979 100644 Binary files a/png/servarr-light.png and b/png/servarr-light.png differ diff --git a/png/servarr.png b/png/servarr.png index be289933..86167b43 100644 Binary files a/png/servarr.png and b/png/servarr.png differ diff --git a/png/serviio-light.png b/png/serviio-light.png new file mode 100644 index 00000000..1df26be6 Binary files /dev/null and b/png/serviio-light.png differ diff --git a/png/serviio.png b/png/serviio.png index e45bfa66..2fb0de81 100644 Binary files a/png/serviio.png and b/png/serviio.png differ diff --git a/png/session.png b/png/session.png index c7820a68..59e0b611 100644 Binary files a/png/session.png and b/png/session.png differ diff --git a/png/sftpgo.png b/png/sftpgo.png deleted file mode 100644 index e1537af2..00000000 Binary files a/png/sftpgo.png and /dev/null differ diff --git a/png/shaarli.png b/png/shaarli.png index 979f5f6c..f01abe57 100644 Binary files a/png/shaarli.png and b/png/shaarli.png differ diff --git a/png/shell-light.png b/png/shell-light.png index 03ec0184..e0924293 100644 Binary files a/png/shell-light.png and b/png/shell-light.png differ diff --git a/png/shell-tips-light.png b/png/shell-tips-light.png index f5c8d81e..59efcc4d 100644 Binary files a/png/shell-tips-light.png and b/png/shell-tips-light.png differ diff --git a/png/shell-tips.png b/png/shell-tips.png index 5f932f5b..96420fbb 100644 Binary files a/png/shell-tips.png and b/png/shell-tips.png differ diff --git a/png/shell.png b/png/shell.png index 3a535a17..406a7fd3 100644 Binary files a/png/shell.png and b/png/shell.png differ diff --git a/png/shellhub.png b/png/shellhub.png index 3868a771..a3fefdee 100644 Binary files a/png/shellhub.png and b/png/shellhub.png differ diff --git a/png/shellngn.png b/png/shellngn.png index 43bc55a0..b1aeba2c 100644 Binary files a/png/shellngn.png and b/png/shellngn.png differ diff --git a/png/shelly.png b/png/shelly.png index 36fac689..176094fa 100644 Binary files a/png/shelly.png and b/png/shelly.png differ diff --git a/png/shinobi.png b/png/shinobi.png deleted file mode 100644 index 4ad55191..00000000 Binary files a/png/shinobi.png and /dev/null differ diff --git a/png/shiori.png b/png/shiori.png index 4431f602..66bd47a7 100644 Binary files a/png/shiori.png and b/png/shiori.png differ diff --git a/png/shlink.png b/png/shlink.png index 743efa07..1ca17f52 100644 Binary files a/png/shlink.png and b/png/shlink.png differ diff --git a/png/shoko-server.png b/png/shoko-server.png new file mode 100644 index 00000000..f00fed96 Binary files /dev/null and b/png/shoko-server.png differ diff --git a/png/shoko.png b/png/shoko.png index 136f09b5..9edbaad0 100644 Binary files a/png/shoko.png and b/png/shoko.png differ diff --git a/png/shopify.png b/png/shopify.png new file mode 100644 index 00000000..d898c099 Binary files /dev/null and b/png/shopify.png differ diff --git a/png/sickbeard.png b/png/sickbeard.png index c213b55e..0a3c969e 100644 Binary files a/png/sickbeard.png and b/png/sickbeard.png differ diff --git a/png/sickchill.png b/png/sickchill.png deleted file mode 100644 index ce4f796c..00000000 Binary files a/png/sickchill.png and /dev/null differ diff --git a/png/sickgear.png b/png/sickgear.png deleted file mode 100644 index ab405b12..00000000 Binary files a/png/sickgear.png and /dev/null differ diff --git a/png/signal-transparent.png b/png/signal-transparent.png deleted file mode 100644 index a11025b6..00000000 Binary files a/png/signal-transparent.png and /dev/null differ diff --git a/png/signal.png b/png/signal.png index d279a728..2b6a8876 100644 Binary files a/png/signal.png and b/png/signal.png differ diff --git a/png/sigstore.png b/png/sigstore.png index d941af0b..b1ba1f30 100644 Binary files a/png/sigstore.png and b/png/sigstore.png differ diff --git a/png/silverbullet.png b/png/silverbullet.png deleted file mode 100644 index 866f4c09..00000000 Binary files a/png/silverbullet.png and /dev/null differ diff --git a/png/simplelogin.png b/png/simplelogin.png index a9dd0ee3..7118aa85 100644 Binary files a/png/simplelogin.png and b/png/simplelogin.png differ diff --git a/png/simplex-chat.png b/png/simplex-chat.png new file mode 100644 index 00000000..82d83c3b Binary files /dev/null and b/png/simplex-chat.png differ diff --git a/png/sinusbot.png b/png/sinusbot.png index af297523..9068cb5c 100644 Binary files a/png/sinusbot.png and b/png/sinusbot.png differ diff --git a/png/siyuan.png b/png/siyuan.png index 90e1d3f0..22aa8588 100644 Binary files a/png/siyuan.png and b/png/siyuan.png differ diff --git a/png/skylink-fibernet.png b/png/skylink-fibernet.png deleted file mode 100644 index fee5a9ea..00000000 Binary files a/png/skylink-fibernet.png and /dev/null differ diff --git a/png/skype.png b/png/skype.png index a2a92e5f..2a55daf7 100644 Binary files a/png/skype.png and b/png/skype.png differ diff --git a/png/slaanesh.png b/png/slaanesh.png deleted file mode 100644 index 4ad34304..00000000 Binary files a/png/slaanesh.png and /dev/null differ diff --git a/png/slack.png b/png/slack.png index 4e00728c..341404ef 100644 Binary files a/png/slack.png and b/png/slack.png differ diff --git a/png/slash-light.png b/png/slash-light.png new file mode 100644 index 00000000..411b030e Binary files /dev/null and b/png/slash-light.png differ diff --git a/png/slash.png b/png/slash.png new file mode 100644 index 00000000..4a1db43c Binary files /dev/null and b/png/slash.png differ diff --git a/png/slice.png b/png/slice.png index 8ab1d559..8c79ca0b 100644 Binary files a/png/slice.png and b/png/slice.png differ diff --git a/png/slidev.png b/png/slidev.png index 4a8a68d8..db963b38 100644 Binary files a/png/slidev.png and b/png/slidev.png differ diff --git a/png/slink-light.png b/png/slink-light.png deleted file mode 100644 index c14ff235..00000000 Binary files a/png/slink-light.png and /dev/null differ diff --git a/png/slink.png b/png/slink.png deleted file mode 100644 index 34a59a43..00000000 Binary files a/png/slink.png and /dev/null differ diff --git a/png/slskd.png b/png/slskd.png index 9b279226..e146a259 100644 Binary files a/png/slskd.png and b/png/slskd.png differ diff --git a/png/smartfox.png b/png/smartfox.png index 6ef59b37..d3d8dc2a 100644 Binary files a/png/smartfox.png and b/png/smartfox.png differ diff --git a/png/smokeping.png b/png/smokeping.png deleted file mode 100644 index b28cc4c3..00000000 Binary files a/png/smokeping.png and /dev/null differ diff --git a/png/snapcast-alt-light.png b/png/snapcast-alt-light.png deleted file mode 100644 index 53f8f160..00000000 Binary files a/png/snapcast-alt-light.png and /dev/null differ diff --git a/png/snapcast-alt.png b/png/snapcast-alt.png deleted file mode 100644 index f3bf4c7b..00000000 Binary files a/png/snapcast-alt.png and /dev/null differ diff --git a/png/snapcast.png b/png/snapcast.png index 4fff812e..cab94fe8 100644 Binary files a/png/snapcast.png and b/png/snapcast.png differ diff --git a/png/snapchat-dark.png b/png/snapchat-dark.png new file mode 100644 index 00000000..d05df596 Binary files /dev/null and b/png/snapchat-dark.png differ diff --git a/png/snapchat.png b/png/snapchat.png index 6eeaca10..25bf1e30 100644 Binary files a/png/snapchat.png and b/png/snapchat.png differ diff --git a/png/snapdrop.png b/png/snapdrop.png index 640ed1e9..96639b43 100644 Binary files a/png/snapdrop.png and b/png/snapdrop.png differ diff --git a/png/snappymail-light.png b/png/snappymail-light.png index 61fb2de4..13284a9a 100644 Binary files a/png/snappymail-light.png and b/png/snappymail-light.png differ diff --git a/png/snappymail.png b/png/snappymail.png index a7a740ca..2d3fb1b0 100644 Binary files a/png/snappymail.png and b/png/snappymail.png differ diff --git a/png/snibox.png b/png/snibox.png deleted file mode 100644 index 33f4f4cd..00000000 Binary files a/png/snibox.png and /dev/null differ diff --git a/png/snikket.png b/png/snikket.png new file mode 100644 index 00000000..1607b673 Binary files /dev/null and b/png/snikket.png differ diff --git a/png/snipe-it.png b/png/snipe-it.png deleted file mode 100644 index fd21a753..00000000 Binary files a/png/snipe-it.png and /dev/null differ diff --git a/png/snippetbox.png b/png/snippetbox.png deleted file mode 100644 index 2b266019..00000000 Binary files a/png/snippetbox.png and /dev/null differ diff --git a/png/socialhome.png b/png/socialhome.png new file mode 100644 index 00000000..19e4292b Binary files /dev/null and b/png/socialhome.png differ diff --git a/png/sogo.png b/png/sogo.png index e0f41e41..fe45e874 100644 Binary files a/png/sogo.png and b/png/sogo.png differ diff --git a/png/solid-invoice.png b/png/solid-invoice.png deleted file mode 100644 index 1e063485..00000000 Binary files a/png/solid-invoice.png and /dev/null differ diff --git a/png/solidtime-light.png b/png/solidtime-light.png new file mode 100644 index 00000000..6a53dc51 Binary files /dev/null and b/png/solidtime-light.png differ diff --git a/png/solidtime.png b/png/solidtime.png new file mode 100644 index 00000000..9f315864 Binary files /dev/null and b/png/solidtime.png differ diff --git a/png/sonarqube.png b/png/sonarqube.png index 3157dc0c..0d1ada19 100644 Binary files a/png/sonarqube.png and b/png/sonarqube.png differ diff --git a/png/sonarr-dark.png b/png/sonarr-dark.png new file mode 100644 index 00000000..1b7efef6 Binary files /dev/null and b/png/sonarr-dark.png differ diff --git a/png/sonarr.png b/png/sonarr.png index 245d5514..34a1c455 100644 Binary files a/png/sonarr.png and b/png/sonarr.png differ diff --git a/png/sonatype-repository-light.png b/png/sonatype-repository-light.png deleted file mode 100644 index 096b6896..00000000 Binary files a/png/sonatype-repository-light.png and /dev/null differ diff --git a/png/sonatype-repository.png b/png/sonatype-repository.png deleted file mode 100644 index c435841a..00000000 Binary files a/png/sonatype-repository.png and /dev/null differ diff --git a/png/sophos-dark.png b/png/sophos-dark.png new file mode 100644 index 00000000..55f8238e Binary files /dev/null and b/png/sophos-dark.png differ diff --git a/png/sophos.png b/png/sophos.png index 52a51b8c..07db1bba 100644 Binary files a/png/sophos.png and b/png/sophos.png differ diff --git a/png/soulseek.png b/png/soulseek.png deleted file mode 100644 index a82410e0..00000000 Binary files a/png/soulseek.png and /dev/null differ diff --git a/png/sourcegraph.png b/png/sourcegraph.png index 07b8dc73..a57b3b00 100644 Binary files a/png/sourcegraph.png and b/png/sourcegraph.png differ diff --git a/png/spamassassin.png b/png/spamassassin.png index fa2d762b..77317d69 100644 Binary files a/png/spamassassin.png and b/png/spamassassin.png differ diff --git a/png/sparkleshare.png b/png/sparkleshare.png index c57257af..9bed9ace 100644 Binary files a/png/sparkleshare.png and b/png/sparkleshare.png differ diff --git a/png/specifically-clementines.png b/png/specifically-clementines.png new file mode 100644 index 00000000..0344e56c Binary files /dev/null and b/png/specifically-clementines.png differ diff --git a/png/specter-desktop.png b/png/specter-desktop.png deleted file mode 100644 index 5ed217fe..00000000 Binary files a/png/specter-desktop.png and /dev/null differ diff --git a/png/speedtest-tracker-old.png b/png/speedtest-tracker-old.png deleted file mode 100644 index 15c6ca5b..00000000 Binary files a/png/speedtest-tracker-old.png and /dev/null differ diff --git a/png/speedtest-tracker.png b/png/speedtest-tracker.png deleted file mode 100644 index 0a992472..00000000 Binary files a/png/speedtest-tracker.png and /dev/null differ diff --git a/png/sphinx-doc.png b/png/sphinx-doc.png index a44bec3b..c3ac6375 100644 Binary files a/png/sphinx-doc.png and b/png/sphinx-doc.png differ diff --git a/png/sphinx-relay.png b/png/sphinx-relay.png index dcd4a893..6817c808 100644 Binary files a/png/sphinx-relay.png and b/png/sphinx-relay.png differ diff --git a/png/sphinx.png b/png/sphinx.png index a44bec3b..c3ac6375 100644 Binary files a/png/sphinx.png and b/png/sphinx.png differ diff --git a/png/spiderfoot.png b/png/spiderfoot.png deleted file mode 100644 index a83cb84c..00000000 Binary files a/png/spiderfoot.png and /dev/null differ diff --git a/png/splunk.png b/png/splunk.png index a39ab0d8..07dce0f0 100644 Binary files a/png/splunk.png and b/png/splunk.png differ diff --git a/png/spoolman.png b/png/spoolman.png index c5fd461b..fa3dded5 100644 Binary files a/png/spoolman.png and b/png/spoolman.png differ diff --git a/png/spotify.png b/png/spotify.png index 0c843eeb..362f42ae 100644 Binary files a/png/spotify.png and b/png/spotify.png differ diff --git a/png/spotnet.png b/png/spotnet.png deleted file mode 100644 index a68bde89..00000000 Binary files a/png/spotnet.png and /dev/null differ diff --git a/png/sqlitebrowser.png b/png/sqlitebrowser.png index 9ea9a466..ad9b00f3 100644 Binary files a/png/sqlitebrowser.png and b/png/sqlitebrowser.png differ diff --git a/png/squeezebox-server.png b/png/squeezebox-server.png deleted file mode 100644 index d91de0cf..00000000 Binary files a/png/squeezebox-server.png and /dev/null differ diff --git a/png/squidex.png b/png/squidex.png index 02dcb621..6a8ee717 100644 Binary files a/png/squidex.png and b/png/squidex.png differ diff --git a/png/squirrel-servers-manager.png b/png/squirrel-servers-manager.png new file mode 100644 index 00000000..85522724 Binary files /dev/null and b/png/squirrel-servers-manager.png differ diff --git a/png/sshwifty.png b/png/sshwifty.png index ff34b455..279d92a4 100644 Binary files a/png/sshwifty.png and b/png/sshwifty.png differ diff --git a/png/stalwart-mail-server.png b/png/stalwart-mail-server.png new file mode 100644 index 00000000..6f0fc795 Binary files /dev/null and b/png/stalwart-mail-server.png differ diff --git a/png/stalwart.png b/png/stalwart.png index d00d6846..01edc192 100644 Binary files a/png/stalwart.png and b/png/stalwart.png differ diff --git a/png/standard-notes.png b/png/standard-notes.png new file mode 100644 index 00000000..d285b627 Binary files /dev/null and b/png/standard-notes.png differ diff --git a/png/startpage.png b/png/startpage.png index 782a2eb0..fb5a5329 100644 Binary files a/png/startpage.png and b/png/startpage.png differ diff --git a/png/stash.png b/png/stash.png index 17b6d2cc..2974470d 100644 Binary files a/png/stash.png and b/png/stash.png differ diff --git a/png/statping-ng.png b/png/statping-ng.png deleted file mode 100644 index a886a1c2..00000000 Binary files a/png/statping-ng.png and /dev/null differ diff --git a/png/statping.png b/png/statping.png deleted file mode 100644 index a886a1c2..00000000 Binary files a/png/statping.png and /dev/null differ diff --git a/png/stb-proxy.png b/png/stb-proxy.png index 1d981c73..1b1afadf 100644 Binary files a/png/stb-proxy.png and b/png/stb-proxy.png differ diff --git a/png/steam.png b/png/steam.png index 2e4cd8ce..1d5043e9 100644 Binary files a/png/steam.png and b/png/steam.png differ diff --git a/png/step-ca.png b/png/step-ca.png new file mode 100644 index 00000000..6b2e4841 Binary files /dev/null and b/png/step-ca.png differ diff --git a/png/stirling-pdf.png b/png/stirling-pdf.png index e9985994..8f853a6d 100644 Binary files a/png/stirling-pdf.png and b/png/stirling-pdf.png differ diff --git a/png/storj.png b/png/storj.png index 74e7ffad..7b617870 100644 Binary files a/png/storj.png and b/png/storj.png differ diff --git a/png/storm.png b/png/storm.png index 97b1572f..e1a4a43b 100644 Binary files a/png/storm.png and b/png/storm.png differ diff --git a/png/stormkit.png b/png/stormkit.png new file mode 100644 index 00000000..0dcc7c9f Binary files /dev/null and b/png/stormkit.png differ diff --git a/png/strapi.png b/png/strapi.png index ccc5c3dd..8575fc59 100644 Binary files a/png/strapi.png and b/png/strapi.png differ diff --git a/png/streama.png b/png/streama.png deleted file mode 100644 index 63c44269..00000000 Binary files a/png/streama.png and /dev/null differ diff --git a/png/stremio.png b/png/stremio.png index 5ffa239e..ea01c090 100644 Binary files a/png/stremio.png and b/png/stremio.png differ diff --git a/png/stump-alt.png b/png/stump-alt.png index df4fddcc..6e5bba4e 100644 Binary files a/png/stump-alt.png and b/png/stump-alt.png differ diff --git a/png/stump.png b/png/stump.png index 31822b15..84f42c14 100644 Binary files a/png/stump.png and b/png/stump.png differ diff --git a/png/subatic.png b/png/subatic.png new file mode 100644 index 00000000..8ad92c2f Binary files /dev/null and b/png/subatic.png differ diff --git a/png/substreamer.png b/png/substreamer.png deleted file mode 100644 index 95b1696d..00000000 Binary files a/png/substreamer.png and /dev/null differ diff --git a/png/sunshine.png b/png/sunshine.png index 4be6170e..e4b416b8 100644 Binary files a/png/sunshine.png and b/png/sunshine.png differ diff --git a/png/supabase.png b/png/supabase.png new file mode 100644 index 00000000..1e425dde Binary files /dev/null and b/png/supabase.png differ diff --git a/png/supermicro.png b/png/supermicro.png index 529ed662..eb14ab1f 100644 Binary files a/png/supermicro.png and b/png/supermicro.png differ diff --git a/png/surveymonkey.png b/png/surveymonkey.png new file mode 100644 index 00000000..6a857249 Binary files /dev/null and b/png/surveymonkey.png differ diff --git a/png/swarmpit.png b/png/swarmpit.png index 6ccf29a2..896cc861 100644 Binary files a/png/swarmpit.png and b/png/swarmpit.png differ diff --git a/png/swift.png b/png/swift.png index f805626a..fae7cd80 100644 Binary files a/png/swift.png and b/png/swift.png differ diff --git a/png/swizzin.png b/png/swizzin.png deleted file mode 100644 index 5ba06bdf..00000000 Binary files a/png/swizzin.png and /dev/null differ diff --git a/png/syft.png b/png/syft.png deleted file mode 100644 index f4fa4e58..00000000 Binary files a/png/syft.png and /dev/null differ diff --git a/png/symmetricom-light.png b/png/symmetricom-light.png index 9ef7d71a..3a843a20 100644 Binary files a/png/symmetricom-light.png and b/png/symmetricom-light.png differ diff --git a/png/symmetricom.png b/png/symmetricom.png index bfdabcb8..68e5778c 100644 Binary files a/png/symmetricom.png and b/png/symmetricom.png differ diff --git a/png/sympa.png b/png/sympa.png deleted file mode 100644 index 58f3fb98..00000000 Binary files a/png/sympa.png and /dev/null differ diff --git a/png/synapse-light.png b/png/synapse-light.png new file mode 100644 index 00000000..26d88ff7 Binary files /dev/null and b/png/synapse-light.png differ diff --git a/png/synapse.png b/png/synapse.png new file mode 100644 index 00000000..5ad3b9a3 Binary files /dev/null and b/png/synapse.png differ diff --git a/png/syncany.png b/png/syncany.png deleted file mode 100644 index 9aaadcdc..00000000 Binary files a/png/syncany.png and /dev/null differ diff --git a/png/synclounge-light.png b/png/synclounge-light.png deleted file mode 100644 index 1b504a3c..00000000 Binary files a/png/synclounge-light.png and /dev/null differ diff --git a/png/synclounge.png b/png/synclounge.png deleted file mode 100644 index b9999c2f..00000000 Binary files a/png/synclounge.png and /dev/null differ diff --git a/png/syncthing-dark.png b/png/syncthing-dark.png new file mode 100644 index 00000000..aa620064 Binary files /dev/null and b/png/syncthing-dark.png differ diff --git a/png/syncthing.png b/png/syncthing.png index e397aef6..80e71b91 100644 Binary files a/png/syncthing.png and b/png/syncthing.png differ diff --git a/png/synology-audio-station.png b/png/synology-audio-station.png deleted file mode 100644 index 3a965af3..00000000 Binary files a/png/synology-audio-station.png and /dev/null differ diff --git a/png/synology-calendar.png b/png/synology-calendar.png deleted file mode 100644 index 5db8499f..00000000 Binary files a/png/synology-calendar.png and /dev/null differ diff --git a/png/synology-chat.png b/png/synology-chat.png deleted file mode 100644 index 25c5c615..00000000 Binary files a/png/synology-chat.png and /dev/null differ diff --git a/png/synology-cloud-sync.png b/png/synology-cloud-sync.png deleted file mode 100644 index 2e58e93a..00000000 Binary files a/png/synology-cloud-sync.png and /dev/null differ diff --git a/png/synology-contacts.png b/png/synology-contacts.png deleted file mode 100644 index 66d2b32d..00000000 Binary files a/png/synology-contacts.png and /dev/null differ diff --git a/png/synology-document-viewer.png b/png/synology-document-viewer.png deleted file mode 100644 index d2e272dc..00000000 Binary files a/png/synology-document-viewer.png and /dev/null differ diff --git a/png/synology-download-station.png b/png/synology-download-station.png deleted file mode 100644 index a4a995f5..00000000 Binary files a/png/synology-download-station.png and /dev/null differ diff --git a/png/synology-drive-server.png b/png/synology-drive-server.png deleted file mode 100644 index e0304ff7..00000000 Binary files a/png/synology-drive-server.png and /dev/null differ diff --git a/png/synology-drive.png b/png/synology-drive.png deleted file mode 100644 index e0304ff7..00000000 Binary files a/png/synology-drive.png and /dev/null differ diff --git a/png/synology-dsm.png b/png/synology-dsm.png index 2ffe3b6e..a6d81faa 100644 Binary files a/png/synology-dsm.png and b/png/synology-dsm.png differ diff --git a/png/synology-file-station.png b/png/synology-file-station.png deleted file mode 100644 index 32a7bede..00000000 Binary files a/png/synology-file-station.png and /dev/null differ diff --git a/png/synology-light.png b/png/synology-light.png new file mode 100644 index 00000000..4530a53a Binary files /dev/null and b/png/synology-light.png differ diff --git a/png/synology-mail-plus.png b/png/synology-mail-plus.png deleted file mode 100644 index 081addd3..00000000 Binary files a/png/synology-mail-plus.png and /dev/null differ diff --git a/png/synology-mail-station.png b/png/synology-mail-station.png deleted file mode 100644 index 2c496023..00000000 Binary files a/png/synology-mail-station.png and /dev/null differ diff --git a/png/synology-note-station.png b/png/synology-note-station.png deleted file mode 100644 index a7111376..00000000 Binary files a/png/synology-note-station.png and /dev/null differ diff --git a/png/synology-office.png b/png/synology-office.png deleted file mode 100644 index 59955f22..00000000 Binary files a/png/synology-office.png and /dev/null differ diff --git a/png/synology-pdfviewer.png b/png/synology-pdfviewer.png deleted file mode 100644 index d2e272dc..00000000 Binary files a/png/synology-pdfviewer.png and /dev/null differ diff --git a/png/synology-photo-station.png b/png/synology-photo-station.png deleted file mode 100644 index 9dd5e904..00000000 Binary files a/png/synology-photo-station.png and /dev/null differ diff --git a/png/synology-photos.png b/png/synology-photos.png deleted file mode 100644 index a4579d3e..00000000 Binary files a/png/synology-photos.png and /dev/null differ diff --git a/png/synology-surveillance-station.png b/png/synology-surveillance-station.png deleted file mode 100644 index 0358966e..00000000 Binary files a/png/synology-surveillance-station.png and /dev/null differ diff --git a/png/synology-text-editor.png b/png/synology-text-editor.png deleted file mode 100644 index 6f877842..00000000 Binary files a/png/synology-text-editor.png and /dev/null differ diff --git a/png/synology-video-station.png b/png/synology-video-station.png deleted file mode 100644 index dd2f50a0..00000000 Binary files a/png/synology-video-station.png and /dev/null differ diff --git a/png/synology-webstation.png b/png/synology-webstation.png deleted file mode 100644 index 186e7c07..00000000 Binary files a/png/synology-webstation.png and /dev/null differ diff --git a/png/synology.png b/png/synology.png index 7619d0f4..42987b40 100644 Binary files a/png/synology.png and b/png/synology.png differ diff --git a/png/sysreptor.png b/png/sysreptor.png index 726f565b..0b1b95a2 100644 Binary files a/png/sysreptor.png and b/png/sysreptor.png differ diff --git a/png/tabula.png b/png/tabula.png index b3af9ec7..a8c8a0dc 100644 Binary files a/png/tabula.png and b/png/tabula.png differ diff --git a/png/tacticalrmm.png b/png/tacticalrmm.png index 049858f3..7bed60ac 100644 Binary files a/png/tacticalrmm.png and b/png/tacticalrmm.png differ diff --git a/png/taiga.png b/png/taiga.png index 9e22ce9d..b973862d 100644 Binary files a/png/taiga.png and b/png/taiga.png differ diff --git a/png/tailscale-light.png b/png/tailscale-light.png index 980ac874..63af31f7 100644 Binary files a/png/tailscale-light.png and b/png/tailscale-light.png differ diff --git a/png/tailscale.png b/png/tailscale.png index a2353c75..e707e3bc 100644 Binary files a/png/tailscale.png and b/png/tailscale.png differ diff --git a/png/talos.png b/png/talos.png index 4dc84ea5..16a2f223 100644 Binary files a/png/talos.png and b/png/talos.png differ diff --git a/png/tandoor-recipes.png b/png/tandoor-recipes.png new file mode 100644 index 00000000..15890d35 Binary files /dev/null and b/png/tandoor-recipes.png differ diff --git a/png/tandoor.png b/png/tandoor.png deleted file mode 100644 index 60bdaad7..00000000 Binary files a/png/tandoor.png and /dev/null differ diff --git a/png/tandoorrecipes.png b/png/tandoorrecipes.png deleted file mode 100644 index 60bdaad7..00000000 Binary files a/png/tandoorrecipes.png and /dev/null differ diff --git a/png/tangerine-ui.png b/png/tangerine-ui.png new file mode 100644 index 00000000..412e1328 Binary files /dev/null and b/png/tangerine-ui.png differ diff --git a/png/tanoshi.png b/png/tanoshi.png deleted file mode 100644 index b0ca574c..00000000 Binary files a/png/tanoshi.png and /dev/null differ diff --git a/png/tar1090.png b/png/tar1090.png deleted file mode 100644 index c21fd821..00000000 Binary files a/png/tar1090.png and /dev/null differ diff --git a/png/taskcafe.png b/png/taskcafe.png index fc7762b0..888f45bc 100644 Binary files a/png/taskcafe.png and b/png/taskcafe.png differ diff --git a/png/tasmoadmin.png b/png/tasmoadmin.png deleted file mode 100644 index eed9b643..00000000 Binary files a/png/tasmoadmin.png and /dev/null differ diff --git a/png/tasmota-light.png b/png/tasmota-light.png index 6d7c500e..f6060a89 100644 Binary files a/png/tasmota-light.png and b/png/tasmota-light.png differ diff --git a/png/tasmota.png b/png/tasmota.png index 0321890c..f55e3469 100644 Binary files a/png/tasmota.png and b/png/tasmota.png differ diff --git a/png/tautulli.png b/png/tautulli.png index c8a84c13..8e98645b 100644 Binary files a/png/tautulli.png and b/png/tautulli.png differ diff --git a/png/tdarr.png b/png/tdarr.png deleted file mode 100644 index b507192c..00000000 Binary files a/png/tdarr.png and /dev/null differ diff --git a/png/teamcity-light.png b/png/teamcity-light.png new file mode 100644 index 00000000..b365dc17 Binary files /dev/null and b/png/teamcity-light.png differ diff --git a/png/teamcity.png b/png/teamcity.png index ad59d0d4..5e2e6458 100644 Binary files a/png/teamcity.png and b/png/teamcity.png differ diff --git a/png/teamspeak.png b/png/teamspeak.png index 9cc027fe..513e815b 100644 Binary files a/png/teamspeak.png and b/png/teamspeak.png differ diff --git a/png/technitium.png b/png/technitium.png deleted file mode 100644 index 09d325f7..00000000 Binary files a/png/technitium.png and /dev/null differ diff --git a/png/teedy.png b/png/teedy.png deleted file mode 100644 index 9cbc395c..00000000 Binary files a/png/teedy.png and /dev/null differ diff --git a/png/telegraf.png b/png/telegraf.png index c609ca1f..b19eb4f9 100644 Binary files a/png/telegraf.png and b/png/telegraf.png differ diff --git a/png/telegram.png b/png/telegram.png index c0db5118..9afb603c 100644 Binary files a/png/telegram.png and b/png/telegram.png differ diff --git a/png/telekom.png b/png/telekom.png index 26eed82b..1c8f94ed 100644 Binary files a/png/telekom.png and b/png/telekom.png differ diff --git a/png/teleport.png b/png/teleport.png index b128b6f2..f86c405f 100644 Binary files a/png/teleport.png and b/png/teleport.png differ diff --git a/png/tenda.png b/png/tenda.png index 8628ac51..8b779d21 100644 Binary files a/png/tenda.png and b/png/tenda.png differ diff --git a/png/terminal.png b/png/terminal.png index f1ffe015..83cc5694 100644 Binary files a/png/terminal.png and b/png/terminal.png differ diff --git a/png/terraform.png b/png/terraform.png index 1842872f..9f3a3812 100644 Binary files a/png/terraform.png and b/png/terraform.png differ diff --git a/png/teslamate-light.png b/png/teslamate-light.png new file mode 100644 index 00000000..9bd20d06 Binary files /dev/null and b/png/teslamate-light.png differ diff --git a/png/teslamate.png b/png/teslamate.png index 48711858..78ed5c78 100644 Binary files a/png/teslamate.png and b/png/teslamate.png differ diff --git a/png/thanos.png b/png/thanos.png index ad7b2a39..450002b4 100644 Binary files a/png/thanos.png and b/png/thanos.png differ diff --git a/png/the-pirate-bay.png b/png/the-pirate-bay.png index bd74a9e1..749cddfb 100644 Binary files a/png/the-pirate-bay.png and b/png/the-pirate-bay.png differ diff --git a/png/the-proxy-bay.png b/png/the-proxy-bay.png index bd74a9e1..749cddfb 100644 Binary files a/png/the-proxy-bay.png and b/png/the-proxy-bay.png differ diff --git a/png/theia-light.png b/png/theia-light.png index b28c0c06..8f6bc6b4 100644 Binary files a/png/theia-light.png and b/png/theia-light.png differ diff --git a/png/theia.png b/png/theia.png index 0fcad4d8..31bc602a 100644 Binary files a/png/theia.png and b/png/theia.png differ diff --git a/png/thelounge.png b/png/thelounge.png index fee5edfa..f33a3c5a 100644 Binary files a/png/thelounge.png and b/png/thelounge.png differ diff --git a/png/themepark.png b/png/themepark.png deleted file mode 100644 index 74d23123..00000000 Binary files a/png/themepark.png and /dev/null differ diff --git a/png/theodinproject.png b/png/theodinproject.png index 4de0012a..15df7e4f 100644 Binary files a/png/theodinproject.png and b/png/theodinproject.png differ diff --git a/png/thingsboard.png b/png/thingsboard.png index bc4ba6fe..9fe3371f 100644 Binary files a/png/thingsboard.png and b/png/thingsboard.png differ diff --git a/png/threads-light.png b/png/threads-light.png new file mode 100644 index 00000000..2b652e9a Binary files /dev/null and b/png/threads-light.png differ diff --git a/png/threads.png b/png/threads.png new file mode 100644 index 00000000..5e64f497 Binary files /dev/null and b/png/threads.png differ diff --git a/png/thunderbird.png b/png/thunderbird.png index eb982041..1c0d9c67 100644 Binary files a/png/thunderbird.png and b/png/thunderbird.png differ diff --git a/png/thunderhub-light.png b/png/thunderhub-light.png deleted file mode 100644 index 0efd60f5..00000000 Binary files a/png/thunderhub-light.png and /dev/null differ diff --git a/png/thunderhub.png b/png/thunderhub.png deleted file mode 100644 index cd30b007..00000000 Binary files a/png/thunderhub.png and /dev/null differ diff --git a/png/tianji-light.png b/png/tianji-light.png new file mode 100644 index 00000000..f3430685 Binary files /dev/null and b/png/tianji-light.png differ diff --git a/png/tianji.png b/png/tianji.png new file mode 100644 index 00000000..ccb5815c Binary files /dev/null and b/png/tianji.png differ diff --git a/png/tiddlywiki-light.png b/png/tiddlywiki-light.png new file mode 100644 index 00000000..60bcd77f Binary files /dev/null and b/png/tiddlywiki-light.png differ diff --git a/png/tiddlywiki.png b/png/tiddlywiki.png new file mode 100644 index 00000000..849c36de Binary files /dev/null and b/png/tiddlywiki.png differ diff --git a/png/tiktok-light.png b/png/tiktok-light.png index 440155fe..852d0a10 100644 Binary files a/png/tiktok-light.png and b/png/tiktok-light.png differ diff --git a/png/tiktok.png b/png/tiktok.png index bcd446de..a4b2bc3c 100644 Binary files a/png/tiktok.png and b/png/tiktok.png differ diff --git a/png/timemachines-light.png b/png/timemachines-light.png deleted file mode 100644 index aab19b31..00000000 Binary files a/png/timemachines-light.png and /dev/null differ diff --git a/png/timemachines.png b/png/timemachines.png deleted file mode 100644 index 738e3bb6..00000000 Binary files a/png/timemachines.png and /dev/null differ diff --git a/png/timetagger-light.png b/png/timetagger-light.png index 5d4b3d52..0f6d7b8b 100644 Binary files a/png/timetagger-light.png and b/png/timetagger-light.png differ diff --git a/png/timetagger.png b/png/timetagger.png index c61e4e94..76492725 100644 Binary files a/png/timetagger.png and b/png/timetagger.png differ diff --git a/png/tinypilot.png b/png/tinypilot.png deleted file mode 100644 index 87bb2533..00000000 Binary files a/png/tinypilot.png and /dev/null differ diff --git a/png/tinytinyrss.png b/png/tinytinyrss.png deleted file mode 100644 index 1b22e446..00000000 Binary files a/png/tinytinyrss.png and /dev/null differ diff --git a/png/tipi.png b/png/tipi.png deleted file mode 100644 index 3183f823..00000000 Binary files a/png/tipi.png and /dev/null differ diff --git a/png/tmdb.png b/png/tmdb.png new file mode 100644 index 00000000..aafadc8b Binary files /dev/null and b/png/tmdb.png differ diff --git a/png/todoist-dark.png b/png/todoist-dark.png new file mode 100644 index 00000000..5a411469 Binary files /dev/null and b/png/todoist-dark.png differ diff --git a/png/todoist.png b/png/todoist.png index 3685387a..8d95da9a 100644 Binary files a/png/todoist.png and b/png/todoist.png differ diff --git a/png/tolgee.png b/png/tolgee.png index 020cd6a4..c626dff2 100644 Binary files a/png/tolgee.png and b/png/tolgee.png differ diff --git a/png/tooljet-dark.png b/png/tooljet-dark.png new file mode 100644 index 00000000..9c4cef69 Binary files /dev/null and b/png/tooljet-dark.png differ diff --git a/png/tooljet.png b/png/tooljet.png index 40eaf198..79230548 100644 Binary files a/png/tooljet.png and b/png/tooljet.png differ diff --git a/png/tor.png b/png/tor.png deleted file mode 100644 index 8faa84c3..00000000 Binary files a/png/tor.png and /dev/null differ diff --git a/png/torrserver.png b/png/torrserver.png deleted file mode 100644 index 5a2d9e2e..00000000 Binary files a/png/torrserver.png and /dev/null differ diff --git a/png/touitomamout.png b/png/touitomamout.png new file mode 100644 index 00000000..fa4b73e0 Binary files /dev/null and b/png/touitomamout.png differ diff --git a/png/tp-link.png b/png/tp-link.png index 10875f4e..6c17d8e1 100644 Binary files a/png/tp-link.png and b/png/tp-link.png differ diff --git a/png/tpdb.png b/png/tpdb.png new file mode 100644 index 00000000..0d598679 Binary files /dev/null and b/png/tpdb.png differ diff --git a/png/traccar-dark.png b/png/traccar-dark.png new file mode 100644 index 00000000..5d6910cb Binary files /dev/null and b/png/traccar-dark.png differ diff --git a/png/traccar.png b/png/traccar.png index 8910a5c4..e0949b35 100644 Binary files a/png/traccar.png and b/png/traccar.png differ diff --git a/png/traefik-proxy.png b/png/traefik-proxy.png index 0baf5d28..f0f8111e 100644 Binary files a/png/traefik-proxy.png and b/png/traefik-proxy.png differ diff --git a/png/traefik.png b/png/traefik.png index 7e068f29..fea7ebad 100644 Binary files a/png/traefik.png and b/png/traefik.png differ diff --git a/png/traggo.png b/png/traggo.png index 2cd83533..7d8760e7 100644 Binary files a/png/traggo.png and b/png/traggo.png differ diff --git a/png/trakt.png b/png/trakt.png index d2af8b0e..76db257e 100644 Binary files a/png/trakt.png and b/png/trakt.png differ diff --git a/png/transmission.png b/png/transmission.png index 3b821ae9..1c5fd92b 100644 Binary files a/png/transmission.png and b/png/transmission.png differ diff --git a/png/trash-guides.png b/png/trash-guides.png deleted file mode 100644 index 8b90714e..00000000 Binary files a/png/trash-guides.png and /dev/null differ diff --git a/png/trilium.png b/png/trilium.png index 13a54c25..27c8bcf3 100644 Binary files a/png/trilium.png and b/png/trilium.png differ diff --git a/png/triliumnext.png b/png/triliumnext.png new file mode 100644 index 00000000..c0ab67ed Binary files /dev/null and b/png/triliumnext.png differ diff --git a/png/trivy.png b/png/trivy.png deleted file mode 100644 index a1b4925b..00000000 Binary files a/png/trivy.png and /dev/null differ diff --git a/png/troddit.png b/png/troddit.png deleted file mode 100644 index 6373b0ec..00000000 Binary files a/png/troddit.png and /dev/null differ diff --git a/png/trudesk.png b/png/trudesk.png deleted file mode 100644 index 1f530989..00000000 Binary files a/png/trudesk.png and /dev/null differ diff --git a/png/truenas-core.png b/png/truenas-core.png index 586c67cd..adc3246c 100644 Binary files a/png/truenas-core.png and b/png/truenas-core.png differ diff --git a/png/truenas-enterprise.png b/png/truenas-enterprise.png deleted file mode 100644 index 47645668..00000000 Binary files a/png/truenas-enterprise.png and /dev/null differ diff --git a/png/truenas-scale.png b/png/truenas-scale.png index f38942c5..79d10a0c 100644 Binary files a/png/truenas-scale.png and b/png/truenas-scale.png differ diff --git a/png/truenas.png b/png/truenas.png index 586c67cd..2baf6674 100644 Binary files a/png/truenas.png and b/png/truenas.png differ diff --git a/png/tube-archivist-light.png b/png/tube-archivist-light.png deleted file mode 100644 index 9008943a..00000000 Binary files a/png/tube-archivist-light.png and /dev/null differ diff --git a/png/tube-archivist.png b/png/tube-archivist.png deleted file mode 100644 index 9c84ead7..00000000 Binary files a/png/tube-archivist.png and /dev/null differ diff --git a/png/tubesync-light.png b/png/tubesync-light.png new file mode 100644 index 00000000..41496eb4 Binary files /dev/null and b/png/tubesync-light.png differ diff --git a/png/tubesync.png b/png/tubesync.png index 56a00ddd..9188cd6d 100644 Binary files a/png/tubesync.png and b/png/tubesync.png differ diff --git a/png/tumblr.png b/png/tumblr.png new file mode 100644 index 00000000..88f38353 Binary files /dev/null and b/png/tumblr.png differ diff --git a/png/turbopack-light.png b/png/turbopack-light.png index 293ccd14..e0e5f286 100644 Binary files a/png/turbopack-light.png and b/png/turbopack-light.png differ diff --git a/png/turbopack.png b/png/turbopack.png index 4ab7cf1b..78ee0ac1 100644 Binary files a/png/turbopack.png and b/png/turbopack.png differ diff --git a/png/tux.png b/png/tux.png index 87c66a03..ef8322b0 100644 Binary files a/png/tux.png and b/png/tux.png differ diff --git a/png/tvdb.png b/png/tvdb.png new file mode 100644 index 00000000..ec1b17a0 Binary files /dev/null and b/png/tvdb.png differ diff --git a/png/tvheadend.png b/png/tvheadend.png index 10ed9dc5..27266fb3 100644 Binary files a/png/tvheadend.png and b/png/tvheadend.png differ diff --git a/png/tvp-vod.png b/png/tvp-vod.png deleted file mode 100644 index ec4f55e6..00000000 Binary files a/png/tvp-vod.png and /dev/null differ diff --git a/png/twingate-light.png b/png/twingate-light.png index 372c2127..5c3c4441 100644 Binary files a/png/twingate-light.png and b/png/twingate-light.png differ diff --git a/png/twingate.png b/png/twingate.png index 1628f108..220efe1d 100644 Binary files a/png/twingate.png and b/png/twingate.png differ diff --git a/png/twitch.png b/png/twitch.png index fb5503f0..39fabac0 100644 Binary files a/png/twitch.png and b/png/twitch.png differ diff --git a/png/twitter.png b/png/twitter.png index 2be176b1..7269c7c5 100644 Binary files a/png/twitter.png and b/png/twitter.png differ diff --git a/png/typemill-light.png b/png/typemill-light.png new file mode 100644 index 00000000..5dbf5a9d Binary files /dev/null and b/png/typemill-light.png differ diff --git a/png/typemill.png b/png/typemill.png new file mode 100644 index 00000000..8a386981 Binary files /dev/null and b/png/typemill.png differ diff --git a/png/typescript.png b/png/typescript.png index 6a72efbe..3c3cc6fb 100644 Binary files a/png/typescript.png and b/png/typescript.png differ diff --git a/png/typo3.png b/png/typo3.png index 43b4f097..b371a26a 100644 Binary files a/png/typo3.png and b/png/typo3.png differ diff --git a/png/ubiquiti-networks.png b/png/ubiquiti-networks.png index 820c55f3..2cbf30c0 100644 Binary files a/png/ubiquiti-networks.png and b/png/ubiquiti-networks.png differ diff --git a/png/ubiquiti-unifi.png b/png/ubiquiti-unifi.png new file mode 100644 index 00000000..2115c951 Binary files /dev/null and b/png/ubiquiti-unifi.png differ diff --git a/png/ubiquiti.png b/png/ubiquiti.png index 820c55f3..2cbf30c0 100644 Binary files a/png/ubiquiti.png and b/png/ubiquiti.png differ diff --git a/png/ubooquity.png b/png/ubooquity.png deleted file mode 100644 index cf37a875..00000000 Binary files a/png/ubooquity.png and /dev/null differ diff --git a/png/ubuntu-alt.png b/png/ubuntu-alt.png deleted file mode 100644 index ff16e477..00000000 Binary files a/png/ubuntu-alt.png and /dev/null differ diff --git a/png/ubuntu-linux-alt.png b/png/ubuntu-linux-alt.png new file mode 100644 index 00000000..9b398048 Binary files /dev/null and b/png/ubuntu-linux-alt.png differ diff --git a/png/ubuntu-linux.png b/png/ubuntu-linux.png new file mode 100644 index 00000000..2e94b94e Binary files /dev/null and b/png/ubuntu-linux.png differ diff --git a/png/ubuntu.png b/png/ubuntu.png deleted file mode 100644 index 7e4a4192..00000000 Binary files a/png/ubuntu.png and /dev/null differ diff --git a/png/uc-browser.png b/png/uc-browser.png index 27e6d260..a0c5a9d1 100644 Binary files a/png/uc-browser.png and b/png/uc-browser.png differ diff --git a/png/udemy-light.png b/png/udemy-light.png new file mode 100644 index 00000000..dda997e4 Binary files /dev/null and b/png/udemy-light.png differ diff --git a/png/udemy.png b/png/udemy.png index ee0d30f1..a6a0bdce 100644 Binary files a/png/udemy.png and b/png/udemy.png differ diff --git a/png/ultimate-guitar-light.png b/png/ultimate-guitar-light.png new file mode 100644 index 00000000..2e24aa68 Binary files /dev/null and b/png/ultimate-guitar-light.png differ diff --git a/png/ultimate-guitar.png b/png/ultimate-guitar.png index 16fbd4a3..1cd5a954 100644 Binary files a/png/ultimate-guitar.png and b/png/ultimate-guitar.png differ diff --git a/png/umami-analytics-light.png b/png/umami-analytics-light.png deleted file mode 100644 index 541211d3..00000000 Binary files a/png/umami-analytics-light.png and /dev/null differ diff --git a/png/umami-analytics.png b/png/umami-analytics.png deleted file mode 100644 index 0ad03e0d..00000000 Binary files a/png/umami-analytics.png and /dev/null differ diff --git a/png/umami-light.png b/png/umami-light.png index 541211d3..c590d1aa 100644 Binary files a/png/umami-light.png and b/png/umami-light.png differ diff --git a/png/umami.png b/png/umami.png index 0ad03e0d..aff8b4e0 100644 Binary files a/png/umami.png and b/png/umami.png differ diff --git a/png/umbrel.png b/png/umbrel.png index 76390667..652970d5 100644 Binary files a/png/umbrel.png and b/png/umbrel.png differ diff --git a/png/unbound.png b/png/unbound.png index c400007c..fa2d24a6 100644 Binary files a/png/unbound.png and b/png/unbound.png differ diff --git a/png/undb.png b/png/undb.png new file mode 100644 index 00000000..063f5379 Binary files /dev/null and b/png/undb.png differ diff --git a/png/unifi-controller.png b/png/unifi-controller.png deleted file mode 100644 index 35b046ab..00000000 Binary files a/png/unifi-controller.png and /dev/null differ diff --git a/png/unifi-dark.png b/png/unifi-dark.png new file mode 100644 index 00000000..4896f941 Binary files /dev/null and b/png/unifi-dark.png differ diff --git a/png/unifi-protect.png b/png/unifi-protect.png deleted file mode 100644 index 0af359ab..00000000 Binary files a/png/unifi-protect.png and /dev/null differ diff --git a/png/unifi-voucher-site.png b/png/unifi-voucher-site.png new file mode 100644 index 00000000..2a48e0b7 Binary files /dev/null and b/png/unifi-voucher-site.png differ diff --git a/png/unifi.png b/png/unifi.png index 820c55f3..2cbf30c0 100644 Binary files a/png/unifi.png and b/png/unifi.png differ diff --git a/png/unimus.png b/png/unimus.png index 9badfd7d..2a47eaf3 100644 Binary files a/png/unimus.png and b/png/unimus.png differ diff --git a/png/universal-media-server.png b/png/universal-media-server.png deleted file mode 100644 index 301d1ff8..00000000 Binary files a/png/universal-media-server.png and /dev/null differ diff --git a/png/unmanic.png b/png/unmanic.png deleted file mode 100644 index 2288c8b3..00000000 Binary files a/png/unmanic.png and /dev/null differ diff --git a/png/unraid-alt.png b/png/unraid-alt.png deleted file mode 100644 index d72a2b00..00000000 Binary files a/png/unraid-alt.png and /dev/null differ diff --git a/png/unraid.png b/png/unraid.png index 44e6d324..f0e88fec 100644 Binary files a/png/unraid.png and b/png/unraid.png differ diff --git a/png/untangle.png b/png/untangle.png index e6756610..8befa069 100644 Binary files a/png/untangle.png and b/png/untangle.png differ diff --git a/png/updog.png b/png/updog.png deleted file mode 100644 index 22fdd211..00000000 Binary files a/png/updog.png and /dev/null differ diff --git a/png/ups.png b/png/ups.png index 3ce7a7eb..6e6f52f3 100644 Binary files a/png/ups.png and b/png/ups.png differ diff --git a/png/upsnap.png b/png/upsnap.png index c1746b84..a56b9659 100644 Binary files a/png/upsnap.png and b/png/upsnap.png differ diff --git a/png/uptime-kuma.png b/png/uptime-kuma.png index e526620f..7f22bb91 100644 Binary files a/png/uptime-kuma.png and b/png/uptime-kuma.png differ diff --git a/png/urbackup-server.png b/png/urbackup-server.png deleted file mode 100644 index 40458c81..00000000 Binary files a/png/urbackup-server.png and /dev/null differ diff --git a/png/urbackup.png b/png/urbackup.png deleted file mode 100644 index 40458c81..00000000 Binary files a/png/urbackup.png and /dev/null differ diff --git a/png/valetudo.png b/png/valetudo.png index 1fa0979b..761982ae 100644 Binary files a/png/valetudo.png and b/png/valetudo.png differ diff --git a/png/valkey.png b/png/valkey.png new file mode 100644 index 00000000..62f83641 Binary files /dev/null and b/png/valkey.png differ diff --git a/png/vault-light.png b/png/vault-light.png index a02c7ef0..30e4eadf 100644 Binary files a/png/vault-light.png and b/png/vault-light.png differ diff --git a/png/vault.png b/png/vault.png index 6d86c3b9..22dfbbe7 100644 Binary files a/png/vault.png and b/png/vault.png differ diff --git a/png/vaultwarden-light.png b/png/vaultwarden-light.png index a6fe5523..75772a60 100644 Binary files a/png/vaultwarden-light.png and b/png/vaultwarden-light.png differ diff --git a/png/vaultwarden.png b/png/vaultwarden.png index 5dd08118..3116c81b 100644 Binary files a/png/vaultwarden.png and b/png/vaultwarden.png differ diff --git a/png/vector.png b/png/vector.png new file mode 100644 index 00000000..82d0a844 Binary files /dev/null and b/png/vector.png differ diff --git a/png/veeam.png b/png/veeam.png index 66dbf673..a3bb2356 100644 Binary files a/png/veeam.png and b/png/veeam.png differ diff --git a/png/vercel-light.png b/png/vercel-light.png index 7e28f7e2..aac87a6b 100644 Binary files a/png/vercel-light.png and b/png/vercel-light.png differ diff --git a/png/vercel.png b/png/vercel.png index 2092843e..54f24b57 100644 Binary files a/png/vercel.png and b/png/vercel.png differ diff --git a/png/verizon.png b/png/verizon.png index 82c120c5..9d8447fc 100644 Binary files a/png/verizon.png and b/png/verizon.png differ diff --git a/png/vi.png b/png/vi.png index 94f330ad..4a66fa49 100644 Binary files a/png/vi.png and b/png/vi.png differ diff --git a/png/victoriametrics-light.png b/png/victoriametrics-light.png new file mode 100644 index 00000000..84e4d792 Binary files /dev/null and b/png/victoriametrics-light.png differ diff --git a/png/victoriametrics.png b/png/victoriametrics.png new file mode 100644 index 00000000..3b8b8981 Binary files /dev/null and b/png/victoriametrics.png differ diff --git a/png/vidzy.png b/png/vidzy.png new file mode 100644 index 00000000..5ec280cd Binary files /dev/null and b/png/vidzy.png differ diff --git a/png/viewtube.png b/png/viewtube.png index ededb47d..555a54e5 100644 Binary files a/png/viewtube.png and b/png/viewtube.png differ diff --git a/png/vikunja.png b/png/vikunja.png index 10e33212..977cb22f 100644 Binary files a/png/vikunja.png and b/png/vikunja.png differ diff --git a/png/virgin-media.png b/png/virgin-media.png index 67d67087..68712312 100644 Binary files a/png/virgin-media.png and b/png/virgin-media.png differ diff --git a/png/virtualmin.png b/png/virtualmin.png index 4b39d841..e7696e27 100644 Binary files a/png/virtualmin.png and b/png/virtualmin.png differ diff --git a/png/virtualradarserver.png b/png/virtualradarserver.png deleted file mode 100644 index f73d79c7..00000000 Binary files a/png/virtualradarserver.png and /dev/null differ diff --git a/png/viseron-light.png b/png/viseron-light.png new file mode 100644 index 00000000..11fbeb78 Binary files /dev/null and b/png/viseron-light.png differ diff --git a/png/viseron.png b/png/viseron.png index c9409749..f3431d21 100644 Binary files a/png/viseron.png and b/png/viseron.png differ diff --git a/png/visual-studio-code.png b/png/visual-studio-code.png new file mode 100644 index 00000000..38eb2725 Binary files /dev/null and b/png/visual-studio-code.png differ diff --git a/png/vivaldi.png b/png/vivaldi.png index 5ea51c96..13db2414 100644 Binary files a/png/vivaldi.png and b/png/vivaldi.png differ diff --git a/png/vmware-esxi.png b/png/vmware-esxi.png index 3b5f9605..fe959b34 100644 Binary files a/png/vmware-esxi.png and b/png/vmware-esxi.png differ diff --git a/png/vmware-horizon.png b/png/vmware-horizon.png deleted file mode 100644 index 3e7b8705..00000000 Binary files a/png/vmware-horizon.png and /dev/null differ diff --git a/png/vmware-vcenter.png b/png/vmware-vcenter.png deleted file mode 100644 index 3c9052ce..00000000 Binary files a/png/vmware-vcenter.png and /dev/null differ diff --git a/png/vmware-workstation.png b/png/vmware-workstation.png index 35af6e35..ff067821 100644 Binary files a/png/vmware-workstation.png and b/png/vmware-workstation.png differ diff --git a/png/vmware.png b/png/vmware.png index cdd3f59c..adfe554e 100644 Binary files a/png/vmware.png and b/png/vmware.png differ diff --git a/png/voilib.png b/png/voilib.png new file mode 100644 index 00000000..8b4cb2f2 Binary files /dev/null and b/png/voilib.png differ diff --git a/png/voip-info.png b/png/voip-info.png deleted file mode 100644 index 5cba51cf..00000000 Binary files a/png/voip-info.png and /dev/null differ diff --git a/png/voip-ms.png b/png/voip-ms.png index 6b7ff9e2..9a893ec2 100644 Binary files a/png/voip-ms.png and b/png/voip-ms.png differ diff --git a/png/voltaserve-light.png b/png/voltaserve-light.png new file mode 100644 index 00000000..275aa2a1 Binary files /dev/null and b/png/voltaserve-light.png differ diff --git a/png/voltaserve.png b/png/voltaserve.png new file mode 100644 index 00000000..434b2c05 Binary files /dev/null and b/png/voltaserve.png differ diff --git a/png/volumio-light.png b/png/volumio-light.png index 8032cd9f..78b4a5fa 100644 Binary files a/png/volumio-light.png and b/png/volumio-light.png differ diff --git a/png/volumio.png b/png/volumio.png index ad2e6784..903d2c75 100644 Binary files a/png/volumio.png and b/png/volumio.png differ diff --git a/png/voron.png b/png/voron.png index f415627e..ef26d019 100644 Binary files a/png/voron.png and b/png/voron.png differ diff --git a/png/vscode.png b/png/vscode.png index af38c2d3..c19e791f 100644 Binary files a/png/vscode.png and b/png/vscode.png differ diff --git a/png/vuetorrent.png b/png/vuetorrent.png new file mode 100644 index 00000000..5c0bafe1 Binary files /dev/null and b/png/vuetorrent.png differ diff --git a/png/vultr.png b/png/vultr.png index a0e982b5..21e27a1d 100644 Binary files a/png/vultr.png and b/png/vultr.png differ diff --git a/png/vuplus.png b/png/vuplus.png deleted file mode 100644 index 311fbe04..00000000 Binary files a/png/vuplus.png and /dev/null differ diff --git a/png/wakapi.png b/png/wakapi.png index 96886819..14bc5541 100644 Binary files a/png/wakapi.png and b/png/wakapi.png differ diff --git a/png/wakatime-light.png b/png/wakatime-light.png index e5320628..bdeed60c 100644 Binary files a/png/wakatime-light.png and b/png/wakatime-light.png differ diff --git a/png/wakatime.png b/png/wakatime.png index 9aea1b23..3ad04dc8 100644 Binary files a/png/wakatime.png and b/png/wakatime.png differ diff --git a/png/wallabag-light.png b/png/wallabag-light.png new file mode 100644 index 00000000..438a7f12 Binary files /dev/null and b/png/wallabag-light.png differ diff --git a/png/wallabag.png b/png/wallabag.png index 4835d027..a083f2bd 100644 Binary files a/png/wallabag.png and b/png/wallabag.png differ diff --git a/png/wallos.png b/png/wallos.png deleted file mode 100644 index ee2335fe..00000000 Binary files a/png/wallos.png and /dev/null differ diff --git a/png/wanderer-light.png b/png/wanderer-light.png new file mode 100644 index 00000000..48489c73 Binary files /dev/null and b/png/wanderer-light.png differ diff --git a/png/wanderer.png b/png/wanderer.png new file mode 100644 index 00000000..213fbd03 Binary files /dev/null and b/png/wanderer.png differ diff --git a/png/wanikani.png b/png/wanikani.png deleted file mode 100644 index d0fb8286..00000000 Binary files a/png/wanikani.png and /dev/null differ diff --git a/png/ward.png b/png/ward.png deleted file mode 100644 index 68ecfbbb..00000000 Binary files a/png/ward.png and /dev/null differ diff --git a/png/warpgate.png b/png/warpgate.png index 5c3895c5..3e425263 100644 Binary files a/png/warpgate.png and b/png/warpgate.png differ diff --git a/png/watcharr-light.png b/png/watcharr-light.png new file mode 100644 index 00000000..b30ba9e8 Binary files /dev/null and b/png/watcharr-light.png differ diff --git a/png/watcharr.png b/png/watcharr.png index cdd4dad5..700351f8 100644 Binary files a/png/watcharr.png and b/png/watcharr.png differ diff --git a/png/watcher.png b/png/watcher.png deleted file mode 100644 index 9c99c99c..00000000 Binary files a/png/watcher.png and /dev/null differ diff --git a/png/watchtower.png b/png/watchtower.png index acc25e78..2cbadd7e 100644 Binary files a/png/watchtower.png and b/png/watchtower.png differ diff --git a/png/watchyourlan.png b/png/watchyourlan.png deleted file mode 100644 index fd73e8d6..00000000 Binary files a/png/watchyourlan.png and /dev/null differ diff --git a/png/waze.png b/png/waze.png index cdd47677..b7ed5e51 100644 Binary files a/png/waze.png and b/png/waze.png differ diff --git a/png/wazuh-opaque.png b/png/wazuh-opaque.png deleted file mode 100644 index 7029b3b3..00000000 Binary files a/png/wazuh-opaque.png and /dev/null differ diff --git a/png/wazuh.png b/png/wazuh.png index e595652d..ef448001 100644 Binary files a/png/wazuh.png and b/png/wazuh.png differ diff --git a/png/wbo.png b/png/wbo.png deleted file mode 100644 index 2982d14d..00000000 Binary files a/png/wbo.png and /dev/null differ diff --git a/png/web-check-dark.png b/png/web-check-dark.png new file mode 100644 index 00000000..f4fe9e32 Binary files /dev/null and b/png/web-check-dark.png differ diff --git a/png/web-check-light.png b/png/web-check-light.png deleted file mode 100644 index 498c1ed5..00000000 Binary files a/png/web-check-light.png and /dev/null differ diff --git a/png/web-check.png b/png/web-check.png index f5d0157d..ca4b1203 100644 Binary files a/png/web-check.png and b/png/web-check.png differ diff --git a/png/web-whisper.png b/png/web-whisper.png deleted file mode 100644 index 92f271a9..00000000 Binary files a/png/web-whisper.png and /dev/null differ diff --git a/png/webdav.png b/png/webdav.png deleted file mode 100644 index 5a62b09a..00000000 Binary files a/png/webdav.png and /dev/null differ diff --git a/png/webhook.png b/png/webhook.png index aaf6efb4..7b3ca9f3 100644 Binary files a/png/webhook.png and b/png/webhook.png differ diff --git a/png/webhookd.png b/png/webhookd.png index 495cc05f..b3f64a45 100644 Binary files a/png/webhookd.png and b/png/webhookd.png differ diff --git a/png/webkit.png b/png/webkit.png index f9939e0d..1e229a98 100644 Binary files a/png/webkit.png and b/png/webkit.png differ diff --git a/png/webmin.png b/png/webmin.png index 956a0540..98167365 100644 Binary files a/png/webmin.png and b/png/webmin.png differ diff --git a/png/webssh-light.jpg b/png/webssh-light.jpg deleted file mode 100644 index 8257ff9d..00000000 Binary files a/png/webssh-light.jpg and /dev/null differ diff --git a/png/webssh.jpg b/png/webssh.jpg deleted file mode 100644 index 31b3a8e1..00000000 Binary files a/png/webssh.jpg and /dev/null differ diff --git a/png/webtools.png b/png/webtools.png deleted file mode 100644 index 25f6527d..00000000 Binary files a/png/webtools.png and /dev/null differ diff --git a/png/webtop.png b/png/webtop.png deleted file mode 100644 index ebb34e69..00000000 Binary files a/png/webtop.png and /dev/null differ diff --git a/png/webtorrent.png b/png/webtorrent.png index f8d833a7..5a7c2866 100644 Binary files a/png/webtorrent.png and b/png/webtorrent.png differ diff --git a/png/webtrees.png b/png/webtrees.png index c7789f7c..dd67b93f 100644 Binary files a/png/webtrees.png and b/png/webtrees.png differ diff --git a/png/wekan.png b/png/wekan.png index 9c9cb40e..e5c92d02 100644 Binary files a/png/wekan.png and b/png/wekan.png differ diff --git a/png/wetty.png b/png/wetty.png deleted file mode 100644 index 5a04e7b1..00000000 Binary files a/png/wetty.png and /dev/null differ diff --git a/png/wg-gen-web-light.png b/png/wg-gen-web-light.png deleted file mode 100644 index f0c17f8b..00000000 Binary files a/png/wg-gen-web-light.png and /dev/null differ diff --git a/png/wg-gen-web.png b/png/wg-gen-web.png deleted file mode 100644 index e76da21f..00000000 Binary files a/png/wg-gen-web.png and /dev/null differ diff --git a/png/wger.png b/png/wger.png index 2bc1928d..123ec30d 100644 Binary files a/png/wger.png and b/png/wger.png differ diff --git a/png/whats-up-docker-light.png b/png/whats-up-docker-light.png index 1315e239..03c07861 100644 Binary files a/png/whats-up-docker-light.png and b/png/whats-up-docker-light.png differ diff --git a/png/whats-up-docker.png b/png/whats-up-docker.png index db538b48..fc361dfa 100644 Binary files a/png/whats-up-docker.png and b/png/whats-up-docker.png differ diff --git a/png/whatsapp.png b/png/whatsapp.png index 65e34885..3fb64de5 100644 Binary files a/png/whatsapp.png and b/png/whatsapp.png differ diff --git a/png/whisparr.png b/png/whisparr.png index f45bdbb3..960474a3 100644 Binary files a/png/whisparr.png and b/png/whisparr.png differ diff --git a/png/whodb.png b/png/whodb.png deleted file mode 100644 index c9e8d3c0..00000000 Binary files a/png/whodb.png and /dev/null differ diff --git a/png/whoogle.png b/png/whoogle.png deleted file mode 100644 index 0a041766..00000000 Binary files a/png/whoogle.png and /dev/null differ diff --git a/png/whooglesearch.png b/png/whooglesearch.png deleted file mode 100644 index 0a041766..00000000 Binary files a/png/whooglesearch.png and /dev/null differ diff --git a/png/wifiman.png b/png/wifiman.png deleted file mode 100644 index e775caa6..00000000 Binary files a/png/wifiman.png and /dev/null differ diff --git a/png/wiki-text.png b/png/wiki-text.png deleted file mode 100644 index 22e6aebe..00000000 Binary files a/png/wiki-text.png and /dev/null differ diff --git a/png/wikidocs.png b/png/wikidocs.png new file mode 100644 index 00000000..2a8e203a Binary files /dev/null and b/png/wikidocs.png differ diff --git a/png/wikijs-alt.png b/png/wikijs-alt.png new file mode 100644 index 00000000..fef39d90 Binary files /dev/null and b/png/wikijs-alt.png differ diff --git a/png/wikijs-full.png b/png/wikijs-full.png deleted file mode 100644 index 9093c77f..00000000 Binary files a/png/wikijs-full.png and /dev/null differ diff --git a/png/wikijs.png b/png/wikijs.png index 7f41b123..6f1e9101 100644 Binary files a/png/wikijs.png and b/png/wikijs.png differ diff --git a/png/wikipedia-light.png b/png/wikipedia-light.png new file mode 100644 index 00000000..da78b01a Binary files /dev/null and b/png/wikipedia-light.png differ diff --git a/png/wikipedia.png b/png/wikipedia.png new file mode 100644 index 00000000..f3967e61 Binary files /dev/null and b/png/wikipedia.png differ diff --git a/png/willow.png b/png/willow.png new file mode 100644 index 00000000..f053f3f1 Binary files /dev/null and b/png/willow.png differ diff --git a/png/windmill.png b/png/windmill.png index 7fe3cabf..888a063c 100644 Binary files a/png/windmill.png and b/png/windmill.png differ diff --git a/png/windows-10.png b/png/windows-10.png index 3a90a041..5be067f8 100644 Binary files a/png/windows-10.png and b/png/windows-10.png differ diff --git a/png/windows-11.png b/png/windows-11.png deleted file mode 100644 index e82db298..00000000 Binary files a/png/windows-11.png and /dev/null differ diff --git a/png/windows-7.png b/png/windows-7.png deleted file mode 100644 index eb1c98de..00000000 Binary files a/png/windows-7.png and /dev/null differ diff --git a/png/windows-95-light.png b/png/windows-95-light.png new file mode 100644 index 00000000..249eac20 Binary files /dev/null and b/png/windows-95-light.png differ diff --git a/png/windows-95.png b/png/windows-95.png index da206506..33085b9c 100644 Binary files a/png/windows-95.png and b/png/windows-95.png differ diff --git a/png/windows-98.png b/png/windows-98.png deleted file mode 100644 index f84e0669..00000000 Binary files a/png/windows-98.png and /dev/null differ diff --git a/png/windows-admin-center.jpg b/png/windows-admin-center.jpg deleted file mode 100644 index f80e3c9d..00000000 Binary files a/png/windows-admin-center.jpg and /dev/null differ diff --git a/png/windows-retro-light.png b/png/windows-retro-light.png new file mode 100644 index 00000000..d7806694 Binary files /dev/null and b/png/windows-retro-light.png differ diff --git a/png/windows-retro.png b/png/windows-retro.png new file mode 100644 index 00000000..4a6dc653 Binary files /dev/null and b/png/windows-retro.png differ diff --git a/png/windows-vista.png b/png/windows-vista.png deleted file mode 100644 index 01cadf76..00000000 Binary files a/png/windows-vista.png and /dev/null differ diff --git a/png/windows-xp.png b/png/windows-xp.png deleted file mode 100644 index bf2e6f0b..00000000 Binary files a/png/windows-xp.png and /dev/null differ diff --git a/png/wireguard.png b/png/wireguard.png index b8181d66..e35d9ede 100644 Binary files a/png/wireguard.png and b/png/wireguard.png differ diff --git a/png/wireshark.png b/png/wireshark.png deleted file mode 100644 index a0fb14f1..00000000 Binary files a/png/wireshark.png and /dev/null differ diff --git a/png/wizarr.png b/png/wizarr.png index 841afd02..ea688f63 100644 Binary files a/png/wizarr.png and b/png/wizarr.png differ diff --git a/png/wled.png b/png/wled.png deleted file mode 100644 index 79b956fd..00000000 Binary files a/png/wled.png and /dev/null differ diff --git a/png/wolfi-light.png b/png/wolfi-light.png index db2842c1..62452fff 100644 Binary files a/png/wolfi-light.png and b/png/wolfi-light.png differ diff --git a/png/wolfi.png b/png/wolfi.png index e18d9e8e..892cbc22 100644 Binary files a/png/wolfi.png and b/png/wolfi.png differ diff --git a/png/woocommerce.png b/png/woocommerce.png new file mode 100644 index 00000000..9b1d1bc4 Binary files /dev/null and b/png/woocommerce.png differ diff --git a/png/woodpecker-ci-light.png b/png/woodpecker-ci-light.png deleted file mode 100644 index 560ea206..00000000 Binary files a/png/woodpecker-ci-light.png and /dev/null differ diff --git a/png/woodpecker-ci.png b/png/woodpecker-ci.png index 51fcc8e8..a2c6cde0 100644 Binary files a/png/woodpecker-ci.png and b/png/woodpecker-ci.png differ diff --git a/png/wordpress-light.png b/png/wordpress-light.png deleted file mode 100644 index dcedc8c4..00000000 Binary files a/png/wordpress-light.png and /dev/null differ diff --git a/png/wordpress.png b/png/wordpress.png index 4b84ac31..0eeb2b90 100644 Binary files a/png/wordpress.png and b/png/wordpress.png differ diff --git a/png/workadventure.png b/png/workadventure.png deleted file mode 100644 index 97e61765..00000000 Binary files a/png/workadventure.png and /dev/null differ diff --git a/png/worklenz.png b/png/worklenz.png new file mode 100644 index 00000000..11d57ac7 Binary files /dev/null and b/png/worklenz.png differ diff --git a/png/wotdle-light.png b/png/wotdle-light.png index 82c11270..4972212c 100644 Binary files a/png/wotdle-light.png and b/png/wotdle-light.png differ diff --git a/png/wotdle.png b/png/wotdle.png index 898190af..0a3448d9 100644 Binary files a/png/wotdle.png and b/png/wotdle.png differ diff --git a/png/wownero.png b/png/wownero.png index e3ddaf57..2f6315f1 100644 Binary files a/png/wownero.png and b/png/wownero.png differ diff --git a/png/writefreely-light.png b/png/writefreely-light.png new file mode 100644 index 00000000..246b0ff0 Binary files /dev/null and b/png/writefreely-light.png differ diff --git a/png/writefreely.png b/png/writefreely.png index 169917ca..2fef5061 100644 Binary files a/png/writefreely.png and b/png/writefreely.png differ diff --git a/png/wud-light.png b/png/wud-light.png deleted file mode 100644 index 1315e239..00000000 Binary files a/png/wud-light.png and /dev/null differ diff --git a/png/wud.png b/png/wud.png deleted file mode 100644 index db538b48..00000000 Binary files a/png/wud.png and /dev/null differ diff --git a/png/x-light.png b/png/x-light.png index e36ec8c6..99131def 100644 Binary files a/png/x-light.png and b/png/x-light.png differ diff --git a/png/x.png b/png/x.png index 2465fefd..b466a62e 100644 Binary files a/png/x.png and b/png/x.png differ diff --git a/png/xbackbone.png b/png/xbackbone.png index 9f7fe4d8..91628c05 100644 Binary files a/png/xbackbone.png and b/png/xbackbone.png differ diff --git a/png/xbox-game-pass.png b/png/xbox-game-pass.png new file mode 100644 index 00000000..631c282b Binary files /dev/null and b/png/xbox-game-pass.png differ diff --git a/png/xbox.png b/png/xbox.png new file mode 100644 index 00000000..60990a85 Binary files /dev/null and b/png/xbox.png differ diff --git a/png/xbrowsersync.png b/png/xbrowsersync.png index 0e226fa9..3f044053 100644 Binary files a/png/xbrowsersync.png and b/png/xbrowsersync.png differ diff --git a/png/xcp-ng.png b/png/xcp-ng.png deleted file mode 100644 index 1a217ba4..00000000 Binary files a/png/xcp-ng.png and /dev/null differ diff --git a/png/xen-orchestra.png b/png/xen-orchestra.png deleted file mode 100644 index 949d1444..00000000 Binary files a/png/xen-orchestra.png and /dev/null differ diff --git a/png/xigmanas.png b/png/xigmanas.png deleted file mode 100644 index 7874f038..00000000 Binary files a/png/xigmanas.png and /dev/null differ diff --git a/png/xmr.png b/png/xmr.png index 1b9d76a2..f31eed10 100644 Binary files a/png/xmr.png and b/png/xmr.png differ diff --git a/png/xmrig.png b/png/xmrig.png index 25bb3575..99a70fb3 100644 Binary files a/png/xmrig.png and b/png/xmrig.png differ diff --git a/png/xpipe.png b/png/xpipe.png new file mode 100644 index 00000000..a72c518d Binary files /dev/null and b/png/xpipe.png differ diff --git a/png/xteve.png b/png/xteve.png deleted file mode 100644 index d8df8ee9..00000000 Binary files a/png/xteve.png and /dev/null differ diff --git a/png/xwiki.png b/png/xwiki.png index 103ef019..3ac78c4e 100644 Binary files a/png/xwiki.png and b/png/xwiki.png differ diff --git a/png/yaade.png b/png/yaade.png deleted file mode 100644 index 03644182..00000000 Binary files a/png/yaade.png and /dev/null differ diff --git a/png/yacht-light.png b/png/yacht-light.png deleted file mode 100644 index f5c9353c..00000000 Binary files a/png/yacht-light.png and /dev/null differ diff --git a/png/yacht.png b/png/yacht.png index ad7df056..988e84aa 100644 Binary files a/png/yacht.png and b/png/yacht.png differ diff --git a/png/yahoo-mail.png b/png/yahoo-mail.png deleted file mode 100644 index bc1588ee..00000000 Binary files a/png/yahoo-mail.png and /dev/null differ diff --git a/png/yahoo.png b/png/yahoo.png index 7b2fe7e0..986369ac 100644 Binary files a/png/yahoo.png and b/png/yahoo.png differ diff --git a/png/yamtrack-light.png b/png/yamtrack-light.png new file mode 100644 index 00000000..1261d99a Binary files /dev/null and b/png/yamtrack-light.png differ diff --git a/png/yamtrack.png b/png/yamtrack.png new file mode 100644 index 00000000..3d5c145d Binary files /dev/null and b/png/yamtrack.png differ diff --git a/png/yandex.png b/png/yandex.png index 2100d617..2bc85b8b 100644 Binary files a/png/yandex.png and b/png/yandex.png differ diff --git a/png/yarn-social.png b/png/yarn-social.png deleted file mode 100644 index c342a5de..00000000 Binary files a/png/yarn-social.png and /dev/null differ diff --git a/png/yarr-light.png b/png/yarr-light.png new file mode 100644 index 00000000..8afdcdc7 Binary files /dev/null and b/png/yarr-light.png differ diff --git a/png/yarr.png b/png/yarr.png new file mode 100644 index 00000000..e71f4391 Binary files /dev/null and b/png/yarr.png differ diff --git a/png/ycombinator-dark.png b/png/ycombinator-dark.png new file mode 100644 index 00000000..38a3f81e Binary files /dev/null and b/png/ycombinator-dark.png differ diff --git a/png/ycombinator.png b/png/ycombinator.png index a94c91da..19d2f8c4 100644 Binary files a/png/ycombinator.png and b/png/ycombinator.png differ diff --git a/png/ymarks.png b/png/ymarks.png deleted file mode 100644 index 8d4d3a21..00000000 Binary files a/png/ymarks.png and /dev/null differ diff --git a/png/ynab.png b/png/ynab.png index f4c02340..60643310 100644 Binary files a/png/ynab.png and b/png/ynab.png differ diff --git a/png/your-spotify.png b/png/your-spotify.png index 63cefbc4..09919be3 100644 Binary files a/png/your-spotify.png and b/png/your-spotify.png differ diff --git a/png/yourls.png b/png/yourls.png index 6cbc43a4..612cab1a 100644 Binary files a/png/yourls.png and b/png/yourls.png differ diff --git a/png/youtube-dl.png b/png/youtube-dl.png new file mode 100644 index 00000000..faa259e1 Binary files /dev/null and b/png/youtube-dl.png differ diff --git a/png/youtube-kids.png b/png/youtube-kids.png index 997157db..803315a4 100644 Binary files a/png/youtube-kids.png and b/png/youtube-kids.png differ diff --git a/png/youtube-music.png b/png/youtube-music.png index ef5fcd43..cded7449 100644 Binary files a/png/youtube-music.png and b/png/youtube-music.png differ diff --git a/png/youtube.png b/png/youtube.png index 46468604..46ed4ca7 100644 Binary files a/png/youtube.png and b/png/youtube.png differ diff --git a/png/youtubedl.png b/png/youtubedl.png deleted file mode 100644 index 8055104b..00000000 Binary files a/png/youtubedl.png and /dev/null differ diff --git a/png/yts.png b/png/yts.png index ade05d18..b6e31f43 100644 Binary files a/png/yts.png and b/png/yts.png differ diff --git a/png/yuno-host-light.png b/png/yuno-host-light.png new file mode 100644 index 00000000..9440db5c Binary files /dev/null and b/png/yuno-host-light.png differ diff --git a/png/yunohost-light.png b/png/yunohost-light.png deleted file mode 100644 index 32caab8c..00000000 Binary files a/png/yunohost-light.png and /dev/null differ diff --git a/png/yunohost.png b/png/yunohost.png index 05aad0cc..a2fc09e2 100644 Binary files a/png/yunohost.png and b/png/yunohost.png differ diff --git a/png/z-wave-js-ui.png b/png/z-wave-js-ui.png new file mode 100644 index 00000000..83292caa Binary files /dev/null and b/png/z-wave-js-ui.png differ diff --git a/png/zabbix.png b/png/zabbix.png index 112bee5a..d16dc5a2 100644 Binary files a/png/zabbix.png and b/png/zabbix.png differ diff --git a/png/zabka.png b/png/zabka.png index b83ecb7a..f97ab738 100644 Binary files a/png/zabka.png and b/png/zabka.png differ diff --git a/png/zammad.png b/png/zammad.png index a1268b58..3f6305f8 100644 Binary files a/png/zammad.png and b/png/zammad.png differ diff --git a/png/zendesk.png b/png/zendesk.png index ae4e4c58..e6de457e 100644 Binary files a/png/zendesk.png and b/png/zendesk.png differ diff --git a/png/zerotier-light.png b/png/zerotier-light.png new file mode 100644 index 00000000..37701058 Binary files /dev/null and b/png/zerotier-light.png differ diff --git a/png/zerotier.png b/png/zerotier.png index 26d79c97..dd180d15 100644 Binary files a/png/zerotier.png and b/png/zerotier.png differ diff --git a/png/zigbee2mqtt-light.png b/png/zigbee2mqtt-light.png new file mode 100644 index 00000000..ee2e2e12 Binary files /dev/null and b/png/zigbee2mqtt-light.png differ diff --git a/png/zigbee2mqtt.png b/png/zigbee2mqtt.png index d72d7c04..51fa650d 100644 Binary files a/png/zigbee2mqtt.png and b/png/zigbee2mqtt.png differ diff --git a/png/zipcaptions.png b/png/zipcaptions.png new file mode 100644 index 00000000..145c64cd Binary files /dev/null and b/png/zipcaptions.png differ diff --git a/png/zipline-light.png b/png/zipline-light.png index c7fee2f1..72a4394f 100644 Binary files a/png/zipline-light.png and b/png/zipline-light.png differ diff --git a/png/zipline.png b/png/zipline.png index abd88497..4829ca81 100644 Binary files a/png/zipline.png and b/png/zipline.png differ diff --git a/png/zitadel-light.png b/png/zitadel-light.png index 715a79fc..b114a0a5 100644 Binary files a/png/zitadel-light.png and b/png/zitadel-light.png differ diff --git a/png/zitadel.png b/png/zitadel.png index cb77a39d..737c756f 100644 Binary files a/png/zitadel.png and b/png/zitadel.png differ diff --git a/png/znc.png b/png/znc.png deleted file mode 100644 index 53cdb09e..00000000 Binary files a/png/znc.png and /dev/null differ diff --git a/png/zohomail.png b/png/zohomail.png index 489664f2..db9a379b 100644 Binary files a/png/zohomail.png and b/png/zohomail.png differ diff --git a/png/zoneminder.png b/png/zoneminder.png deleted file mode 100644 index 4022e8f9..00000000 Binary files a/png/zoneminder.png and /dev/null differ diff --git a/png/zoom-alt.png b/png/zoom-alt.png index fc3bbf21..c226676c 100644 Binary files a/png/zoom-alt.png and b/png/zoom-alt.png differ diff --git a/png/zoom.png b/png/zoom.png index 85a31aca..622db52e 100644 Binary files a/png/zoom.png and b/png/zoom.png differ diff --git a/png/zoraxy.png b/png/zoraxy.png index cc2f4042..af55270d 100644 Binary files a/png/zoraxy.png and b/png/zoraxy.png differ diff --git a/png/zulip.png b/png/zulip.png index 60d01b75..dcdae3fb 100644 Binary files a/png/zulip.png and b/png/zulip.png differ diff --git a/png/zwavejs2mqtt.png b/png/zwavejs2mqtt.png deleted file mode 100644 index 20f3e399..00000000 Binary files a/png/zwavejs2mqtt.png and /dev/null differ diff --git a/png/zyxel-communications-light.png b/png/zyxel-communications-light.png new file mode 100644 index 00000000..8c756749 Binary files /dev/null and b/png/zyxel-communications-light.png differ diff --git a/png/zyxel-communications.png b/png/zyxel-communications.png index 3d2683e3..b70d7506 100644 Binary files a/png/zyxel-communications.png and b/png/zyxel-communications.png differ diff --git a/png/zyxel-networks-light.png b/png/zyxel-networks-light.png new file mode 100644 index 00000000..1547811f Binary files /dev/null and b/png/zyxel-networks-light.png differ diff --git a/png/zyxel-networks.png b/png/zyxel-networks.png index 87820000..ac055380 100644 Binary files a/png/zyxel-networks.png and b/png/zyxel-networks.png differ diff --git a/svg/2fauth-light.svg b/svg/2fauth-light.svg index 14b879db..a9cecfb4 100644 --- a/svg/2fauth-light.svg +++ b/svg/2fauth-light.svg @@ -1,8 +1,13 @@ - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/svg/2fauth.svg b/svg/2fauth.svg old mode 100644 new mode 100755 index f725f75e..22aeeb98 --- a/svg/2fauth.svg +++ b/svg/2fauth.svg @@ -1,8 +1,13 @@ - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/svg/activepieces.svg b/svg/activepieces.svg new file mode 100755 index 00000000..bd23abcd --- /dev/null +++ b/svg/activepieces.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/svg/actual-budget.svg b/svg/actual-budget.svg new file mode 100755 index 00000000..f8b08dc8 --- /dev/null +++ b/svg/actual-budget.svg @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/svg/adguard-home.svg b/svg/adguard-home.svg old mode 100644 new mode 100755 index 0e4e3274..f115c5c2 --- a/svg/adguard-home.svg +++ b/svg/adguard-home.svg @@ -1 +1,26 @@ -logo@2xCreated with Sketch. \ No newline at end of file + + + + + + diff --git a/svg/adm.svg b/svg/adm.svg deleted file mode 100644 index 8e529000..00000000 --- a/svg/adm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg/adminer.svg b/svg/adminer.svg new file mode 100755 index 00000000..9cc5e1a2 --- /dev/null +++ b/svg/adminer.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/svg/adventure-log.svg b/svg/adventure-log.svg new file mode 100755 index 00000000..e643c464 --- /dev/null +++ b/svg/adventure-log.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + diff --git a/svg/adventurelog.svg b/svg/adventurelog.svg deleted file mode 100644 index d4d69318..00000000 --- a/svg/adventurelog.svg +++ /dev/null @@ -1,314 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/svg/affine-light.svg b/svg/affine-light.svg new file mode 100644 index 00000000..c12e89db --- /dev/null +++ b/svg/affine-light.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/svg/affine.svg b/svg/affine.svg new file mode 100755 index 00000000..7f3fe621 --- /dev/null +++ b/svg/affine.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/svg/airsonic.svg b/svg/airsonic.svg index 1809d681..e4c59c3d 100644 --- a/svg/airsonic.svg +++ b/svg/airsonic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/airtable.svg b/svg/airtable.svg new file mode 100755 index 00000000..f2feda02 --- /dev/null +++ b/svg/airtable.svg @@ -0,0 +1,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/svg/akkoma-light.svg b/svg/akkoma-light.svg new file mode 100644 index 00000000..0b0fb9f8 --- /dev/null +++ b/svg/akkoma-light.svg @@ -0,0 +1,7 @@ + + Akkoma logo [2 color] + + + + + \ No newline at end of file diff --git a/svg/akkoma.svg b/svg/akkoma.svg new file mode 100755 index 00000000..a182563b --- /dev/null +++ b/svg/akkoma.svg @@ -0,0 +1,7 @@ + + Akkoma logo [2 color] + + + + + \ No newline at end of file diff --git a/svg/albert-heijn.svg b/svg/albert-heijn.svg index 5f3e7d8c..8ae0d3ab 100644 --- a/svg/albert-heijn.svg +++ b/svg/albert-heijn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/aliexpress.svg b/svg/aliexpress.svg index 82c7b9a6..76536d4f 100644 --- a/svg/aliexpress.svg +++ b/svg/aliexpress.svg @@ -1 +1,20 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/svg/alist.svg b/svg/alist.svg old mode 100644 new mode 100755 index 37d5fdcd..23fcea63 --- a/svg/alist.svg +++ b/svg/alist.svg @@ -1,10 +1,33 @@ - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + diff --git a/svg/alma.svg b/svg/alma-linux.svg similarity index 100% rename from svg/alma.svg rename to svg/alma-linux.svg diff --git a/svg/alpine-linux.svg b/svg/alpine-linux.svg new file mode 100644 index 00000000..b664f16f --- /dev/null +++ b/svg/alpine-linux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/alpine.svg b/svg/alpine.svg deleted file mode 100644 index 9414b3d0..00000000 --- a/svg/alpine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg/amazon-light.svg b/svg/amazon-light.svg new file mode 100644 index 00000000..22c00a63 --- /dev/null +++ b/svg/amazon-light.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/svg/amazon-prime.svg b/svg/amazon-prime.svg new file mode 100755 index 00000000..375f0c5c --- /dev/null +++ b/svg/amazon-prime.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/svg/amazon-web-services-light.svg b/svg/amazon-web-services-light.svg new file mode 100644 index 00000000..b9774740 --- /dev/null +++ b/svg/amazon-web-services-light.svg @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/svg/amazon-web-services.svg b/svg/amazon-web-services.svg new file mode 100644 index 00000000..9093499e --- /dev/null +++ b/svg/amazon-web-services.svg @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/svg/amazon.svg b/svg/amazon.svg old mode 100644 new mode 100755 index 77a47d39..17d4e6fb --- a/svg/amazon.svg +++ b/svg/amazon.svg @@ -1 +1,31 @@ - \ No newline at end of file + + + + + + + + + + + diff --git a/svg/amd-light.svg b/svg/amd-light.svg index f21a04c2..95394f8c 100644 --- a/svg/amd-light.svg +++ b/svg/amd-light.svg @@ -1 +1,5 @@ -AMD_Logo-svg \ No newline at end of file + + + + + \ No newline at end of file diff --git a/svg/amd.svg b/svg/amd.svg old mode 100644 new mode 100755 index 9b034731..db371c99 --- a/svg/amd.svg +++ b/svg/amd.svg @@ -1 +1,10 @@ -AMD_Logo-svg \ No newline at end of file + + + + + + + diff --git a/svg/ami-alt.svg b/svg/ami-alt.svg deleted file mode 100644 index 10c3f006..00000000 --- a/svg/ami-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg/android-auto-dark.svg b/svg/android-auto-dark.svg new file mode 100644 index 00000000..996ccec7 --- /dev/null +++ b/svg/android-auto-dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/android.svg b/svg/android.svg old mode 100644 new mode 100755 index ef4fe935..47abc3b1 --- a/svg/android.svg +++ b/svg/android.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + \ No newline at end of file diff --git a/svg/anonaddy.svg b/svg/anonaddy.svg new file mode 100755 index 00000000..84872116 --- /dev/null +++ b/svg/anonaddy.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/svg/ansible-light.svg b/svg/ansible-light.svg new file mode 100644 index 00000000..a29ea43c --- /dev/null +++ b/svg/ansible-light.svg @@ -0,0 +1,10 @@ + + + + + + + \ No newline at end of file diff --git a/svg/ansible.svg b/svg/ansible.svg old mode 100644 new mode 100755 index 7ecca37a..5e9f6ade --- a/svg/ansible.svg +++ b/svg/ansible.svg @@ -1 +1,16 @@ - \ No newline at end of file + + + + + + + + + diff --git a/svg/anything-llm-dark.svg b/svg/anything-llm-dark.svg deleted file mode 100644 index fb820f2c..00000000 --- a/svg/anything-llm-dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg/anything-llm-light.svg b/svg/anything-llm-light.svg deleted file mode 100644 index 11febe6f..00000000 --- a/svg/anything-llm-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/svg/apache-answer.svg b/svg/apache-answer.svg new file mode 100755 index 00000000..cfc911a3 --- /dev/null +++ b/svg/apache-answer.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/svg/apache-druid.svg b/svg/apache-druid.svg index 5c3a25f6..a46c29f7 100644 --- a/svg/apache-druid.svg +++ b/svg/apache-druid.svg @@ -1 +1 @@ -Apache Druid icon \ No newline at end of file +Apache Druid icon \ No newline at end of file diff --git a/svg/apache-subversion.svg b/svg/apache-subversion.svg index 11979bb5..d0b89ad1 100644 --- a/svg/apache-subversion.svg +++ b/svg/apache-subversion.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/apache-tomcat-light.svg b/svg/apache-tomcat-light.svg new file mode 100644 index 00000000..3424bb60 --- /dev/null +++ b/svg/apache-tomcat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/apache-tomcat.svg b/svg/apache-tomcat.svg index dc75244d..12eed506 100644 --- a/svg/apache-tomcat.svg +++ b/svg/apache-tomcat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/apache.svg b/svg/apache.svg index 14377891..06d8b87f 100644 --- a/svg/apache.svg +++ b/svg/apache.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/app-store.svg b/svg/app-store.svg index 4cbb8896..5fb7a095 100644 --- a/svg/app-store.svg +++ b/svg/app-store.svg @@ -1,5 +1,4 @@ - - +