It would be good if it can convert RGB to Hex to save some space and the compress the hex colour using the link below. I know it won't save a massive amount but would be easy to implement
A example would be
Original - fill="RGB(255,255,255)"
Converted to Hex - fill="#ffffff"
Compress Hex - fill="#fff"
https://github.com/svg/svgo/issues/763 - Proposes we should add an optional parameter to convertColors to enable this behavior, and only perform the optimization if the color is close enough according to the defined threshold.
It would be good if it can convert RGB to Hex to save some space and the compress the hex colour using the link below. I know it won't save a massive amount but would be easy to implement
A example would be Original - fill="RGB(255,255,255)" Converted to Hex - fill="#ffffff" Compress Hex - fill="#fff"
https://gist.github.com/Prinzhorn/2628611