├── .prettierignore ├── .github ├── example-dark.png ├── example-light.png ├── ISSUE_TEMPLATE │ ├── feature-request.yml │ ├── bug-report.yml │ └── suggest-icon.yml └── workflows │ └── wrangler-action.yml ├── .gitattributes ├── .prettierrc ├── wrangler.toml ├── icons ├── Vercel-Dark.svg ├── Vercel-Light.svg ├── GameMakerStudio.svg ├── VueJS-Dark.svg ├── VueJS-Light.svg ├── TensorFlow-Dark.svg ├── TensorFlow-Light.svg ├── FastAPI.svg ├── Ktor-Dark.svg ├── Ktor-Light.svg ├── AlpineJS-Dark.svg ├── AlpineJS-Light.svg ├── Processing-Dark.svg ├── Processing-Light.svg ├── Lit-Dark.svg ├── Lit-Light.svg ├── Markdown-Dark.svg ├── Markdown-Light.svg ├── PlanetScale-Dark.svg ├── PlanetScale-Light.svg ├── Angular-Light.svg ├── Hibernate-Dark.svg ├── Hibernate-Light.svg ├── Kotlin-Dark.svg ├── Kotlin-Light.svg ├── Angular-Dark.svg ├── Sketchup-Dark.svg ├── Sketchup-Light.svg ├── Haskell-Dark.svg ├── HaxeFlixel-Dark.svg ├── Nginx.svg ├── HTML.svg ├── Haskell-Light.svg ├── Gatsby.svg ├── Heroku.svg ├── ActivityPub-Dark.svg ├── ActivityPub-Light.svg ├── StackOverflow-Dark.svg ├── StackOverflow-Light.svg ├── HaxeFlixel-Light.svg ├── Replit-Dark.svg ├── Replit-Light.svg ├── Prisma.svg ├── CSS.svg ├── Flutter-Dark.svg ├── Flutter-Light.svg ├── GTK-Dark.svg ├── GTK-Light.svg ├── Webflow.svg ├── C.svg ├── Crystal-Dark.svg ├── Solidity.svg ├── PyTorch-Dark.svg ├── Fortran.svg ├── PyTorch-Light.svg ├── Crystal-Light.svg ├── VIM-Dark.svg ├── CPP.svg ├── Adonis.svg ├── Julia-Dark.svg ├── Julia-Light.svg ├── TailwindCSS-Dark.svg ├── TailwindCSS-Light.svg ├── VIM-Light.svg ├── WebAssembly.svg ├── Webpack-Light.svg ├── Django.svg ├── Docker.svg ├── D3-Dark.svg ├── D3-Light.svg ├── Webpack-Dark.svg ├── CS.svg ├── RabbitMQ-Dark.svg ├── RabbitMQ-Light.svg ├── DevTo-Dark.svg ├── DevTo-Light.svg ├── Swift.svg ├── CodePen-Dark.svg ├── CodePen-Light.svg ├── GitLab-Dark.svg ├── GitLab-Light.svg ├── OpenStack-Dark.svg ├── OpenStack-Light.svg ├── MongoDB.svg ├── DotNet.svg ├── JavaScript.svg ├── Twitter.svg ├── Figma-Dark.svg ├── Figma-Light.svg ├── Prometheus.svg ├── VSCode-Dark.svg ├── VSCode-Light.svg ├── Forth.svg ├── NuxtJS-Dark.svg ├── NuxtJS-Light.svg ├── V-Dark.svg ├── V-Light.svg ├── Zig-Dark.svg ├── Zig-Light.svg ├── Haxe-Dark.svg ├── Haxe-Light.svg ├── Nim-Dark.svg ├── Supabase-Dark.svg ├── Supabase-Light.svg ├── Nim-Light.svg ├── Spring-Dark.svg ├── Spring-Light.svg ├── LinkedIn.svg ├── ThreeJS-Dark.svg ├── ThreeJS-Light.svg ├── AutoCAD-Dark.svg ├── AutoCAD-Light.svg ├── GCP-Dark.svg ├── GCP-Light.svg ├── Ableton-Dark.svg ├── Ableton-Light.svg ├── Mastodon-Dark.svg ├── Mastodon-Light.svg ├── Dart-Dark.svg ├── Dart-Light.svg ├── NeoVim-Dark.svg ├── NeoVim-Light.svg ├── CMake-Dark.svg ├── CMake-Light.svg ├── QT-Dark.svg ├── QT-Light.svg ├── Remix-Dark.svg ├── Vite-Dark.svg ├── Vite-Light.svg ├── Remix-Light.svg ├── Illustrator.svg ├── TypeScript.svg ├── Python-Dark.svg ├── Python-Light.svg ├── Apollo.svg ├── React-Dark.svg ├── React-Light.svg ├── Octave-Dark.svg ├── Octave-Light.svg ├── Unity-Dark.svg ├── Unity-Light.svg ├── Emacs.svg ├── DynamoDB-Dark.svg ├── DynamoDB-Light.svg ├── ExpressJS-Dark.svg ├── ExpressJS-Light.svg ├── R-Dark.svg ├── R-Light.svg ├── PHP-Dark.svg ├── PHP-Light.svg ├── NextJS-Dark.svg ├── NextJS-Light.svg ├── Ansible.svg ├── Misskey-Dark.svg ├── Misskey-Light.svg ├── Wordpress.svg ├── Cloudflare-Dark.svg ├── Cloudflare-Light.svg ├── Rails.svg ├── Java-Dark.svg ├── Audition.svg ├── Java-Light.svg ├── ROS-Dark.svg ├── Discord.svg ├── Sentry.svg ├── Scala-Light.svg ├── ROS-Light.svg ├── Premiere.svg ├── Scala-Dark.svg ├── Redux.svg └── Bootstrap.svg ├── package.json └── LICENSE /.prettierignore: -------------------------------------------------------------------------------- 1 | icons/ -------------------------------------------------------------------------------- /.github/example-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scar1109/skill-icons/HEAD/.github/example-dark.png -------------------------------------------------------------------------------- /.github/example-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scar1109/skill-icons/HEAD/.github/example-light.png -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | *.svg linguist-detectable 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "arrowParens": "avoid", 4 | "semi": true, 5 | "tabWidth": 2 6 | } 7 | -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- 1 | name = "skill-icons" 2 | type = "webpack" 3 | route = '' 4 | zone_id = '' 5 | usage_model = '' 6 | compatibility_flags = [] 7 | workers_dev = true 8 | compatibility_date = "2022-03-02" -------------------------------------------------------------------------------- /icons/Vercel-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Vercel-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/GameMakerStudio.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/VueJS-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/VueJS-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "skill-icons", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "scripts": { 7 | "dev": "node build.js && miniflare --watch", 8 | "build": "node build.js", 9 | "deploy": "node build.js && wrangler publish" 10 | }, 11 | "devDependencies": { 12 | "@cloudflare/wrangler": "^1.19.8", 13 | "miniflare": "^2.3.0", 14 | "prettier": "^2.5.1" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /icons/TensorFlow-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/TensorFlow-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/FastAPI.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Ktor-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Ktor-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/AlpineJS-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/AlpineJS-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Processing-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/Processing-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/Lit-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/Lit-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/Markdown-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Markdown-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- 1 | name: 💡 Feature Request 2 | title: '[FEATURE REQUEST] Feature' 3 | description: Request a feature with the API 4 | labels: 'feature request' 5 | body: 6 | 7 | # skill name block 8 | - type: input 9 | id: request 10 | attributes: 11 | label: Feature requested 12 | description: "The feature you're requesting. Should have to do with the API." 13 | placeholder: "Add this endpoint because..." 14 | validations: 15 | required: true 16 | -------------------------------------------------------------------------------- /icons/PlanetScale-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/PlanetScale-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Angular-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Hibernate-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/Hibernate-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/Kotlin-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /icons/Kotlin-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.github/workflows/wrangler-action.yml: -------------------------------------------------------------------------------- 1 | name: Deploy 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | deploy: 10 | runs-on: ubuntu-latest 11 | name: Deploy 12 | steps: 13 | - uses: actions/checkout@v2 14 | 15 | - name: Set up Node.js 16 | uses: actions/setup-node@v1 17 | with: 18 | node-version: 16 19 | 20 | - name: build 21 | run: yarn build 22 | 23 | - name: Publish 24 | uses: cloudflare/wrangler-action@1.3.0 25 | with: 26 | apiToken: ${{ secrets.CF_API_TOKEN }} 27 | -------------------------------------------------------------------------------- /icons/Angular-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/Sketchup-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Sketchup-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Haskell-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/HaxeFlixel-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Nginx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/HTML.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Haskell-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/Gatsby.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Heroku.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/ActivityPub-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/ActivityPub-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/StackOverflow-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/StackOverflow-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/HaxeFlixel-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /icons/Replit-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/Replit-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/Prisma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/CSS.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/Flutter-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Flutter-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/GTK-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/GTK-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- 1 | name: 🐛 Bug Report 2 | title: '[BUG REPORT] Bug' 3 | description: A bug in the API or elsewhere 4 | labels: 'bug report' 5 | body: 6 | 7 | - type: input 8 | id: bug 9 | attributes: 10 | label: The bug 11 | description: "A complete of what the bug is" 12 | validations: 13 | required: true 14 | 15 | - type: input 16 | id: steps 17 | attributes: 18 | label: Steps to reproduce 19 | description: "What'd you do to make the bug happen?" 20 | placeholder: "1. Request API..." 21 | validations: 22 | required: false 23 | 24 | - type: input 25 | id: extra 26 | attributes: 27 | label: Any extra info 28 | validations: 29 | required: false 30 | -------------------------------------------------------------------------------- /icons/Webflow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/C.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Crystal-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Solidity.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/PyTorch-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Fortran.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/PyTorch-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Crystal-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/VIM-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/CPP.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Adonis.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Julia-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/Julia-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/TailwindCSS-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/TailwindCSS-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/VIM-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/WebAssembly.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Webpack-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Django.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Docker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/D3-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/D3-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Webpack-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/CS.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/RabbitMQ-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/RabbitMQ-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/DevTo-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/DevTo-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/Swift.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/CodePen-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/CodePen-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/GitLab-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /icons/GitLab-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /icons/OpenStack-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/OpenStack-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/MongoDB.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggest-icon.yml: -------------------------------------------------------------------------------- 1 | name: 🚀 Suggest an Icon 2 | title: '[NEW ICON] Skill Name' 3 | description: Suggest an icon to be added to the list! 4 | labels: 'icon suggestion' 5 | body: 6 | 7 | # skill name block 8 | - type: input 9 | id: skill-name 10 | attributes: 11 | label: Skill Name 12 | description: "The name of the skill you're suggesting. Feel free to suggest more than one!" 13 | placeholder: "VS Code" 14 | validations: 15 | required: true 16 | 17 | # reason to add block 18 | - type: textarea 19 | id: reason 20 | attributes: 21 | label: Why? 22 | description: "Why we should add the skill(s) to the project." 23 | placeholder: "It's popular for web development..." 24 | validations: 25 | required: true 26 | 27 | # reference image block 28 | - type: textarea 29 | id: reference-image 30 | attributes: 31 | label: Reference Image 32 | description: "Do you have any images of what the logo looks like? SVG preferred." 33 | placeholder: "Feel free to drag and drop the files here." 34 | validations: 35 | required: false 36 | -------------------------------------------------------------------------------- /icons/DotNet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/JavaScript.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 tandpfun 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /icons/Figma-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Figma-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Prometheus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/VSCode-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/VSCode-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Forth.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /icons/NuxtJS-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/NuxtJS-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/V-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/V-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Zig-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Zig-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Haxe-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Haxe-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Nim-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Supabase-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Supabase-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Nim-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Spring-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Spring-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/LinkedIn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/ThreeJS-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /icons/ThreeJS-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /icons/AutoCAD-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/AutoCAD-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/GCP-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/GCP-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Ableton-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Ableton-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Mastodon-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Mastodon-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Dart-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Dart-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/NeoVim-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /icons/NeoVim-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /icons/CMake-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /icons/CMake-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /icons/QT-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/QT-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Remix-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/Vite-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /icons/Vite-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /icons/Remix-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/Illustrator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/TypeScript.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Python-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Python-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Apollo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/React-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/React-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Octave-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /icons/Octave-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /icons/Unity-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Unity-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Emacs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/DynamoDB-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /icons/DynamoDB-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /icons/ExpressJS-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/ExpressJS-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/R-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/R-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/PHP-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/PHP-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/NextJS-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/NextJS-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Ansible.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Misskey-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Misskey-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Wordpress.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Cloudflare-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Cloudflare-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Rails.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Java-Dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Audition.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /icons/Java-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/ROS-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /icons/Discord.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Sentry.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /icons/Scala-Light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/ROS-Light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /icons/Premiere.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/Scala-Dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /icons/Redux.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /icons/Bootstrap.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------