Hi Julian Ewers-Peters, I tried the approach with .Net 7 on MAUI to support light and dark mode for splash screen with following steps but it doesn't seem to work as per following: I have set the splash screen as below: <MauiSplashScreen Include="Resources\Splash\splash.svg"/> The "@color/colorPrimaryDark" for "styles.xml" in both "values" and "values-night" takes the value #1B3147 for bacground color of splash screen and not what I have mentioned in "colors.xml". Here is the configuration of "MainActivity.cs": [Activity(Theme = "@style/MyTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.KeyboardHidden, ScreenOrientation = ScreenOrientation.Portrait)] So, please let me know what I am missing on my side to make it work. Awaiting you reply.