Analog Gothic is a free, open-source 1-bit pixel icon kit inspired by medieval symbolism and nature. ๐๏ธ
This icon kit embraces intentional simplicity, combining both filled and outlined pixel icons within the same set.
All icons in this kit are pure SVGs, allowing flexibility across a wide range of use cases:
- Standalone icons using
<img> - SVG sprite references
- Inline SVG (copy-paste directly into markup)
Standalone icon:
<img class="ag-icon ag-icon-book" src="icons/ag-book.svg" alt="ag-book" />SVG sprite:
<div id="ag-sprite" style="display:none">
<!-- Replace with analog-gothic.svg sprite contents here -->
</div>
<svg class="ag-icon ag-icon-book" width="48" height="48" aria-hidden="true">
<use href="#ag-book" />
</svg>Inline SVG:
<!-- Inline SVG usage -->
<svg class="ag-icon ag-icon-book" viewBox="0 0 1024 1024" aria-hidden="true">
...
</svg>Analog Gothic is maintained under semantic versioning guidelines.
What to expect when making use of this icon kit:
- A
majorrelease may add, remove, modify, or rename icons - A
minorrelease will be reserved for general improvements and may add icons - A
patchrelease will be reserved for bug fixes