SVG Asset Library (Dark Theme)
Internal design system assets for the Aevum Encyclopedia platform. All icons are optimized for dark mode interfaces, supporting stroke-based theming and dynamic color inheritance.
Core System Icons
Implementation Guide
<!-- Basic Usage -->
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="11" cy="11" r="8"/>
<path d="m21 21-4.35-4.35"/>
</svg>
<!-- Dark Mode Color Inheritance -->
<div style="color: var(--accent, #58a6ff)">
<svg class="icon-system" ...></svg>
</div>
Technical Specifications
viewBox: 0 0 24 24 (standardized coordinate space)stroke-width: 1.5px - 2px (responsive scaling enabled)fill: none / currentColor (theme adaptive)opacity: 100% (dark mode contrast optimized)accessibility: aria-hidden="true" + role="img" for decorative usageexport: SVG, WebP, & sprite sheets available via CDN