Splash screen spinner having a default color in ionic. if you really want change the splash screen spinner color then you need to change on config.xml in ionic project file.

Step’s to change the color of ionic splash screen spinner.

  • Go to project directory of ionic and open the file “config.xm” Then change the preferences value of color as given below ( In case that preferences is not available, so you can paste them directly at the end of preference line.
<preference name="SplashScreenSpinnerColor" value="blue" />
change default splash screen spinner color in ionic

Other way to set value of splash screen spinner color in ionic

<preference name="SplashScreenSpinnerColor" value="#242424"/>
<preference name="SplashScreenSpinnerColor" value="DarkRed"/>
<preference name="SplashScreenSpinnerColor" value="rgb(50,128,128)"/>

Leave a Reply