Hallo,
Wie ich auf Gradients in SVG - SVG | MDN gelesen habe, müssen Sie \u003clinearGradient\u003e zu SVG hinzufügen.
Weitere Ressourcen:
Sie können ein verstecktes SVG in Ihrem Theme/Komponente erstellen, um Ihre Farbverläufe zu definieren:
<svg aria-hidden="true" focusable="false" style="width:0; height:0; position:absolute;">
<linearGradient id="my-gradient-1" x2="0" y2="1">
<stop offset="0%" stop-color="var(--color-stop-1)" />
<stop offset="50%" stop-color="var(--color-stop-2)" />
</linearGradient>
<linearGradient id="my-gradient-2">
<stop offset="0%" stop-color="var(--color-stop-1)" />
<stop offset="50%" stop-color="var(--color-stop-2)" />
<stop offset="100%" stop-color="var(--color-stop-3)" />
</linearGradient>
<!-- Define specific gradient as needed with a unique ID -->
</svg>
Dann definieren Sie in Ihrem CSS die Farbe und zielen auf die SVG-Elemente ab, die Sie mit fill füllen möchten:
/* defines gradients color */
#my-gradient-1 {
--color-stop-1: #a770ef;
--color-stop-2: #eda58b;
}
#my-gradient-2 {
--color-stop-1: #2980b9;
--color-stop-2: #6dd5fa;
--color-stop-3: #ffffff;
}
.svg-icon, .svg-icon-title {
/* targets all svg icons */
fill: url(#my-gradient-1) var(--header_primary-low-mid);
/* targets only chat icon */
&.d-icon-d-chat {
fill: url(#my-gradient-2) var(--header_primary-low-mid);
}
}
Hinweis: Der zweite Wert von fill ist eine Fallback-Farbe.
Ich habe nicht ausgiebig getestet, dies ist ein Beispiel, wie Sie anpassen können.
Schauen Sie sich gerne die Dokumentation an, um komplexere Farbverläufe zu erstellen.
Ich hoffe, das hilft!
