Skip to content

Nullicons is an icon set based on programming languages, web and software development in general

License

Notifications You must be signed in to change notification settings

Specro/nullicons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nullicons - v1.0.0

Nullicons is an icon set based on programming languages, web and software development in general. There are 111 icons as of now. You can view all the icons here.

Usage

Nullicons are used in SVG format and generated into spritesheet using the svg sprite plugin. In the ditribution folder you'll find 5 different ways of using the icon set. Most of them involve SVG fragment identifiers.

CSS & View

Same as a simple CSS spritesheet except in SVG format. Use classes in the CSS file to display the icon. Like this:

<i class="null-ada"></i>

You can manipulate icon sizes by resizing the background (generated sheet size is 1408px by 1408px). Read more on this method here and here. View is exactly the same except it has a <view> element created for each shape. You can find out more in the svg sprite page.

Defs & Symbol

With defs and symbol you can use external sheet or embed one into your HTML.

External:

<svg viewbox="0 0 100 100">
  <use xlink:href="nullicons.svg#ada"/>
</svg>

Embedded:

<svg viewbox="0 0 100 100">
  <use xlink:href="#ada"/>
</svg>

Symbol is the same way except you can drop the viewbox:

<svg>
  <use xlink:href="#ada"/>
</svg>

You can read more about defs and symbol here and here.

Stack

This method uses stacked icons and SVG fragment identifiers to locate the one icon needed.

<img src="nullicons.svg#ada" />

More on SVG stacking.

Contributing

If you can't find an icon you need open an issue for it or add it yourself. Right now all source SVG files are 128px by 128px in size and colored in #222222. Always check your SVG code with the source SVG code to keep it as clean as possible.

License

Licensed under MIT license.

About

Nullicons is an icon set based on programming languages, web and software development in general

Resources

License

Stars

Watchers

Forks

Packages

No packages published