Skip to content

Commit d11e324

Browse files
author
konpa
committed
Update readme for v2.0
1 parent 2457b3e commit d11e324

File tree

1 file changed

+41
-78
lines changed

1 file changed

+41
-78
lines changed

README.md

Lines changed: 41 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,57 @@
1-
devicon
2-
=======
1+
# devicon V2
32

4-
devicon aims to gather all logos representing development languages and tools in one font.
3+
devicon aims to gather all logos representing development languages and tools.
54

6-
See all available icons on the github page: http://konpa.github.io/devicon/
5+
## How to use
76

8-
Final font is built with [icomoon](http://icomoon.io).
7+
### SVG icons
98

10-
How to use it
11-
--------------
9+
- Copy/paste svg code from [devicon](http://devicon.fr) (coming soon) or from svg file
10+
11+
```html
12+
<!-- for git plain version -->
13+
<svg class="devicon" viewBox="0 0 128 128">
14+
<path fill="#F34F29" d="M124.742,58.378L69.625,3.264c-3.172-3.174-8.32-3.174-11.497,0L46.685,14.71l14.518,14.518c3.375-1.139,7.243-0.375,9.932,2.314c2.703,2.706,3.462,6.607,2.293,9.993L87.42,55.529c3.385-1.167,7.292-0.413,9.994,2.295c3.78,3.777,3.78,9.9,0,13.679c-3.78,3.78-9.901,3.78-13.683,0c-2.842-2.844-3.545-7.019-2.105-10.521L68.578,47.933l-0.002,34.341c0.922,0.455,1.791,1.063,2.559,1.828c3.779,3.777,3.779,9.898,0,13.683c-3.779,3.777-9.904,3.777-13.679,0c-3.778-3.784-4.088-9.905-0.311-13.683C58.079,83.169,59,82.464,60,81.992V47.333c-1-0.472-1.92-1.172-2.856-2.111c-2.861-2.86-3.396-7.06-1.928-10.576L40.983,20.333L3.229,58.123c-3.175,3.177-3.155,8.325,0.02,11.5l55.126,55.114c3.173,3.174,8.325,3.174,11.503,0l54.86-54.858C127.913,66.703,127.916,61.552,124.742,58.378z"/>
15+
</svg>
16+
```
17+
18+
- Add css rules in your stylesheet
19+
```css
20+
.devicon {
21+
max-width: 2em;
22+
}
23+
24+
/* if you want to change the original color */
25+
.devicon path {
26+
fill: #4691f6;
27+
}
28+
```
29+
30+
### Icons font
31+
32+
- Upload devicon.css and font files to your project
1233

1334
```html
14-
<head>
1535
<link rel="stylesheet" href="devicon.css">
16-
</head>
1736

18-
<body>
37+
<!-- if you want colored versions -->
38+
<link rel="stylesheet" href="devicon-colors.css">
39+
```
40+
41+
- Add icon using <i> tag
42+
43+
```html
1944
<!-- for git plain version -->
2045
<i class="devicon-git-plain"></i>
21-
46+
2247
<!-- for git plain version with wordmark -->
2348
<i class="devicon-git-plain-wordmark"></i>
24-
25-
<!-- for git plain version colored with git main color -->
49+
50+
<!-- for git plain version colored with git main color (devicon-color.css required) -->
2651
<i class="devicon-git-plain colored"></i>
27-
28-
<!-- for git plain version with wordmark colored with git main color -->
52+
53+
<!-- for git plain version with wordmark colored with git main color (devicon-color.css required) -->
2954
<i class="devicon-git-plain-wordmark colored"></i>
30-
</body>
3155
```
3256

33-
See devicon.html or devicon.json file for complete and up to date reference of icon's available versions.
34-
35-
Original files (.ai, .svg) are available in the "icons" folder.
36-
37-
38-
Available icons (alphabetical order)
39-
---------------
40-
41-
- .NET
42-
- AngularJS
43-
- Backbone.js
44-
- Bootstrap
45-
- Bower
46-
- Chrome
47-
- Codeigniter
48-
- CSS3
49-
- Debian (new)
50-
- Devicon
51-
- Firefox
52-
- Foundation
53-
- Git
54-
- Grunt
55-
- Gulp
56-
- HTML5
57-
- Illustrator
58-
- Java
59-
- Javascript
60-
- JQuery
61-
- KrakenJS (new)
62-
- Laravel
63-
- Less
64-
- Linux (new)
65-
- MongoDB (new)
66-
- MySQL
67-
- NodeJS (new)
68-
- Photoshop
69-
- PHP
70-
- PostgreSQL (new)
71-
- Python
72-
- Rails
73-
- Ruby
74-
- Sass
75-
- Travis (new)
76-
- Ubuntu (new)
77-
- Wordpress
78-
- Yii
79-
- Zend
80-
81-
Upcoming icons
82-
---------------
83-
- Github
84-
- Bitbucket
85-
- Sketch
86-
- browsers: safari, opera, IE
87-
- operating systems: windows, mac
88-
- ... Please contribute or open an issue for requesting an icon
89-
90-
91-
92-
93-
94-
57+
##### See devicon.json file for complete and up to date reference of icon's available versions.

0 commit comments

Comments
 (0)