# Devicon v2 [https://konpa.github.io/devicon/](https://konpa.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 it's 78 icons and 200+ versions. And it's growing! See all available icons on the [new website](https://konpa.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://konpa.github.io/devicon/](https://konpa.github.io/devicon/) _2 ways of using devicon:_ #### SVG icons - Copy/paste svg code (from the [svg folder](https://github.com/konpa/devicon/tree/master/icons) or the [project page](https://konpa.github.io/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.css and font files to your project ```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/konpa/devicon/blob/master/devicon.json) or [devicon website](https://konpa.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/konpa/devicon/blob/master/CONTRIBUTING.md) file Under [MIT Licence](https://github.com/konpa/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, merge the `style.css` with [devicon.css](./devicon.css) and follow the next step to build the final stylesheet. **Note** the merge is required, because some icons are defined as alias, this should be replaced with a more elegant solution to support automated build processing. ### Build and minify stylesheet Run the following commands to build the resulting file `devicon.min.css` ```bash gulp concat-css gulp minify-css ```