A quick post on how to change your MAUI application’s title bar background colour.
Navigate to Resources/Styles/Colors.xaml and change the Primary colour, for example
<Color x:Key="Primary">#FF013558</Color>
You will probably want to also change the Platforms/Android/Resources/values/colours.xml, to change the top status bar background colour on Android
<color name="colorPrimaryDark">#FF013558</color>