Skip to content

Instantly share code, notes, and snippets.

@umkasanki
Created March 17, 2020 15:47
Show Gist options
  • Save umkasanki/ca3a9e416fc590eb4ba551db275d14d1 to your computer and use it in GitHub Desktop.
Save umkasanki/ca3a9e416fc590eb4ba551db275d14d1 to your computer and use it in GitHub Desktop.
Craft CMS / Twig / Tailwing. SVG with dynamic color replace
{% 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