Giter Club home page Giter Club logo

devicon's Introduction

GitHub release (latest by semver) GitHub GitHub contributors GitHub branch checks state GitHub issues by-label GitHub repository stars Registered logos


Devicon Logo
Devicon aims to gather all logos representing development languages and tools.

Demo · Request Icon · Contribute

TL;DR

<!-- in your header -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css">

<!-- in your body -->
<i class="devicon-devicon-plain"></i>

Table of Contents

  1. About the Project
  2. Getting Started
  3. Requesting Icon
  4. Contributing
  5. Discord Community
  6. develop vs master
  7. Stale Pull Requests
  8. Building Devicon

About the Project

Devicon aims to gather all logos representing development languages and tools. Each icon comes in several versions: font/SVG, original/plain/line, colored/not colored, wordmark/no wordmark. Devicon has 150+ icons. And it's growing!

See the devicon.json or our website for complete and up to date reference of all available icons.

Thanks to all our contributors and the IcoMoon app. Devicon would not be possible without you.

All product names, logos, and brands are property of their respective owners. All company, product and service names used in this website are for identification purposes only. Use of these names, logos, and brands does not imply endorsement. Usage of these logos should be done according to the company/brand/service's brand policy.

Getting Started

For a super fast setup, go check devicon.dev.
You can either use the raw SVG icons, our Devicon font (which is also available via CDN), or by building Devicon yourself.

Use the devicon font (recommended)

You can install devicon as a dependency to your project either with npm or yarn:

npm install --save devicon
yarn add devicon

If you don't want to use a package manager, you can also download and include devicon.min.css next to the font files to your project. See devicon.dev for details about how to add Devicon to your project via a CDN.

After setting up you just have to include the stylesheet in your header to get started:

<link rel="stylesheet" href="devicon.min.css">

Start using icons with <i>-tag:

<!--  for devicon plain version -->
<i class="devicon-devicon-plain"></i>

<!--  for devicon plain version with wordmark -->
<i class="devicon-devicon-plain-wordmark"></i>

<!--  for devicon plain version colored with devicon main color -->
<i class="devicon-devicon-plain colored"></i>

<!--  for devicon plain version with wordmark colored with devicon main color -->
<i class="devicon-devicon-plain-wordmark colored"></i>

An alternate way to use devicon is by copy/pasting the raw SVG code to your project.

Copy/paste SVG code (from the SVG folder or the project page):

<!--  for devicon plain version -->
<svg id="Devicon" class='devicon-devicon-plain' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path id="plain" fill="#60be86" d="M64,7.83H4.77L14.95,95.13l49,25,.06,0,49.07-25L123.23,7.83Zm42.77,54.86c0,.88,0,1.67-.77,2L73.25,80.44l-2.42,1.13-.27-3.15V72.23l.24-1.57,1.09-.47L95.07,59.81l-21.54-9.6L64.35,68.34,58.9,78.87l-1.22,2.27-2.05-.9L22,64.71a2.42,2.42,0,0,1-1.45-2V56.91a2.39,2.39,0,0,1,1.42-2l34-15.73,3.21-1.44v9.66l.24,1.34-1.56.7L34.45,59.79,56.3,69.42l8.05-16,6.21-12.65,1.13-2.28,1.81.91L106,54.89c.73.35.76,1.14.76,2Z"/></svg>

Add the following CSS rules in your stylesheet:

.devicon-devicon-plain {
  max-width: 2em;
}

/* if you want to change the original color */
.devicon-devicon-plain path {
  fill: #4691f6;
}

You can also use the img tag and reference an SVG directly from the repository:

<img src='https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/devicon/devicon-original.svg'>

Requesting an icon

When you want to request an icon please feel free to create an issue. Check out our Wiki for more information.

Contributing

We are happy with every contribution, whether it's new icons, features, or maintainers. Please have a look at our Wiki to see how you can contribute to this project.

Discord community

We have a Discord community for Devicons. You can easily request icons, discuss, and have a good time talking with the community members! Join the official Discord Server here!

develop vs master

All official releases shall be in master. Any updates in between (icons, features, etc.) will be kept in develop.

develop contains:
  • Latest SVGs (non-optimized).
  • No icons for the latest SVGs. These will be built at every release.
    Can be built manually. See Building Devicon.
  • Experimental changes.
master contains:
  • Latest official release, which contains all the SVGs and icons.
  • Official, tested changes.

Stale Pull Requests

After a pull request has been open for over 30 days with no activity or response from the author, it'll be automatically marked as stale. We might fork your changes and merge the changes ourselves. Since GitHub tracks contributions by commits, you will be credited.

Building Devicon

Follow these steps to build the website and icons either locally or using Gitpod.io.

Table of contents

  1. Using Gitpod to build
  2. Local Installation
    1. Install dependencies
    2. Build the icons
    3. Build the CSS stylesheet
    4. Setting up the web server

Using Gitpod.io

By using Gitpod.io, you can easily build the icons and install the
required dependencies in one single click. No extra setup is required.

Open in Gitpod

Note In case some of the commands are not properly ran, you can
follow the steps below and run the same commands on Gitpod.io

Local Installation

Install dependencies

Fork the repository and clone the forked repository.

git clone https://github.com/<your-github-username>/devicon.git

Note In case you don't have Git installed, check the official guide to install Git on your operating system.

Install all the necessary NPM dependencies

npm install

Note In case you don't have NPM installed, check this ultimate guide on installing Node.js and NPM. These tools are required in order to build Devicon properly.

Install Firefox

https://www.mozilla.org/en-US/firefox/new/

Install Python 3.8

https://www.python.org/downloads/

Note Make sure your Python install includes pip

Install Selenium

```bash python3 -m pip install --upgrade pip && pip install selenium==4.1.0 requests==2.25.1 ```

Build the new icons

Once all the dependencies are installed, you can proceed to build the newest icons.
Usually, this is done on each release, but you can have a sneak peek before a release.

# Linux/Unix
npm run build-icons

# Windows
python3 ./.github/scripts/icomoon_build_githubless.py ./.github/scripts/build_assets/geckodriver-v0.32.2-win64/geckodriver.exe ./icomoon.json ./devicon.json ./icons ./ --headless

The process might take a while, depending on your operating system's speed and the amount of icons.

If there are any errors shown, please let us know by creating an issue or contacting us on our Discord community.

Build the CSS stylesheet

Run the following command to build the new CSS stylesheet.
This file is used to show all the new icons previously built.

npm run build-css

Setting up the web server

Run the following command to start the web server with Python.

npm run dev # Will run on port 8000

Or this command, which does exactly the same, but the port can be customized.

python3 -m http.server <port>

You're done now! 🎉 Your build of Devicons should be available at https://localhost:8000 (or the desired port).


devicon's People

Contributors

amacado avatar bensouchet avatar canaleal avatar conx avatar cyberalien avatar dependabot[bot] avatar enismulic avatar ezsaldana avatar gautam25raj avatar iamclaytonray avatar jusuchin85 avatar kilianpaquier avatar konpa avatar luizcarloscf avatar lunatic-fox avatar maltejur avatar mattkoskela avatar michielpater avatar oligibson avatar panquesito7 avatar pantherared avatar roythearsonist avatar snailedlt avatar tariq86 avatar th1nkk1d avatar thehedgefrog avatar thomas-boi avatar tupaschoal avatar weh avatar yeyeto2788 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

devicon's Issues

Awesome work. Missing a lot yet. Congrats and thanks

It would be great to see:

Microsoft SQL Server
MariaDB
Redis
CouchDB
Visual Studio
JetBrains
WebStorm
PhpStorm
IntelliJ
AppCode
ReSharper
NetBeans
Eclipse
Atom
Sublime Text
Trello
StackOverflow
Chrome
iOS
OS X
Windows Phone
Windows 8
Windows 7
ExpressJS
SocketIO
C#
Objective-C
Xamarin
Ionic Framework
Steroids Framework
Amazon Web Services
Windows Azure
Google Developers
Google Cloud
Android

And you tell me if you need to suggest you more.

Once again. Thanks so much.

SVG alt message and new icons

Hi, thanks for your repo!

I'm using your svg icons but I'm not able to use the <title></title> and for making svg accessible,below an example:

<svg viewBox="0 0 128 128" id="apache" aria-labelledby="title" aria-describedby="desc" role="img">
                    <title>Apache</title>
                    <desc>Apache</desc>
                    <path d="M24 41.3v-.1zM125.8 59l-.2-.1v-.4l-.1-.4-.2-.3-.4-.2-.1-.1-.3-.3-.3-.2-.4-.1h-.1l-.4-.3-.5-.3-.6-.3-.6-.2h-.1l-.5-.5-.6-.4-.6-.3-.6-.2h-.1l-.6-.4-.8-.3-.4-.1-.5-.3-.5-.2h-.1l-.5-.1-.5-.1h-.5l-.7.1-.3-.5-.7-.5-.9-.2h-.9l-1 .2-.3.1-.7-.3-.8-.2-.8-.1h-.8l-.8.1h-.1l-.9-.3-.9-.3-.9-.1h-.6l-.8-.8-.9-.6-.8-.4-.8-.2h-.8l-.5.1-.5-.4-.7-.3-.8-.1-.5.1-.7-.3-.8-.1-.7-.1h-.3l-1-.4-1.2-.4h-1.3l-1.1-.6-1.2-.3h-.8l-1.8-.4-1.1-.1h-.5l-.6-.6-.8-.5-.9-.2-.9.1-.6.2-.8-.1h-1.4v-.1l-1.7-.3-1.5-.2-1.3-.1h-.5l-1-.1-1-.1h-.1l-1-.6-1.1-.3-1-.1h-.8l-1-.5-.9-.2-.9-.1h-.2l-1.1-.7-.9-.3-.7-.1-.8-.4-1.1-.3h-1l-1.1-.5-1-.2h-.5l-1.1-.6-1-.3-1-.1h-.2l-1.5-.7-1-.4-1.1-.1h-.1l-.7-.5-.6-.3-.6-.2-.7-.1-.6.1-.7-.5-.7-.3-.9-.1h-.8l-.9.2-.1.1-1-.4-1-.3h-.9l-.8-.5-.9-.3-.8-.1-.7.1-.7.2-.6-.6-.6-.4-.8-.1-.7.2-.6.3-.4-.3-.3-.2-.3-.1-.4-.1h-.5l-.3.1-.5.3-.1.1-.9-.2h-.8l-.7.2-.5.6-.4.5-.3.8-.3.7-.2.8-.1.8-.1 1.6.3 1.3.3.7-.1-2 .1-1.5.1-.8.2-.7.2-.7.3-.6.4-.5.5-.4.6-.2h.7l.5.1-.3.4-.3.4-.5 1-.6 1.7-.7 2.3-.4 1.8-.6-.2v.1c-1-.2-1.1-.3-1.6-.5l-.1-.6v-.6l.1-2.5v-.6l-.1-1.2-.1-.5-.2-.5-.2-.5-.2-.5-.2-.4-.3-.4-.9-.6v-.1l.1-.7.1-.3.2-.6-.5-.3-.5.6-.3.7-.3.7-.1.7-.1.7v.7l.1.7.1.2-.1-.2-.3-.4-.4-.9-.2-.5-.1-.6-.1-1.2-.9.8-.3.6-.2.7v.6l.1.6.2.6.3.6h-.1l-.6-.1-.1.4.4.2 1.4 1 .3.3 2.2 2.5.1.1c-5.5-2.1-11.5-4.8-18.8-8.2 1.5 2.5 7 5.1 9.3 6.8 2.3 1.2 5.5 2.6 8.3 3.7l-2.3.5-1.4.3-1.4.5-.7.3-.6.2-.6.4-.5.4-.5.5-.4.5-.3.6-.2.7.4.2.2-.2.7-.7.9-.6.9-.5.4-.1.3-.1 1.4-.3.6-.2 2.5-1.5.5-.3.4-.2.3-.1-.1-.2c.2.1.4.1.5.2l-.1.1-2.4 1.2-1.3.8-1.2.9-.6.5-.5.6-.3.6-.2.6-.1.7.1.7.4 1.1.6-1.2.4-.6.4-.5.4-.4.4-.3 1-.6v.1l-.1.8v.9l.1 1 .3 1.1h.4l.1-.5.4-1.5.2-.5.6-1.4 1-1.8 1.2-1.9c.3.1.7.2 1 .4l-.9 1.7-.3.6-.4.6-.2.7-.2.7-.1.7v.7l.1.6.3.6.5.6.8.5.7.2.2.5.4.5.4.4.4.3.4.2.4.2.9.1h.2l.4.6.6.5.7.3h.8l.7-.2.1.2.6.6.6.4.6.3.8.1h.6l.6.4.7.3.8.2.6.5.8.4 1 .2 1.1.1.1.1.7.6.8.4.7.3.9.1.8-.2.4.2.6.3.6.1h.6l.6-.1.3.2 1 .3 1.1.1 1.3-.1.3.2.9.3 1 .1 1.4-.1.9.3 1 .1 1.1-.1.4.3 1 .4 1.1.1 1.1-.1v-.1l.6.1h1l1.1-.2.6.2.8.2.8.1h1l.2.1 1 .3 1 .2 1.1.1 1.1-.1v-.1l.6.2.9.1.9.1v-.1l.6.2 1.2.1 1.3-.1 1.4.1.2.1.9.2.8.1h.9l.1.1.8.3.8.1h.1l-.7-.3-.8-.4-.8-.5-.8-.7-.8-.7-.1-.1-2.8-3.7-1.8-1.9-.9-.9-.4-.3h.4l2.1.4 1.4 1.2 2 2 1.7 1.8.7.7.8.7.8.6.8.6.4.2.4.2.6.3.1.1-.3.2-.8.5.8-.1.7-.4.9.3 1.1.2h1.2l.3.1 1.1.2 1.1-.1 1.1-.4 1 .1h1.2l.9-.1.6.1h.7l1.5-.2.5.2.6.1.6-.1.5-.3h.1l.8.3.8.1h.8l.9-.2.8-.4.9-.6h.7l.9-.1.8-.1.5.2.8.1.8.1.8-.1.8-.2.4.3.9.1.8-.1h.1l-.8-.1-.9-.3-.9-.5-.9-.5-.9-.6-4.7-3.6 2.7.2.7.4.4.2 3.4 2.4.5.3 1.2.8.9.6.4.3.2.1-.2.2-.5.1.7.1.5-.3.3.2.5.2.5.1h.5l.5-.1.4-.1.7.1.8-.1.7-.3h.7l.6-.1.6-.3.5-.4h.6l.6-.1.5-.3.6-.4h-.1l-.3-.1-.1-.1-.4-.1-1-.3-.3-.1-.7-.4-.3-.2-.1-.1-.2-.1-.6-.6-.1-.1 1.2.1.3.3.4.3.6.4.5-.1.2.2.9.5.4.2.1.1-.1.1.4.1h.3l.1-.1.3-.1.3-.2.2-.4.1-.4h.2l.4-.3.1-.3h.1v-1l-.2-.4zm-108.6-15.2l-1.2.7-.5.2-.7.1-1.4.4-1 .5-.9.6-.1.1.4-.7.4-.5.5-.4.5-.4.6-.3.6-.3 1.3-.4 2.6-.6-1.1 1zm-1.2 3.4l-.4.4-.4.4-.4.5-.4.6-.1.3-.1-.1-.1-.6.1-.5.2-.5.3-.5.4-.5.5-.5 1.2-.9 1.3-.8 2-1.1-.1.3-.8.5-.4.3-.4.4-.4.4-.3.5-.2.5-1.5.9zm3.5-2.7l-.5.7-.7.6.1-.2.3-.4.4-.4.4-.3zm.7-.2l-1.1 1.9-.9 1.9-.5 1.5v.1l-.2-1v-.8l.1-.7.2-.6.6-.4.9-.7.9-1.2.2-.4.1-.1-.3.5zm.3-11.2l.1.6.1.6.1.6-.1-.3-.3-1-.1-.7v-.8l.2 1zm-2.9 2.8l-.2-.4-.3-.6-.2-.6-.1-.5v-.6l.1-.5.3-.5.1-.1v.3l.1.7.2.6.5 1 .3.4.7.9v.1l.2.7.1.2-.4-.5-.4-.3-.5-.2-.5-.1zm2.5 2.9l-.9-1-.6-.6-.5-.7.2.1.4.2.7.5.3.3.5.7.1.3.2.6-.4-.4zm.5-1.5l-.2-.5-.6-.8-.2-.1-.3-1.1-.3-.8v-.7l.2-.6.2-.6.3-.6.1-.2v1l.1 1.1.1.4.3 1 .2.6.1.2.1.3.1.6.1 1.1v.5l-.1-.2-.2-.6zm.2 5.9l.1-.3h.1l-.2.3zm.7-2.6l-.1-.3h.1v-1.3l.3 1.7c-.2 0-.3-.1-.3-.1zm.4-1.2l-.3-2.1-.1-.5-.2-1.5-.1-.6-.2-1.1-.1-.5.4.5.2.4.2.5.1.5.1.5.1 1.7-.1 2.2zm99.1 16.8l.4.1.6.2.5.2.2.1h-.9999999999999999l-.7.2h-.1l-.5.2h-.1l-.3.1-.5.2-.5.5-.3.3-.2.3-.8-.1h-.4l-.8-.1h-.3l-.4-.1.1-.2.3-.4.4-.4.4-.3.5-.3.5-.2.2-.1.7-.2.4-.1h.9l.8.1zm-2.5-1.4h.6l.5.1.5.3.5.4.1.1h-1l-.6.1-.6.1-.3.1h-.2l-.4.1-.8.4-.3.2-.2.1-.1.1-.3.4-.1.1-.3.5-.2.3-2.2-.3-.5-.1h-.1l.6-.4.1-.1 1.7-1.1.7-.5 1.2-.6.6-.2.6-.1h.5zm-2.8-.7l.7-.1h.5l.7.1.7.2h-.2l-.5.1-.5.1-.5.2-1 .5-.9.6-.7.5-.5.3-1.1.8-.4.3-.3.2-2.5-.3.1-.1 1.8-1.3.6-.4 1.3-.8.7-.3.7-.3.7-.2.6-.1zm-9.7-2l.8-.1h.8l.8.1.7.2.1.1-.8.3-2.1 1-2.2 1.2-1.8 1.1-.7.5-.1.1-3-.3.2-.2.5-.5 1.3-1 1.5-1 1.5-.8.8-.3.8-.2.9-.2zm-3.4-.7h.4l.8.1.9.2.2.1-.8.3-.7.3-.7.3-.7.4-.6.4-1.1.8-1.3 1.1-.1.1-.3.3-.6.3v-.1l-3.7-.3h.1l.8-1 .6-.6.6-.6.6-.5.7-.4.7-.4.7-.3.5-.2.9-.2.9-.1h1.2zm-4.8-2l.5-.1h.7l.8.2.8.4.8.6.4.4h-.5l-.8.1-.8.2-.2.1h-.1l-.5.2-.6.2-.6.3-.5.3-.6.4-.6.5-.6.5-.6.6-.6.7-.1.2-.4.5-1.9-.3-.9-.1 1.7-2.1 1.2-1.3.7-.6.5-.4 1-.7.6-.3.6-.3.6-.2zm-2.4-.6l.6-.1h.6l.5.2.2.2-.6.2-.7.4-.8.5-.7.6-.7.7-.1.1-.2.2-.5.6-.7.6-.5.6-1.6 1.8-2.4-.3.2-.1 1-.9 1.9-1.9.4-.4 1.1-1 .5-.4.5-.4.5-.4 1.1-.6.4-.2zm-2.8-.6l.6.1v-.1h.1l.6.1.7.2.2.1-.2.1-.7.4-.2.1-.7.4-.4.4-.3.2-.4.3-.5.4-.4.5-.3.3-.6.6-1.3 1.4-1.1 1.1-.5.2-2.2-.3-.9-.1 1.5-1.9.8-.9.8-.8.8-.7.5-.4.6-.4.7-.4h.1l.6-.3.1-.1.2-.1.6-.2.7-.1.5-.1zm-2.9-.8l1.1.1 1.1.3-.7.2-.4.2h-.1l-.1.1h-.1l-.1.1-.4.2-.2.1-.4.2-.7.5-.2.1-.1.1-.7.6-1.3 1.2-1.7 1.8-1 1.3-3.8-.4-.3-.1h-.3l.4-.3.7-.6 1.3-1.1.7-.7.4-.4 1.6-1.4.8-.6.8-.5.2-.1.7-.3.8-.3.9-.3.5-.1.6.1zm-3.6-.9h1l1.1.2.5.3h-.1l-1 .2-1 .4-.9.5h-.1l-.5.3-.6.4-.6.4-.5.5-1.2 1.1-1.4 1.3-1.6 1.3-.8.6h-.9l-.6-.1-.6-.1-1-.2.3-.1.6-.4.6-.5 1-.9 3-2.6 1-.8 1.1-.7 1.1-.6 1.1-.4 1-.1zm-9.4-1.7h1.8000000000000003l-.5.2-.9.6-1 .7-.7.6-.2.1-.7.6-3.4 2.9-1.2 1-1.1.8-.5.3h-.1l-1.6-.4-.4-.1h-.1l.4-.8.6-1 .7-.9.7-.8.8-.8.9-.7.9-.6.6-.4 1.4-.7.8-.3.2-.1.7-.2.9-.2 1 .2zm-5.1-.6l1-.1 1.2.1 1.3.2.5.1-.9.3-.7.1-.2.1-1 .4-1 .5-.3.1-.1.1-.7.4-.8.5-.7.5-.6.5-.6.6-.6.7-.6.7-.5.7-.5.8-.4.7h-.4l-.6-.2h-.4l-.4-.1h-.2l.4-.8.4-.7.8-1.4.3-.5.6-.8.6-.8.7-.7.7-.6.8-.5.6-.3.8-.3.9-.3h.6zm-1.8-.3h.8l-.3.1-1 .4-.2.1-.7.3-.6.4-.6.4-.6.4-.5.5-.4.5-.8 1.3-.5.9-.5.9-.3.7-.6.9-1.7-.3h-.3l.2-.7.6-1.4.4-.7.4-.6.5-.6.5-.6.6-.5.6-.5.7-.4.7-.4.7-.3.8-.3.8-.2.8-.1.5-.2zm-3.1-.9l1 .1 1 .3.2.1-.7.1-.9.2-.9.3-.8.4-.8.5-.8.5-.7.6-.6.7-.7.8-.5.9-.5.9-.4 1-.2.7-2.5-.4.3-.8.4-1 .5-1 .6-.9.6-.8.6-.7.7-.7.7-.6.6-.4h.1l.8-.4.7-.2.3-.1.9-.1h1zm-3.5-.7l.8.1.8.2.1.1h-.2l-.9.3-.8.3-.2.1-.7.4-.7.5-.6.5-1 1.1-.4.6-.4.6-.6 1.2-.6 1.4-.4.9-1.6-.4-.8-.1.2-.4.3-.7.6-1.3.8-1.3.1-.2.5-.6.6-.7.7-.7.7-.6.7-.5.7-.4.7-.2.8-.2h.8zm-2.7-1v-.1h.4l.8.3.5.3-1 .3-.7.3-.7.4-.6.4-.6.5-.6.6-.5.6-.5.6-.3.5-.2.2-.6.8-1 2.1-.4.9-1.5-.5 1.3-2.6.8-1.4.8-1.2.5-.7.6-.6.6-.6.4-.4.6-.4.6-.2.6-.1h.7zm-3.1-.8h1l.9.2.2.1-.3.1-.8.4-.8.5-.7.6-.7.8-.7.8-.6.9-.2.4-.2.3-1.3 2.2-.8 1.6-2.6-.5.2-.5.3-.6.9-1.6.6-.9.5-.7.4-.6 1.1-1.2.6-.6.6-.5.6-.4.4-.3.5-.2.9-.3zm-2.2-.7l.9.2.5.2-.6.3-.2.1-.4.2-.9.7-.9.8-.8.9-.8.9-.1.2-.1.1-1 1.4-.4.7-.7 1.3-.3.6-.1.4-2.1-.5.4-.9 1-2 .5-.9.9-1.5.5-.7.2-.3.7-.7.7-.6.7-.5.7-.3.8-.2.9.1zm-3.6-1h.9l.9.3.5.2-.5.1-.5.2-.5.2-.5.3-.5.4-.4.6-.5.5-.3.4-.4.5-.6.9-.5.9-1 1.8-.7 1.1-.3 1-2.5-.5.6-1.3.4-.8.9-1.9.5-.9.6-.9.6-.8.7-.7.7-.6.7-.4.1-.1.7-.3.9-.2zm-4.5-1l.8-.1.9.1 1 .3.8.4-.7.4h-.1l-.1.1h-.1l-.6.4-.6.5-.5.5-.9 1.1-.5.5-1.1 1.9-1.4 3-.3.6-.6-.1-1.6-.4h-.1l2.1-5.2.5-.9.3-.5.3-.4.4-.6.5-.5.4-.4.5-.3.7-.4zm-1.9-1.1h.6l.6.2.5.2.1.1-.8.4-.6.4-.1.1-.2.1-.6.7-.6.8-.2.4-.2.2-.3.7-1.1 2.2-1.5 3.5-2.9-.9-.7-.1.6-1.5 1-2 .8-1.4.5-.7.5-.7.6-.6.6-.6.6-.5.7-.4.5-.3.4-.2.7-.2.5.1zm-4.3-.8l.5-.1h.8l.8.1.7.3.3.2-.4.2-.2.1h-.4l-.8.4-.8.6-.8.7-.6.9-.7 1-.7 1.1-.7 1.3-.6 1.5-.3.9-.2.5-2.5-.7.1-1 .2-.8.3-1 .2-.5.5-1 .6-1 .6-.9.7-.8.8-.7.8-.6.7-.4 1.1-.3zm-3.4-.6h.8l.9.2.5.2-.1.1-.4.2-.9.5-.8.6-.7.7-.6.7-.6.8-.4.8-.4.8-.3.8-.1.3-.2.6-.1.4v.1l-.1.6-.1.5-.1.4v.2l-.4-.1-.9-.3-.6-.2.2-.5.3-.9.3-.9.7-1.8.6-1.4.3-.6.4-.6.4-.6.4-.5.4-.4.3-.2.5-.2.8-.3zm-3.6-.6l.7-.2.6-.1.7.1.6.2.3.2-.6.3-.2.1h-.1l-.6.5-.6.6-.5.7-.4.9-.1.4-.4.6-1.5 3.6-.2.7-.2.5-.4-.1-.3-.1-.7-.3-.8-.2.1-.8.2-1 .3-1 .4-.9.4-.9.4-.7.7-1 .8-.9.9-.8h.1l.4-.4zm-3.4-.7l.6-.3.6-.1.6.1.5.3.5.5-.3.1h-.1l-.7.5-.6.6-.6.7-.6.8-.2.3-.1.5-.3.6-.5 1.2-.4 1.3-.3 1.4-.1.5-.7-.2-1.3-.5.1-.5v-.2l.5-1.9.2-.6.4-1.1.5-1 .3-.5.6-.9.4-.4.7-.8.3-.4zm-5.3 7.1l.3-1.4.3-1.2.4-1.3.4-1.1.4-.9.4-.7.4-.5.3-.3.4-.2.3-.1h.5l.3.1.3.1.2.2-.4.3-.6.6-.5.8-.6.9-.5.9-.4.9-.4 1-.3.8-.2.9-.1.6-.1.5h-.3l-.5-.2h-.1l.1-.7zm-2.2 4.4l-.2 1.5-.1 1.2v1.1l.1 1 .2.8.1.2-.4-.1-.7-.4-.4-.5-.3-.5-.3-.5v-.6l.1-.6.2-.7.5-1.3.3-.6.3-.5.5-1 .4.1.2.1-.1.6v.1l-.4.6zm2.4 7.9l-.4-.1-.3-.2-.3-.2-.3-.3-.3-.4-.1-.3-.2-.6-.2-.9-.1-.5v-1l.2-2.1.1-.5.1-.5.1-.3.1-.3.2-.8 1.8.6-.3 1-.2 1.2-.1 1.2v.6l.1 1.2.2 1.3.1.3.3 1 .2.6h-.7zm3.3 1.5h-.6l-.6-.2-.5-.4-.4-.5-.4-.7-.3-.8-.2-.8v-.1l-.1-.9-.1-.9v-1l.1-1.8.1-.8.2-.7.1-.4 1.9.7-.1.4-.2 1.2-.1 1.3v1.2l.1.6.2 1.2.3 1.2.5 1.1.4.7v.1l-.3.3zm3.7 1.4l-.7-.1-.6-.3-.6-.4-.5-.5-.4-.6-.1-.2-.3-.6-.4-.8-.3-.8-.2-.9-.1-.9-.1-.9v-.9l.1-.9.2-.9.2-.6 2.3.7.1 4.2.1.6v.6l.1.8.1.8.2.7.2.7.3.6.3.5.2.2-.1-.1zm1.4.4l-.1-.1h.2l-.9-.5-.2-.2-.4-.5-.2-.5-.2-.5-.2-.7-.2-1.5-.1-1v-1.2l-.1-2.8v-.6l.5.2.3.1 1 .3v1.7l-.2 2.2v.4l.2 1 .2.9.1.6v.30000000000000004l.2.9v.2l.2.6.3.6.2.3-.6-.2zm3.8 1.5l-.9-.2-.8-.3-.5-.4-.2-.2-.4-.5-.4-.7-.3-.7-.3-1.1-.1-.7v-2.2l.1-1.5v-.9l-.2-1.3 1.7.5-.2.9-.1 1.1v1.4000000000000001l.1.8.1.9.3.9.3.9.3.5.1.2.5 1 .6.9.6.8.1.1-.4-.2zm4.1 1.4h-.7l-.7-.2-.7-.4-.6-.6-.2-.2-.8-.8-.7-.9-.6-1-.1-.5-.3-.8-.3-1.1-.2-1.1-.3-1v-1.1l.1-1.1.1-.7 2.2.7v1.4l.1 1.4.3 1.6.2.8.3.8.2.2.1.3.4 1 .1.2.2.3.2.4.3.4.2.4.6.7.6.6.3.2-.3.1zm3.1.5h-.5l-.6-.1-.6-.2-.6-.4-.5-.5-.5-.5-.6-.7-.2-.3-.2-.4-.3-.5-.2-.4-.5-1.2-.2-.5-.1-.5-.2-1.1-.2-1.3-.1-1.4v-1.2l.6.2.6.2.6.2.6.2 1.1.3h.2l.2 2.6.1.5v.1l.2 1.9.1 1 .2.9.3.9.4.8.5.7.4.3.1.1-.1.3zm3 .6l-1-.1-.9-.3-.7-.4-.2-.3-.3-.4-.4-.5-.3-.5-.2-.6-.2-.7-.2-.7-.1-.7-.2-1.5-.1-.7v-1.2l-.1-1.7v-.4l.4.1.3.1 1.6.4.2 2.1.1.7.1.7.1.7.3 1.3.2.6.2.6.1.2.4.9.5.8.6.7.5.5-.7.3zm3.6.6l-.9-.1-.8-.3-.5-.3-.4-.4-.5-.5-.4-.6-.4-.6-.5-1-.3-.8v-.1l-.2-.9-.2-.9-.3-1.9-.2-2 .8.2.3.1.3.1h.3l.4.1h.2l.1.9.2 1.1v.1l.1.3.3 1.4.2.8.3.8.1.3v.1l.1.3v.1l.2.5.3.7.3.6.7.9.4.4.4.3.2.2-.6.1zm3.3.4l-.9-.1-.8-.3-.8-.4-.6-.6-.6-.7-.5-.8-.4-.8-.1-.3-.4-.7-.3-.8-.3-.9-.4-1.5-.1-.4-.2-1.2-.1-.6 2.2.6v.4l.2 1.2.4 1.4.6 1.5.3.8.2.4.2.4.6 1 .6 1 .5.6.2.3.1.1.1.1.5.4-.2-.1zm3.5.7l-.9-.1-.9-.3-.8-.5-.6-.6-.3-.4-.8-1.2-.8-1.3-.2-.4-.4-.6-.4-1-.3-1-.3-.9-.4-1.8v-.1l1.7.4 1 .2.6 2.3.5 1.6.2.7.4.9.4.9.2.4.1.2.4.7.4.6.5.6.5.5.3.2h-.1zm2.7-.4h-1.6l-.7-.3-.6-.5-.6-.6-.5-.8-.2-.4-.3-.6-.3-.8-.6-1.6-.5-1.8-.6-1.6 1.7.3.1.5.1.7.3 1.3.2.7.2.7.3.6.3.5.3.6v.2l.4.6.1.2.4.6.6.6.6.6.2.1.7.2zm2.6.6l-.8-.2-.7-.3-.7-.4-.4-.3-.1-.1-.5-.4-.5-.5-.4-.5-.4-.3-.1-.1-.5-.7-.3-.6-.1-.3-.5-.9-.3-.9-.3-1-.3-1-.1-.7 1.5.3.4.1.3.1.2.1.2.8v.2l.2 1 .3 1 .1.2.1.3.5 1.2.7 1.2.4.6.5.6.6.5.4.4.8.6.3.2.2.1-.7-.3zm5.1.7l-1-.1-1-.2-.9-.3-.9-.4-.5-.3-.8-.6-.7-.5-.3-.3-.5-.5-.6-.8-.5-.8-.4-.9-.3-.8-.6-2-.1-.4-.1-.4 2.3.4.1.6v.4l.1.3.1.2.1.1h-.1v.4l.4.7.5.9.5.8.6.8.6.7.7.7.7.6.8.5.8.5.3.2h.1l.6.3v.2zm1.8 0l-.9-.2-.9-.3-.5-.2-.7-.4-.7-.4-.6-.5-.6-.5-.6-.5-1-1.2-.4-.6-.4-.7-.1-.9-.3-.7-.1-.5-.1-.5v-.2l-.1-.6 1.9.3.7 1.7.4.9.5.8.4.8.3.6.8 1.1 1 1 .3.2.3.3.8.6.9.5.3.1h-.6zm4.9.5l-1.3-.1-1.1-.2-1-.3-.6-.2-.8-.4-.7-.4-.6-.5-.2-.2-.4-.4-.7-.7-.6-.8-.5-.8-.3-.5-1.7-3.5 1.5.2.9.1.4.9.3.6.9 1.5 1 1.3.5.6.6.6.6.5 1.3 1 .7.5.7.4.5.2.5.3.3.1.2.1-.4.1zm-4.2-7.5l1.1 1 1.1 1.2 1.7 1.9 2.1 2.1.1.1.1.1.2.2 1.3 1.1.1.1-1-.1-.8-.2-.9-.3-.6-.2-.8-.4-.3-.2-.9-.5-.9-.6-.8-.7-.8-.7-.8-.8-.7-.8-.6-.9-.6-.9-.5-.9-.1-.1-.2-.6 1.8.2.6.1 1.1.8zm-.8-3.4l-1.4-.1.1-.1.4-.3 1-.8 1-.8 2.8-2.4 1.3-1.1 1.5-1.1.7-.5.8-.4.7-.4.7-.2.8-.1.7.2.7.1h.3l-1 .5v.2l-.1.1-.8.3-.8.3-.7.5-.7.4-1.3 1-3.3 3-1.5 1.2-.7.5h-1.2zm2.5.2l-.4.1h-.5l1.3-.9 1.6-1.4 1.6-1.5 1.6-1.3.8-.6.9-.5.9-.4.9-.3.7-.1 1.3-.1 1.1.1.4.1-.4.1-1 .5-1 .5-.9.6-.9.6-.8.7-1.5 1.3-1.6 1.4-.1.1-.7.6-.7.5-.5.2-.2-.2-.4-.2h-.3l-1.2.1zm11.8 11.3l-1-.3-.9-.4-.5-.2-.2-.1-.6-.4-.6-.4-1.2-1.1-2.3-2.3-1.4-1.5-.7-.8-.8-.7-.2-.2 1.8.2h.1l.3.1.3.1h.1l.5.3.6.6.7.7 2.4 2.7.9.9 1 .9 1 .9 1 .7.8.4-1.1-.1zm4.6.3l-1 .1-1-.2-.6-.3-.7-.3-.9-.6-.9-.6-.8-.7-.8-.7-.7-.7-1.3-1.4-.6-.7-1.1-1.2-.5-.5-.5-.4-.2-.1 1.7.2h.8l.7.6.7.7 2.8 3.1.7.7.1.1 1.1 1 .1.1.2.1.9.6.9.5 1 .4.3.1-.4.1zm2.2-.3l-1-.1-.5-.1-.5-.2-.8-.4-.7-.4-.7-.4-.5-.4-1.3-1.1-.3-.3-1-1.1-1.7-2-.6-.6-.9-.8h.5l.6.1 1.3.1.3.1 1 .1h.5l.7 1.1.8 1 .7 1 .7.9 1.3 1.4.7.6.7.5.4.3.1.1.1.1.5.3.4.2h-.8zm3.3 0h-.6l-.3-.1v-.1h-.4l-.5-.1-.6-.2-.6-.3-.2-.2-.6-.4-.6-.5-1.3-1.2-.6-.6-1.6-2-.4-.6-.7-1.2 2.3.1h1l.4.5 1.7 2 .4.6.4.5.4.5 1.7 1.9 1.5 1.3-.8.1zm3.3 0l-.5.1-.5-.1-.6-.2-.6-.4-.6-.5-.6-.6-.6-.7-1.3-1.4-1.8-2.2-.5-.6-.5-.6 2.3.2 2.3 3 .2.3.1.1.1.2.1.1.9 1.1 1.4 1.3.7.5.2.1-.2.3zm4.6-.4l-.8.4-.8.2h-.7l-.7-.1-.7-.2-.4-.2-.8-.6-1.4-1.3-1.1-1.2-.2-.3-.2-.3-2-3.1 1.2-.3h.2l.7.4.5.9 1.1 1.5.6.6.4.4.3.3.3.3.2.2.2.2.5.4.2.1.3.2.9.5.2.1 1.1.4.5.2.5.1h.2l-.3.2zm1.9-.6l-.8-.1-.8-.1-.7-.2-.7-.2-.7-.3-1.1-.7-.8-.6-.4-.3-.5-.2-.5-.5-.5-.6-1.1-1.4-.2-.4 3.1.3.9 1.1 1.2 1.2.6.6.7.5 1.4 1 .8.5.7.4.2.1-.8-.1zm-1.6-4.2l.6.5.7.6 1.8 1.3 1 .7.9.6.5.3.6.4-.8.1-.7-.1-.7-.1-.2-.1-.9-.4-.7-.3-1.3-.8-.6-.4-1.7-1.4-.5-.5-1.4-1.5h1.1l1.3.1h.1l.4.4.1.1.4.5zm2.5-2.1l-.9-.1-1.6-.1-.7-.1 2.1-1.4 1.9-1.1 1.1-.5 1-.5 1.1-.4.9-.3.4-.1.6-.1h.8l.7.1.5.3.2.3-.3.1-.5.2-.7.3-.5.3-.9.4-2.7 1.5-1.2.6-1.3.6zm2.5-.7l1.1-.6.9-.5 2.2-1.1.5-.2.5-.2 1-.3.5-.1h.8l-.2.1-.9.4-.8.4-.8.4-1.5.9-1.8 1.2-.8.7-1.4-.2-.6-.1 1.3-.8zm7.1 7.4l-.4-.1-.5-.1-.5-.2-.5-.3-.2-.1-2.7-1.8-1.7-1.1-.3-.2-.7-.4-.7-.5-.4-.6.1-.4h.5l1.4.5.3.4 1.6 1.6 1.3 1.1 1.5 1.1.8.5.8.4.4.1h.1l.3.1h-.5zm2.1-.3h-.8l-.6-.2-.4-.1-.5-.2-.6-.3-1.3-.8-1.8-1.3-1.4-1.2-.3-.3-.1-.1 1.1.1 1.7.1 2.1 1.9 1.6 1.3.8.5.9.4.2.1-.6.1zm2.7-.5l-.5.1h-.5l-.5-.1-.5-.2-.5-.2-.6-.3-.7-.3-1.1-.9-2.1-1.9 1.1.1 1.2.1.1.2.3.5.1.2.4.4.4.4.5.4.5.3.2.1.1.1.2.1.1.1.2.1.4.2.4.1.9.2h.3l-.4.2zm-.5-2.4l.2.2.1.1.5.4.3.2.9.4.2.1.9.2h-.2l-.5-.1h-.6l-.3.2-.5.1h-.4l-1.2-.3-.4-.2-.2-.1-.3-.1-.5-.3h-.1l-.9-.8-.2-.3-.1-.2-.2-.3-.1-.1.7.1 1.9.1.2.3.3.4h.5zm1.5-1.9l-.3.1-.1.1h-.1l-1.3-.2.1-.1.4-.4.3-.2.4-.2.2-.1.5-.2.8-.2 1-.1h.4l.5.1.3.1.3.1h-.7l-.5.1h-.1l-.3.1-.7.2-.4.2-.7.6zm.5.2l1.7-.6.4-.1.5-.1h.8999999999999999l.2.1.1.2.1.3v.2h-.5l-.4.1-1.5.4-.1.1-1.5-.3.1-.3zm3.6 2.4l-.1.2-.1.1h-.2l-.6-.2-.7-.3-1-.6-1-.7 1.4.2 1.6.8.2.1.2.1.2.1.1.1h.1l-.1.1zm.6-.7l-.1.1h-.3l-.7-.2-.6-.3 1.2.1h.1l.5.1-.1.2zm.1-.7l-.5-.1-1.4-.3 1-.2h.5l.3.1.2.3-.1.2zM14.8 71l-7.4 20h5.2l1.4-4h7.5l1.4 4h5.4l-7.4-20h-6.1zm.5 12l2.5-7.2 2.5 7.2h-5zM40.8 75.2c-1 0-1.8.2-2.6.6-.8.4-1.2.9-2.2 1.4v-1.2h-5v20h5v-5.9c0 .3 1.1.6 1.7.8.6.2 1.3.3 2.1.3.9 0 1.8-.2 2.6-.5s1.5-.9 2.2-1.6c.6-.7 1.1-1.5 1.5-2.5.4-1 .6-2.2.6-3.4 0-2.4-.5-4.3-1.6-5.7s-2.4-2.3-4.3-2.3zm0 11.4c-.6.8-1.6 1.1-2.9 1.1-.4 0-.6 0-1-.1-.4 0-.9-.1-.9-.2v-7.6c0-.3.8-.5 1.3-.6s.9-.2 1.4-.2c1.1 0 1.9.3 2.4 1s.7 1.7.7 3.2c-.1 1.5-.4 2.6-1 3.4zM62.3 76.5c-1.2-.9-3.2-1.3-5.9-1.3-1.2 0-2.5.1-3.7.3-1.2.2-1.7.4-2.7.5v4h.9c.4 0 1.1-.5 2-.8s1.8-.5 2.6-.5c1.3 0 2.1.1 2.8.4s.7.9.7 1.7v.1c-1 .1-2.6.2-3.9.4s-2.3.5-3.2.9c-.9.4-1.6 1-2 1.7-.5.7-.7 1.6-.7 2.7 0 1.4.5 2.5 1.5 3.4 1 .9 2.2 1.3 3.6 1.3.6 0 1.2-.1 1.7-.2s1-.3 1.5-.5c.3-.2.5-.4.9-.7s.7-.5.7-.7v1.8h5v-10.5c-.1-1.8-.6-3.1-1.8-4zm-3.3 10.4c0 .3-.6.6-1.1.8-.5.2-.9.3-1.4.3-.6 0-1 0-1.3-.1-.3-.1-.5-.2-.7-.4-.2-.2-.3-.4-.4-.6-.1-.2-.1-.5-.1-.8 0-.5.1-.9.4-1.2.3-.3.6-.5 1.1-.7.4-.1.7-.2 1.5-.3l1.9-.2v3.2zM76.5 75.2c-1.2 0-2.3.1-3.3.4-1.1.3-2 .8-2.8 1.4-.8.7-1.5 1.5-2 2.6s-.7 2.3-.7 3.7c0 1.3.2 2.5.7 3.5s1.1 1.8 1.9 2.5c.8.7 1.8 1.1 2.9 1.5 1.1.3 2.3.5 3.6.5 1 0 2-.1 2.8-.3.8-.2 1.5-.5 2.5-.9v-4.1h-.8c-.2 0-.4.4-.6.6-.2.2-.5.4-.8.6-.3.2-.7.3-1.2.5-.5.1-1 .2-1.7.2-1.3 0-2.3-.4-3-1.1s-1.1-1.9-1.1-3.3.3-2.5 1-3.4c.7-.8 1.7-1.2 3-1.2.6 0 1.1.1 1.5.2.4.1.8.3 1.2.5.4.2.7.6 1 .8.3.2.5-.2.7.8h.7v-4.5c-1-.4-1.6-.7-2.5-.9-.9-.4-1.9-.6-3-.6zM95.1 75.2c-1 0-1.8.2-2.6.5-.8.4-1.5.9-2.5 1.6v-7.3h-5v21h5v-10.9c1-.3 1-.5 1.5-.7.5-.1.9-.2 1.3-.2.6 0 1.1.1 1.5.2.3.2.6.4.8.7.2.3 0 .7.1 1.3.1.6-.1 1.2-.1 1.8v7.8h5v-10c0-1.9-.3-3.3-1.2-4.3-1-1-2.1-1.5-3.8-1.5zM112.4 75.2c-2.7 0-4.8.7-6.3 2.2-1.5 1.5-2.3 3.5-2.3 6s.8 4.5 2.4 5.9c1.6 1.4 4 2.1 7 2.1 1.2 0 2.5-.1 3.5-.3s1.4-.5 3.4-1v-4h-1c-.6 1-1.3.9-2.3 1.2-1 .4-2 .6-3 .6-1.6 0-2.9-.4-3.7-1-.8-.6-1.3-1.8-1.4-2.8h11.3v-1.5c0-2.3-.7-4.1-2-5.4-1.2-1.4-3.2-2-5.6-2zm-3.8 5.8c.1-1 .4-1.7 1-2.2.6-.5 1.4-.7 2.3-.7 1 0 1.8.1 2.2.7.5.5.7 1.2.8 2.2h-6.3z"></path>
                </svg>

Besides, I would ask you to add the following icons:

prestashop, magento, linkedin, instagram, paypal, basecamp,redbooth and trello.

Thanks a lot for your support.

how to change the size of the icon?

somehow i couldn't change the size of the icon, i'd like to make it bigger, i tried your example with the 2em , but it didn't work. can you give an example of how to manually change its size through css? thank you!

Amend guidelines to avoid mis-matched icon layouts

I want to use the icons in this repo programatically, but I'm getting awkward results, visually I mean. See screenshot. The "plain-wordmark" icons aren't all the same structure in that some have the icon to the left of the word, and some have it above. I think an update to the guidelines to specify that the wordmark should be one or the other (whatever is most prevalent currently within the repo). I can submit a PR with my ideas if that makes sense.

http://imgur.com/6nGq5pK

Thank you all for the work, it's a great resource.

Having trouble loading from CDN

Just started having this problem today. Following documentation I linked

in my html header, but it's been timing out every single time I try to load. Even directly visiting the cdn site results in a connection error.

Some svg icons don't have colors

Some icons have attribute fill (angular's icon for example), but some of them don't. For example, webpack's icon has attribute class cls-1 instead of fill. Is it intended?

Add to npm registry?

Could you make this awesome project available on the npm registry so I can add into dependencies of my package.json?

I saw there is already a package.json in the project root directory, however it's not available on the npm registry.

Error importing with Webpack

Trying to import the CSS files using Webpack throws some errors.

require("devicon/devicon.css");
require("devicon/devicon-colors.css");

Results in:

Uncaught Error: Cannot find module "./fonts/devicon.eot?-hdf3wh"

Similar errors also appear for the .ttf and .svg files in the folder devicon/fonts.

Add sass version

At present it is impossible to import a css file and then use minified.
sass/sass#556

This makes difficult the use of the project with SASS.

Feature request: color mapping for languages

In our app we need to render a background color with specified language, however devicon only gives color mappings for color css property, is it possible to provide a color mapping for all languages in JSON or js format? Here is a list I collected from current devicon-color.css:

export const LANGUAGE_COLORS = {
    amazonwebservices: '#f7a80d',
    android: '#a4c439',
    angularjs: '#c4473a',
    apache: '#303284',
    appcelerator: '#ac162c',
    apple: '#000000',
    atom: '#67595d',
    backbonejs: '#002a41',
    bootstrap: '#59407f',
    bower: '#ef5734',
    c: '#03599c',
    chrome: '#ce4e4e',
    codeigniter: '#ee4323',
    coffeescript: '#28334c',
    cplusplus: '#9c033a',
    csharp: '#68217a',
    css3: '#3d8fc6',
    debian: '#a80030',
    django: '#003a2b',
    docker: '#019bc6',
    doctrine: '#f56d39',
    dotnet: '#1384c8',
    drupal: '#0073BA',
    erlang: '#a90533',
    firefox: '#DD732A',
    foundation: '#008cba',
    gimp: '#716955',
    git: '#f34f29',
    go: '#000000',
    grunt: '#fcaa1a',
    gulp: '#eb4a4b',
    heroku: '#6762a6',
    html5: '#e54d26',
    ie10: '#1EBBEE',
    illustrator: '#faa625',
    inkscape: '#000000',
    java: '#EA2D2E',
    javascript: '#f0db4f',
    jetbrains: '#F68B1F',
    jquery: '#0769ad',
    krakenjs: '#0081C2',
    laravel: '#fd4f31',
    less: '#2a4d80',
    linux: '#000000',
    meteor: '#df5052',
    mongodb: '#4FAA41',
    moodle: '#F7931E',
    mysql: '#00618a',
    nginx: '#090',
    nodejs: '#83cd29',
    nodewebkit: '#3d3b47',
    oracle: '#ea1b22',
    photoshop: '#80b5e2',
    php: '#6181b6',
    postgresql: '#336791',
    python: '#ffd845',
    rails: '#a62c46',
    ruby: '#d91404',
    safari: '#1b88ca',
    react: '#61dafb',
    redhat: '#e93442',
    redis: '#d82c20',
    sass: '#cc6699',
    symfony: '#1a171b',
    travis: '#bb2031',
    trello: '#23719f',
    ubuntu: '#dd4814',
    vim: '#179a33',
    windows8: '#00adef',
    wordpress: '#494949',
    yii: '#0073bb',
    zend: '#68b604'
};

Ruby and a Rails icon please!

Much as I was happy to see a Python icon in the list, since I'm a Rails and Ruby person, I'd be a slightly happier panda not to see my fave language and web framework represented here.

iOS icons?

Since we have one icon for Android, it'd also be nice to have one for iOS.

Icons removed

I looked back to a version of devicons I downloaded before, and so many icons have been removed. Why?

devicon.fr is missing typescript from the available icons

I spent 30-45 minutes trying to find an svg for TypeScript since devicon.fr didn't show it as available. I couldn't find one, so I settled on a png and was shoehorning it into the icons directory when I noticed a TS folder and svgs for it. Could you add them to the site if possible?

Typescript Icon not appearing

I used the tag link to insert a typescript icon into my webpage, but it doesn't appear on the screen. I have successfully loaded about 12 other icons in the exact same format as this one, so I'm confident it is not my error. I'm going through the files a little bit to see if I can find some inconsistencies, but I'm still unfamiliar with how the whole repo works.

Is this project still alive?

There's quite a lot of icon requests coming in regularly, and not much activity in the repo in the past months. Even the PRs haven't had much activity in a while.

Icon Requests [outdated]

Please comment this issue in order to request an icon and I will update this list.

Android
Amazon Web Services
API
AppCode
Atom
Autodesk
Bash
BEM
BizTalk
Blender3d
CakePHP
CentOS
Chrome
Clojure
ClojureScript
CoffeeScript
chef
CMake
Common Lisp
Compass
Composer
CouchDB
CUDA
C#
D
Eclipse
ElectronJS
Elm
Elixir
Ember
ExpressJS
F#
Firebase
Flask
FreeBSD
Gimp
Gentoo
Google Developers
Google Cloud
Groovy
Hack
Handlebars
Haskell
inDesign
Inkscape
IntelliJ
iOS
Ionic Framework
JBoss
Jenkins
Jekyll
Jest
JetBrains
Knockout
Kubernetes
Kotlin
Lua
Magento
MariaDB
Markdown
Matlab
MaterializeCSS
Maven
Maxthon
Mercurial
Microsoft SQL Server
MyBB
NetBeans
Netscape
NPM
Objective-C
OpenCL
OpenLiteSpeed
OpenBSD
Opera Mini
OS X
Pascal
Perl
Phalcon Framework
Phoenix Framework
PhpStorm
Polymer
PostCSS
Prestashop
Pug
puppet
PureScript
QUnit
Qt
React
ReactiveX
Redis
Redux
ReSharper
R language
Rust
Scala
Scheme
Scribus
Semantic-UI
SilverStripe
Sketch
SMACSS
Sphinx
Spring
StackOverflow
Steroids Framework
Stylus
Sublime Text
SocketIO
SQLServer
Threejs
Trello
TYPO3
Unity3d
Vaadin
Vagrant
VB.NET
VirtualBox
Vim
VimL
Visual Studio
WebStorm
Windows Azure
Windows Phone
Windows 8
Windows 7
Xamarin
Yarn
Yesod

.Net Framework

Hi,
Very thanks for devicon.

Where is .Net Framework, C#, ASP.NET, ASP.NET MVC icons?

Update Atlassian icons

Hi,
Atlassian has introduced new icons of their products which are included in your icon set:

  • Bitbucket
  • Confluence
  • SourceTree
  • Trello

Apache icon

apache logo does work well in svg implement
apache

System: Ubuntu 16.04
Browser: Chrome Version 53.0.2785.143

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.