Is there a way to do this in Windows Phone 7?
I can reference the TextBlock in my C# Code, but I don\'t know exactly how to then set the foreground color of it.
To get the Color from Hex.
using System.Windows.Media; Color color = (Color)ColorConverter.ConvertFromString("#FFDFD991");
and then set the foreground
textBlock.Foreground = new System.Windows.Media.SolidColorBrush(color);