By leveraging CSS
, I have successfully applied color to SVG
graphics like so:
svg polygon, svg line, svg polyline, svg path, svg mesh, svg rect, svg circle, svg ellipse {
fill: Gray;
}
Is there a more concise method to achieve this without explicitly listing all basic SVG shapes? Perhaps a solution utilizing SASS
?