Search code examples
shopwareshopware6

Shopware 6 - Change Fill-Color of "Add to Wishlist Icon"


we´d like to change the fill-color of the wishlist-icons. If you click on it the hearth zooms and a color get filled. We found this attribute in the sourcecode of the shop but couldn´t find a twig-file for this:

How to change the "fill-attribute"?


Solution

  • override it by your own color https://developer.shopware.com/docs/guides/plugins/plugins/storefront/add-custom-styling

    .product-wishlist {
      .icon-wishlist {
         color: $yourThemeColor;
      }
    }
    

    enter image description here