I am trying to customize an icon by changing the background color within the shape of the icon:
<i class="icon-sm icon-number-one"></i>
Here is the current CSS styling for the icon:
.icon-sm {
position: relative;
font-family: 'icons';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
vertical-align: middle;
color: #949494 !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-number-one:before {
content: "\e600";
}
The icon resembles a circle with a number inside it. Can you provide guidance on how to change the background color of the circle?