This commit is contained in:
Paul Gauthier 2025-03-20 08:07:56 -07:00
parent bed836b15a
commit 004ffb9f60

View file

@ -1,5 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="200" height="60" viewBox="0 0 200 60" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="glow" x="-40%" y="-30%" width="180%" height="160%">
<feGaussianBlur stdDeviation="7 1" result="blur" />
<feColorMatrix in="blur" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.5 0" result="lighter-blur"/>
<feComposite in="SourceGraphic" in2="lighter-blur" operator="over" />
</filter>
</defs>
<style>
@font-face {
font-family: 'GlassTTYVT220';
@ -13,6 +20,7 @@
fill: #14b014;
text-anchor: middle; /* Center the text horizontally */
dominant-baseline: middle; /* Center the text vertically */
filter: url(#glow);
}
</style>
<text x="100.0" y="37.2" class="logo-text">aider</text>

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 116 KiB

Before After
Before After