Set the color for drawing output.

autocad_request("specify_color_RGB", int red, int green, int blue);


Here red, green and blue are the intensity factors of the RGB components from 0 to 255.

Example.

Set the output color to white.

autocad_request("specify_color_RGB", 255, 255, 255);