Created
March 17, 2020 15:47
-
-
Save umkasanki/ca3a9e416fc590eb4ba551db275d14d1 to your computer and use it in GitHub Desktop.
Craft CMS / Twig / Tailwing. SVG with dynamic color replace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% set image = item.icon.one() %} | |
| {% if image and image.extension == 'svg' %} | |
| {{ svg(image, class='h-full w-auto')|replace({ | |
| '^fill="#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})"$': 'class="fill-current"', | |
| '^stroke="#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})"$"': 'class="stroke-current"' | |
| })|raw }} | |
| {% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment