xpeditis2.0/apps/frontend/app/icon.svg
David 13857628bb feat: add theme-adaptive favicon
- Replace full logo (1875x1699) with simplified icon (512x512) optimized for favicon display
- Implement CSS media queries for automatic theme adaptation:
  * Dark mode: white X (#FFFFFF) with cyan dot (#34CCCD)
  * Light mode: dark blue X and dot (#1D3865)
- Remove old logo files (xpeditis-icon.svg, xpeditis-logo.svg)
- Simplified design with clean X shape and accent dot for better visibility at small sizes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-23 13:43:31 +01:00

19 lines
751 B
XML

<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<style>
@media (prefers-color-scheme: dark) {
.x-shape { stroke: #FFFFFF; fill: transparent; }
.dot-shape { fill: #34CCCD; }
}
@media (prefers-color-scheme: light) {
.x-shape { stroke: #1D3865; fill: transparent; }
.dot-shape { fill: #1D3865; }
}
</style>
<!-- Grand X stylisé (simplifié et centré) -->
<path class="x-shape" d="M50 50 L230 230 M230 50 L50 230 M50 280 L230 460 M280 280 L460 460 M280 50 L460 230 M280 230 L460 50" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/>
<!-- Point bleu en bas à droite -->
<circle class="dot-shape" cx="420" cy="420" r="45"/>
</svg>