I'm trying to convert a Windows.UI.Color into a simple string color name in my Windows 8.1 Universal app.
I already have the ARGB values from the Color (even the hex code), and I just want its associated known name (for example, from #7AFF7A7A to "salmon"). Since System.Drawing is not available in WinRT, I cannot use ColorConverter or ColorTranslator.
I've tried converting the Windows.UI.Color object into a SolidColorBrush or even a Brush, but none of them provide the name conversion capability.
What's the best way of doing this?