function TEMSWebModule.RGBColor(Color: TColor): string;
var
RValue, GValue, BValue: integer; //RGB颜色值
begin
RValue := GetRValue(Color);
GValue := GetGValue(Color);
BValue := GetBValue(Color);
Result := 'RGB(' + IntToStr(RValue) + ',' + IntToStr(GValue) +
',' + IntToStr(BValue) + ')';
end;