in my UWP projects i can't change the color of TitleBar's Text! it's always Black.
and also i tested RGBA too and nothing happend.
in UWP project>mainpage.xaml.cs> add the following
var titleBar = ApplicationView.GetForCurrentView().TitleBar;
titleBar.ForegroundColor = Windows.UI.Colors.White;
and build the app
TitleBar forground color change.

I have tried to reproduce the issue without success:

titleBar.BackgroundColor = Colors.Purple;
titleBar.ButtonBackgroundColor = Colors.Yellow;
titleBar.ForegroundColor = Colors.GreenYellow;
Attached the reproduction sample using latest Xamarin.Forms 4.6 version:
Issue10900.zip
@mhrastegary77 Could you attach a reproduction sample?
@jsuarezruiz it seems White color doesn't works for Forground with light colors on Background.
so i think it's a winui issue right? :(
Something like Color.FromArgb(255, 254, 254, 254) must work.
Thanks it worked ❤