When working with SVG assets within a design system we’re often using named color variables that are part of the design system so that our designs support different color modes (light, dark etc)
it would be super helpful if there was some way for these variables made their way into the SVG code (with a fallback for situations or usages where the variable may not exist)
So in your SVG export instead of this:
<rect x="0.331604" y="0.717941" width="20.9977" height="20.9977" fill="#ffffff"/>
you’d get something like this
<rect x="0.331604" y="0.717941" width="20.9977" height="20.9977" fill="var(--color-background, #ffffff)"/>
which would then be able to be able to be dynamically changed based on what is being set for --color-background in the consuming web app.