Some checks failed
Build and Test / build (push) Has been cancelled
Set up the foundation for custom Kindred Create icons: - Add kindred-icons/ directory with Catppuccin Mocha themed SVG icons - Modify BitmapFactory to prioritize kindred-icons/ in search path - Add CMake install rules to package icons with application - Include documentation (README.md) with design guidelines - Add 12 initial icons as proof of concept: - File: document-new, document-open, document-save - Edit: edit-undo, edit-redo, edit-copy, edit-cut, edit-paste, delete - View: zoom-in, zoom-out, view-refresh - System: preferences-system All icons follow the standard template: - 32x32 viewBox - Rounded rectangle background (rx=4, surface0 #313244) - Catppuccin Mocha color palette Closes #3
14 lines
881 B
XML
14 lines
881 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
<rect x="2" y="2" width="28" height="28" rx="4" fill="#313244"/>
|
|
<!-- Trash can body -->
|
|
<path d="M8 10 L10 26 L22 26 L24 10" fill="#45475a" stroke="#f38ba8" stroke-width="1.5" stroke-linejoin="round"/>
|
|
<!-- Trash can lid -->
|
|
<rect x="6" y="7" width="20" height="3" rx="1" fill="#585b70" stroke="#f38ba8" stroke-width="1.5"/>
|
|
<!-- Handle -->
|
|
<path d="M12 7 L12 5 L20 5 L20 7" fill="none" stroke="#f38ba8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
<!-- Trash lines -->
|
|
<line x1="12" y1="13" x2="12" y2="23" stroke="#f38ba8" stroke-width="1.5" stroke-linecap="round"/>
|
|
<line x1="16" y1="13" x2="16" y2="23" stroke="#f38ba8" stroke-width="1.5" stroke-linecap="round"/>
|
|
<line x1="20" y1="13" x2="20" y2="23" stroke="#f38ba8" stroke-width="1.5" stroke-linecap="round"/>
|
|
</svg>
|