My app is prefer to uses light theme of Windows Phone 7 although the the phone theme is dark. I have use the code below but it doesn't work.
var background = (Color)Resources["PhoneBackgroundColor"];
background.R = 240;
background.G = 240;
background.B = 240;
var brushBackground = Resources["PhoneBackgroundBrush"] as SolidColorBrush;
brushBackground.Color = background;
Please help me.