refactor: Adjust SVG glow filter parameters in logo_svg.py

This commit is contained in:
Paul Gauthier 2025-03-20 07:56:44 -07:00 committed by Paul Gauthier (aider)
parent e5d9d91b01
commit d8ed90a2c0

View file

@ -42,7 +42,7 @@ def generate_svg_with_embedded_font(font_path, text="aider", color="#14b014", ou
<svg width="{width}" height="{height}" viewBox="0 0 {width} {height}" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="glow" x="-40%" y="-30%" width="180%" height="160%">
<feGaussianBlur stdDeviation="6 2" result="blur" />
<feGaussianBlur stdDeviation="5 1" result="blur" />
<feComposite in="SourceGraphic" in2="blur" operator="over" />
</filter>
</defs>