<html>
<head>
<title>SVG Fill Color in CSS</title>
<style>
svg {
fill:#0359b7;
}
</style>
</head>
<body>
<h2>Example for SVG fill color using CSS </h2>
<svg width="300" height="300">
<circle cx="140" cy="140" r="30%"/>
</svg>
</body>
</html>