Navbar Color set using Shell.BackgroundColor is not accurate.
Correct color.
Color is lighter than actual
<Style x:Key="BaseStyle"
ApplyToDerivedTypes="True"
TargetType="Element">
<Setter Property="Shell.FlyoutBackgroundColor"
Value="White" />
<Setter Property="Shell.BackgroundColor"
Value="#2f353a" />
<Setter Property="Shell.ForegroundColor"
Value="White" />
<Setter Property="Shell.TitleColor"
Value="White" />
<Setter Property="Shell.DisabledColor"
Value="#B4FFFFFF" />
<Setter Property="Shell.UnselectedColor"
Value="#95FFFFFF" />
</Style>
<Shell xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ABC"
xmlns:controls="clr-namespace:ABC.Controls"
xmlns:views="clr-namespace:ABC.Views"
x:Name="self"
Title="Shelltest" x:Class="ABC.AppShell" Style="{StaticResource BaseStyle}">
<Shell.FlyoutHeader>
<controls:FlyoutHeader />
</Shell.FlyoutHeader>
<FlyoutItem Title="Home" FlyoutIcon="icons8_home_30.png" FlyoutDisplayOptions="AsSingleItem">
<!-- <ShellContent>
<views:HomePage />
</ShellContent>-->
<Tab Title="Dashboard" Icon="icons8_home_30.png">
<ShellContent>
<views:HomePage />
</ShellContent>
</Tab>
<Tab Title="Page1" Icon="icons8_user_shield_30.png">
<ShellContent>
<views:Page1 />
</ShellContent>
</Tab>
</FlyoutItem>
Color in display:

Color without using shell:

Actual Color:

@Alkhajeh Can you please attach a small project that demonstrates this issue? Thanks!
Hi @samhouts, I've updated my bug demo I made for #6373 to show this issue as well
https://github.com/Robtom5/XamarinBugDemo-6373
This is shown by selecting item2 on the flyout

Verified reproduction, there is indeed a difference in color. It seems a PR (#6239) is already fixing this.
+1
@jfversluis the above linked PR has been closed with no changes as far as i can see. Any other progress for fixing this as the difference is quite stark when using some colors
Sorry about that @Robtom5! Seems there is no PR attached to this issue at this time.
Here's a workaround for anyone still struggling with this: https://forums.xamarin.com/discussion/comment/383797/#Comment_383797
Most helpful comment
Here's a workaround for anyone still struggling with this: https://forums.xamarin.com/discussion/comment/383797/#Comment_383797