Files
ltk/themes/default/branding/dark/launcher.svg
yamabush1 8809313be1
Some checks failed
CI / build + test (push) Has been cancelled
CI / cargo audit (push) Has been cancelled
theme: replace Figma-exported launcher SVGs with renderer-compatible versions
The original exports used foreignObject (CSS backdrop-filter) and
feComposite in2="hardAlpha" filter chains — Figma-specific constructs
that resvg ignores, making all nine dots invisible at runtime.

Replace both dark and light variants with plain 3×3 grids of rx=3
rounded rects (white in dark mode, #0A032E in light mode). No filters,
no defs, fully renderable by resvg/tiny-skia.
2026-06-21 11:27:03 +02:00

12 lines
706 B
XML

<svg width="66" height="66" viewBox="0 0 66 66" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="9" y="9" width="12" height="12" rx="3" fill="white"/>
<rect x="27" y="9" width="12" height="12" rx="3" fill="white"/>
<rect x="45" y="9" width="12" height="12" rx="3" fill="white"/>
<rect x="9" y="27" width="12" height="12" rx="3" fill="white"/>
<rect x="27" y="27" width="12" height="12" rx="3" fill="white"/>
<rect x="45" y="27" width="12" height="12" rx="3" fill="white"/>
<rect x="9" y="45" width="12" height="12" rx="3" fill="white"/>
<rect x="27" y="45" width="12" height="12" rx="3" fill="white"/>
<rect x="45" y="45" width="12" height="12" rx="3" fill="white"/>
</svg>