My strings.xml contains the following string resource
<string name="contacts"><font fgcolor="#FF00FFFF">+</font> Contacts</string>
It is working fine and sets the textcolor to #FF00FFFF
But if I try to reference a color
<string name="contacts"><font fgcolor="@color/strings_font_fgcolor_cyan">+</font> Contacts</string>
it does not work.
I have added the color
<color name="strings_font_fgcolor_cyan">#FF00FFFF</color>
How I can reference this color from my string resource?