Glyph
Icon font is so yesterday. Say hello to “Glyph”, a semantic and versatile SVG icon set designed for customization.
Icon font is so yesterday. Say hello to “Glyph”, a semantic and versatile SVG icon set designed for customization.
<img src="svg/si-glyph-bed.svg"/>
<svg-icon><src href="svg/si-glyph-bed.svg"/></svg>
<!-- or use a sprite -->
<svg-icon><src href="sprite.svg#si-glyph-bed"/></svg>
.glyph-icon svg {
width:16px;
height:16px;
}
You can set the icon in any width and height but we recommend to set the SVG in its base grid 16x16 (16x16, 32x32) to keep pixel perfection and sharpness.
Glyph is carefully handcoded with semantic naming so that you can change all or some icons color with just these simple CSS snippets below.
You can style the whole set with a single line of CSS:
.si-glyph * {
fill: red;
}
Targeting an individual icon is super easy:
.si-glyph-bubble-message-hi {
fill: blue;
}