An Open Source icon system for Identity language by Auth0. A royalty-free, free-to-use icons and clipart representing fundamental identity concepts. Use them in presentations, specifications and documentation. For more details, read the announcement blog post.
You can download the whole set of icons or just the icons that you need from the identicons.dev.
Awesome! To contribute you have to make a pull request with following data:
- Add the icon in their two versions (Dark and Light) and two formats each one
.svg
and.png
. They have to go in their respectives folders./static/icons/dark
or./static/icons/light
. For the build of the icons you have to consider the following specifications:
-
Icon colors: You can use two colors per icon in each case.
- Light:
#000000
and#eb5424
. - Dark:
#ffffff
and#eb5424
.
- Light:
-
All the icons must to have transparent background.
-
The
.png
icons size have to be 400x400 pixels. -
The file name must be the same all cases.
- Once you add the icons you will have to create a new key in
./base/iconSet.js
. The key looks something like this:
icon#: {
image: "icon-name",
name: "Icon Name"
}
So you have to:
- Check the Last Icon Number and add the next in
icon#
. - Add the Image File Name(without the file extension) into the
image:
. - and lastly, add the Icon Name that you think correct into the
name:
.
Thanks for contribute!