# Devicon v2
[https://devicons.github.io/devicon/](https://devicons.github.io/devicon/)
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 80+ icons and 200+ versions. And it's growing!
See all available icons on the [new website](https://devicons.github.io/devicon/).
## Icon requests
When you want to request a icon please feel feel to create a issue. See our [contribution guidelines](https://github.com/konpa/devicon/blob/master/CONTRIBUTING.md) for more information.
## How to use
For a super fast setup go check [https://devicons.github.io/devicon/](https://devicons.github.io/devicon/)
_2 ways of using devicon:_
#### SVG icons
- Copy/paste svg code (from the [svg folder](https://github.com/devicons/devicon/tree/master/icons) or the [project page](https://github.com/devicons/devicon) using your dev tool)
```html
```
- Add css rules in your stylesheet
```css
.devicon-git-plain {
max-width: 2em;
}
/* if you want to change the original color */
.devicon-git-plain path {
fill: #4691f6;
}
```
#### Icons font
- Upload devicon.min.css and font files to your project
- Note: the `devicon.css` file is not the same as the `devicon.min.css`. It doesn't contain any colors or aliases.
```html
```
- Add icon using `` tag
```html
```
##### NPM and Bower packages
You can install devicon as a dependency to your project either with NPM or Bower
```
// NPM
npm install --save devicon
// Bower
bower install --save devicon
```
Final font is build with [Icomoon app](https://icomoon.io/)
##### See the [devicon.json file](https://github.com/devicons/devicon/blob/master/devicon.json) or [devicon website](https://devicons.github.io/devicon/) for complete and up to date reference of icon's available versions.
## Contribute
Please have a look at the [CONTRIBUTING.md](https://github.com/devicons/devicon/blob/master/CONTRIBUTING.md) file
Under [MIT Licence](https://github.com/devicons/devicon/blob/master/LICENSE)
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.
## Go build yourself
### Prerequisites
Install gulp (and gulp plugins)
```bash
npm install
```
### Build the font and export stylesheet
Open [icomoon app](https://icomoon.io/app/#/select) and import [icomoon.json](icomoon.json). Choose _yes_ when beeing asked
if you like to restore the settings stored in the configuration file.
The next step is to click on **Generate font** and download the resulting archive. Extract it
contents and you will find a [fonts](./fonts) directory next to a `style.css`. Replace the content of the `fonts` folder,
rename the `style.css` to [devicon.css](./devicon.css) and follow the next step to build the final stylesheet.
### Build and minify stylesheet
Run the following command to build the resulting file `devicon.min.css`
```bash
npm run build-css
```