1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2025-01-05 01:20:39 +02:00
SVG icons for popular brands
Go to file
Eric Cornelissen aae9abb9c2 Add GOG icon (#1163)
* Add GOG icon SVG

As it is found here https://www.cdprojekt.com/en/media/logotypes/

* Add GOG icon details

Added GOG icon details. The name is written as GOG as this is how it
appears as their website title and on their social media (even though
the logo is clearly lowercase). The (purple) color #86328A was picked
because GOG clearly has a purple esthetic, although the logos found at
the source all use (the gray) #333333.

* Rename GOG to GOG.com
2019-01-11 23:20:52 +01:00
_data Add GOG icon (#1163) 2019-01-11 23:20:52 +01:00
.github Add a point to the pr template checklist (#1122) 2018-12-14 14:33:37 +02:00
icons Add GOG icon (#1163) 2019-01-11 23:20:52 +01:00
images Adds better OG preview image 2017-04-27 18:19:18 +01:00
scripts Add Apple Pay, AT&T, T-Mobile, Sprint, Verizon, Boost, Framer (#973) 2018-09-11 08:42:29 +02:00
tests Test the NPM package (#972) 2018-09-09 21:58:53 +02:00
.gitignore Add "jsonhint" dependency 2017-09-11 21:53:21 +02:00
.jsonlintschema Change wording in schema 2017-09-13 21:44:59 +02:00
.npmignore Add index.js to .npmignore whitelist 2017-09-17 03:49:13 +02:00
.svglintrc.js Remove aria-labelledby and ids from SVGs (#1062) 2018-11-06 17:10:17 +01:00
.travis.yml Refine xmlstarlet options (#1159) 2019-01-07 22:18:22 +01:00
CNAME Update CNAME 2015-11-02 14:20:14 +00:00
CONTRIBUTING.md Remove aria-labelledby and ids from SVGs (#1062) 2018-11-06 17:10:17 +01:00
index.html Remove aria-labelledby and ids from SVGs (#1062) 2018-11-06 17:10:17 +01:00
LICENSE.md Markdown fix (#928) 2018-08-10 15:22:29 +02:00
package-lock.json Update package-lock.json 2018-11-18 00:49:14 +01:00
package.json Version bump 2019-01-11 14:19:52 +01:00
README.md Remove aria-labelledby and ids from SVGs (#1062) 2018-11-06 17:10:17 +01:00
site_script.js Remember users ordering preference (#1053) 2018-11-05 01:58:49 +01:00
stylesheet.css Update no search results message (#1036) 2018-10-29 18:21:34 +01:00

Simple Icons

Simple Icons

Free SVG icons for popular brands. See them all on one page at SimpleIcons.org. Contributions, corrections & requests can be made on GitHub. Started by Dan Leech.

Usage

General Usage

Icons can be downloaded as SVGs directly from our website - simply click the icon you want, and the download should start automatically.

CDN Usage

Icons can be served from a CDN such as JSDelivr or Unpkg. Simply use the simple-icons npm package and specify a version in the URL like the following:

<img height="32" width="32" src="https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/stackoverflow.svg" />
<img height="32" width="32" src="https://unpkg.com/simple-icons@latest/icons/stackoverflow.svg" />

Node Usage

The icons are also available through our npm package. To install, simply run:

$ npm install simple-icons

The API can then be used as follows:

const simpleIcons = require('simple-icons');

console.log(simpleIcons['Google+']);

/*
{
    title: 'Google+',
    hex: 'DC4E41',
    source: 'https://developers.google.com/+/branding-guidelines',
    svg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">...</svg>'
}
*/

Alternatively you can import the needed icons individually. This is useful if you are e.g. compiling your code with webpack and therefore have to be mindful of your package size:

const googleplus = require('simple-icons/icons/googleplus');

console.log(googleplus);
/*
{
    title: 'Google+',
    hex: 'DC4E41',
    source: 'https://developers.google.com/+/branding-guidelines',
    svg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">...</svg>'
}
*/

Third Party Extensions

WordPress

Icons are also available on WordPress through a simple plugin created by @tjtaylo, which you can find here.

Status

Build Status npm version