fix: replace Vite favicon with Velxio chip icon across all sizes
Redesign favicon.svg with solid filled shapes (visible at 16px tab size). Regenerate all PNG/ICO sizes (16, 32, 48, 180, 192, 512) from new design. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>pull/10/head
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 708 B |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 674 B |
|
Before Width: | Height: | Size: 532 B After Width: | Height: | Size: 161 B |
|
Before Width: | Height: | Size: 751 B After Width: | Height: | Size: 200 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 254 B |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 183 B |
|
|
@ -1,17 +1,20 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
|
||||
<rect width="32" height="32" rx="7" fill="#0d0d0f"/>
|
||||
<rect x="7" y="7" width="18" height="18" rx="2.5" stroke="#007acc" stroke-width="2"/>
|
||||
<rect x="11" y="11" width="10" height="10" rx="1.5" stroke="#007acc" stroke-width="1.5"/>
|
||||
<!-- top pins -->
|
||||
<line x1="12" y1="3" x2="12" y2="7" stroke="#007acc" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<line x1="20" y1="3" x2="20" y2="7" stroke="#007acc" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<!-- bottom pins -->
|
||||
<line x1="12" y1="25" x2="12" y2="29" stroke="#007acc" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<line x1="20" y1="25" x2="20" y2="29" stroke="#007acc" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<!-- left pins -->
|
||||
<line x1="3" y1="12" x2="7" y2="12" stroke="#007acc" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<line x1="3" y1="20" x2="7" y2="20" stroke="#007acc" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<!-- right pins -->
|
||||
<line x1="25" y1="12" x2="29" y2="12" stroke="#007acc" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<line x1="25" y1="20" x2="29" y2="20" stroke="#007acc" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<!-- Background -->
|
||||
<rect width="32" height="32" rx="6" fill="#0d0d0f"/>
|
||||
<!-- IC body (filled, high contrast) -->
|
||||
<rect x="8" y="8" width="16" height="16" rx="2" fill="#007acc"/>
|
||||
<!-- Die (darker inset) -->
|
||||
<rect x="11" y="11" width="10" height="10" rx="1" fill="#005fa3"/>
|
||||
<!-- Top pins -->
|
||||
<rect x="12" y="3" width="3" height="5" rx="1" fill="#007acc"/>
|
||||
<rect x="17" y="3" width="3" height="5" rx="1" fill="#007acc"/>
|
||||
<!-- Bottom pins -->
|
||||
<rect x="12" y="24" width="3" height="5" rx="1" fill="#007acc"/>
|
||||
<rect x="17" y="24" width="3" height="5" rx="1" fill="#007acc"/>
|
||||
<!-- Left pins -->
|
||||
<rect x="3" y="12" width="5" height="3" rx="1" fill="#007acc"/>
|
||||
<rect x="3" y="17" width="5" height="3" rx="1" fill="#007acc"/>
|
||||
<!-- Right pins -->
|
||||
<rect x="24" y="12" width="5" height="3" rx="1" fill="#007acc"/>
|
||||
<rect x="24" y="17" width="5" height="3" rx="1" fill="#007acc"/>
|
||||
</svg>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 972 B |