I am making icons for some Win Phone 7 apps and want to use some solid colors the way all the other apps do.
Where can I find a reference for these colors?
For the general case,
SolidColorBrush b = (SolidColorBrush)Application.Current.Resources["PhoneAccentBrush"];
System.Diagnostics.Debug.WriteLine( "R: " + b.Color.R +
" G: " + b.Color.G +
" B: " + b.Color.B );
Noting that OEMs/Carriers (and devs up for a bit of hacking) are free to add custom colours.
With output as follows for the default Blue.
R: 27 G: 161 B: 226