substitute method
override
Returns a new color to use in place of color
during SVG parsing.
The SVG parser will call this method every time it parses a color
Implementation
@override
Color substitute(String? id, String elementName, String attributeName, Color color) {
return _overrides[color] ?? color;
}