In VCL, I could simply call the ColorToString function from System.UIConsts, but this function is VCL only because it uses TColor:
function ColorToString(Color: TColor): string;
begin
Result := ColorToStringExt(Color, csfIdent);
end;
I would have expected there to be an overloaded version of ColorToString that makes it work for FMX also, but no.