Is there a way to customize the background color and flashing color of the Skeleton component in Material UI?
I would like to implement custom styling for it, similar to what is shown below:
<Skeleton variant="circle" classes={{root:'placeholder-animation'}} animation="wave" width={56} height={56} />
.placeholder-animation{
background: chartreuse;
}