style: Extend horizontal glow effect in logo SVG filter

This commit is contained in:
Paul Gauthier (aider) 2025-03-20 07:54:45 -07:00
parent c8f6576cd7
commit e5d9d91b01

View file

@ -41,8 +41,8 @@ def generate_svg_with_embedded_font(font_path, text="aider", color="#14b014", ou
svg = f"""<?xml version="1.0" encoding="UTF-8" standalone="no"?> svg = f"""<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="{width}" height="{height}" viewBox="0 0 {width} {height}" xmlns="http://www.w3.org/2000/svg"> <svg width="{width}" height="{height}" viewBox="0 0 {width} {height}" xmlns="http://www.w3.org/2000/svg">
<defs> <defs>
<filter id="glow" x="-30%" y="-30%" width="160%" height="160%"> <filter id="glow" x="-40%" y="-30%" width="180%" height="160%">
<feGaussianBlur stdDeviation="3" result="blur" /> <feGaussianBlur stdDeviation="6 2" result="blur" />
<feComposite in="SourceGraphic" in2="blur" operator="over" /> <feComposite in="SourceGraphic" in2="blur" operator="over" />
</filter> </filter>
</defs> </defs>