All Projects → mikolajdobrucki → Ikonate

mikolajdobrucki / Ikonate

Licence: mit
Fully customisable & accessible vector icons

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Ikonate

Coreui Icons
CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
Stars: ✭ 1,813 (-46.55%)
Mutual labels:  svg, icons, icon-pack, icon-set
Vue Unicons
1000+ Pixel-perfect svg icons for your next project as Vue components
Stars: ✭ 828 (-75.59%)
Mutual labels:  svg, icons, icon-pack
Bytesize Icons
Tiny style-controlled SVG iconset (101 icons, 12kb)
Stars: ✭ 3,662 (+7.96%)
Mutual labels:  svg, icons, icon-set
icons-flat-osx
Free Flat icons For OSX
Stars: ✭ 371 (-89.06%)
Mutual labels:  icons, icon-pack, icon-set
Cryptocurrency Icons
A set of icons for all the main cryptocurrencies and altcoins, in a range of styles and sizes.
Stars: ✭ 2,116 (-37.62%)
Mutual labels:  icons, icon-pack, icon-set
Flat Color Icons
Free Flat Color Icons
Stars: ✭ 2,014 (-40.62%)
Mutual labels:  icons, icon-pack, icon-set
Phosphor Icons
A flexible icon family for the web
Stars: ✭ 56 (-98.35%)
Mutual labels:  svg, icons, icon-pack
Icons Flat Osx
Free Flat icons For OSX
Stars: ✭ 366 (-89.21%)
Mutual labels:  icons, icon-pack, icon-set
Maki
POI Icon Set
Stars: ✭ 1,348 (-60.26%)
Mutual labels:  svg, icons, icon-set
Tabler Icons
A set of over 1400 free MIT-licensed high-quality SVG icons for you to use in your web projects.
Stars: ✭ 10,858 (+220.11%)
Mutual labels:  svg, icons, icon-pack
Teenyicons
Tiny minimal 1px icons designed to fit in the smallest places.
Stars: ✭ 1,631 (-51.92%)
Mutual labels:  svg, sprites, icons
Plane Icon Theme
Is a modern icon theme for gnome linux versions.
Stars: ✭ 117 (-96.55%)
Mutual labels:  icons, icon-pack, icon-set
Iconhandler
Tint you Icons, change the size, apply alpha color and set a position easily. 👓
Stars: ✭ 59 (-98.26%)
Mutual labels:  icons, icon-pack, icon-set
Awesome Iconjar
44 Collect free icon sets for iconjar. 收集免费的图标包,iconjar 格式(44套)。
Stars: ✭ 188 (-94.46%)
Mutual labels:  icons, icon-pack, icon-set
Evolvere Icons
Stars: ✭ 52 (-98.47%)
Mutual labels:  icons, icon-pack, icon-set
Boxicons
High Quality web friendly icons
Stars: ✭ 1,104 (-67.45%)
Mutual labels:  svg, icons, icon-pack
Phosphor React
A flexible icon family for React
Stars: ✭ 97 (-97.14%)
Mutual labels:  svg, icons, icon-pack
Simple Icons
SVG icons for popular brands
Stars: ✭ 12,090 (+256.43%)
Mutual labels:  svg, icons, icon-pack
Circle Flags
A collection of 300+ minimal circular SVG country flags
Stars: ✭ 139 (-95.9%)
Mutual labels:  svg, icons, icon-pack
Lineage-Icons
LineageOS Icon Pack
Stars: ✭ 37 (-98.91%)
Mutual labels:  icons, icon-pack

Ikonate

npm version

Ikonate are fully customisable & accessible*, well-optimised vector icons.

To learn more about the project and generate the icons online, visit Ikonate.com. In the downloaded .zip file you will find:

  • customised SVG icons as stand-alone files (perfect for designers who don't want to edit code)
  • customised SVG sprite with an html demo
  • customised html demo of the icons as inline SVG

You can also follow the documentation below to generate generic demo files with all the available icons and customise them manually.

Built by @mikolajdobrucki & @mzaremski at ucreate

Installation

Git repository

You can clone this repository to manually install Ikonate in your project…

git clone https://github.com/eucalyptuss/ikonate.git

Install with npm

…or you can download the icons using npm package manager.

npm install ikonate

Build

To generate generic demo files and SVG sprites, install npm dependencies first.

npm install

Then, run a build command from the main repo directory.

npm run build

Demo & files structure

Raw SVG

All the icons are available as raw, unstyled SVGs at ./ikonate/icons.

Demo files

To view the demo files, remember to run a build command first.

The generated demos of inline SVGs and SVG sprites are available respectively under ./ikonate/build/inline/index.html and ./ikonate/build/sprite/index.html.

IT DOESN'T WORK! If you open the sprite demo directly in your browser, it may not display the icons correctly. To fix it, open it using an local server such as http-server.

Usage

As <img> or background-image.

Reference: CSS Tricks: Using SVG as an <img>

To generate your icons as separate styled svg files, visit Ikonate.com.

Remember that using icons as <img> or background-image, you can't customise them with CSS.

As inline SVG.

Reference: CSS Tricks: Using "inline" SVG

To use icons as inline svg, import the icons you need using a technique appropriate for your project from ./ikonate/icons.

Using this approach, you can later customise the icons with CSS.

As SVG sprite.

Reference: CSS Tricks: SVG use with External Reference

After running the build command successfully, you will find the SVG sprite with all the available icons in ./ikonate/sprite.

To generate your custom optimised SVG sprite, visit Ikonate.com.

Using this approach, you can later customise the icons with CSS.

If you'd like to learn more about different ways of using SVG in your project, check out the following articles:

Customisation

To customise icons with CSS you need to use the icons as either inline SVG or SVG sprite.

You can use the following CSS parameters to customise the icons:

  • width
  • height
  • stroke
  • stroke-width
  • stroke-linecap
  • stroke-linejoin

e.g.:

width: 24px;
height: 24px;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;

Check the demo files for a representative example.

You can also generate the styles and all the customised demo files at Ikonate.com.

Accessibility

Ikonate is NOT accessible out of the box and will never be. We've done our best to follow the best accessibility practices while building this software, but it's your role to adjust it and make it truly accessible inside your project.

E.g. all the titles and descriptions given to the icons should be treated as placeholders and changed in implementation depending on an actual role of each icon. In many cases, you may not need them altogether.

To learn more on this topic, read an excellent article by Chris Coyier: How Can I Make My Icon System Accessible?

License

Ikonate is available under the MIT. Feel free to use the set in both personal and commercial projects. Attribution is much appreciated but not required.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].