In my app, I want to have the color of the application bar be white and full opaque, with no regards to the theme. So far I have experimented with this.
ApplicationBar.Opacity = 1;
ApplicationBar.BackgroundColor = Color.FromArgb(52, 50, 2, 181);
The result was a light pink color with some transparency. Also, I would like to keep the same theme colored (light theme) icon buttons even if the theme is dark. I have seen apps in the WP Store (mainly Skype) that do that. Answers gladly appreciated.