readRGB.RdThis function reads a set of RGB color descriptions (of the form written by
gcolorsel) from a file and creates a color object containing the
corresponding colors.
readRGB(file, class = "RGB")An color object of the specified class containing the color descriptions.
The file is assumed to contain RGB color descriptions consisting of three integer values in the range from 0 to 255 followed by a color name.
if (FALSE) { # \dontrun{
rgb <- readRGB("pastel.rgb")
hsv <- readRGB("pastel.rgb", "HSV")
} # }