feat: use css variables for svg icon colors

This commit is contained in:
2026-05-07 11:57:44 +02:00
parent ca5b19209c
commit 0879dde851
9 changed files with 28 additions and 22 deletions

View File

@@ -1,8 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
<defs>
<radialGradient id="bg" cx="35%" cy="35%" r="75%">
<stop offset="0%" stop-color="#FB923C" />
<stop offset="100%" stop-color="#C2410C" />
<stop offset="0%" style="stop-color: var(--accent, #0466c8)" />
<stop offset="100%" style="stop-color: var(--accent-dark, #1d4ed8)" />
</radialGradient>
<clipPath id="clip">
<circle cx="50" cy="50" r="45" />

Before

Width:  |  Height:  |  Size: 636 B

After

Width:  |  Height:  |  Size: 685 B