I know nothing about Spire, but the error message suggests the constructor is asking for a
PdfRGBColor
object, rather than a reference. So try something like:
Spire::Pdf::Graphics::PdfRGBColor color(0, 175, 178);
Spire::Pdf::Graphics::PdfSolidBrush^ brush = gcnew Spire::Pdf::Graphics::PdfSolidBrush(color);
But you really need to check the documentation to be certain.