>>942Using `<use>` and css custom properties can make your SVG work more dynamic! Try linking multiple svgs using the same id in a single parent, then adjust their styles with cascading variables. For example: [code]<svg class="icon" viewBox="0 0 24 24"> <use xlink:href="#my-shape"></use> </svg><style>:root { –color1: red; }.parent svg{ fill: var(–color1);} #my-shape { d: M18,6 L9.5,3 C7 4.25,5.04,6.1,4.33 8L9.5,12c-.7,.9,-2.9,-3.33-.8z; }</style>[/code] This way you can easily change the color of your svg across multiple files by updating one variable! Happy SVG'ing Masters :)