How to override loading spinner background color?

I changed my $v-app-background-color. It’s different with loading spinner’s background color. I found it in

@mixin valo-common(){
....
.v-app-loading{
	...
	&:before{
		....
		background: #fff url(#{$valo-shared-pathPrefix}img/spinner.gif) no-repeat 50%;
	}
}

}

Does anyone know how to override it? I’m not good at CSS. And I think it shoud be use $v-app-background-color. Not a fixed #fff color code.

Does anyone know how to override it?

Hello,

You can add this to your stylesheet:

.v-app-loading::before {
  background-color: <value>;
}