Found on Microsoft website to determine accent color:
Color currentAccentColorHex = (Color)Application.Current.Resources["PhoneAccentColor"]; string currentAccentColor = ""; switch (currentAccentColorHex.ToString()) { case "#FF1BA1E2": currentAccentColor = "blue"; break; case "#FFA05000": currentAccentColor = "brown"; break; case "#FF339933": currentAccentColor = "green"; break; case "#FFE671B8": currentAccentColor = "pink"; break; case "#FFA200FF": currentAccentColor = "purple"; break; case "#FFE51400": currentAccentColor = "red"; break; case "#FF00ABA9": currentAccentColor = "teal (viridian)"; break;
So blue color: #FF1BA1E2
If not, you can write your own quick test code:
Color currentAccentColorHex = (Color)Application.Current.Resources["PhoneAccentColor"]; MessageBox.Show("#" + currentAccentColorHex.ToString("X2"));
Before running this code, set your theme to blue.
source share