The general way to change element's color in CVI is to use SetCtrlAttribute. For example, to change graph background color you can use
SetCtrlAttribute (panel, control, ATTR_GRAPH_BGCOLOR, VAL_WHITE);
I suggest you to open the function panel for SetCtrlAttribute, click on the 'Control Attribute' field and on the dialog that shows clock on the upper field (Control type) and select the control you have to operate on: that way only the active attributes for that type of control will be shown and it will be easier for you to find the exact one to use.
Once you have seledcted a color attribute, if you press Enter in the next field (Attribute value) you will find some predefined macros for the basic color (like the VAL_WHITE I used before); if you want a different co
lor you can use MakeColor() function, but be careful to the effects particular color has on different color settings of monitor.
For some objects there are different functions for setting colors, for example SetPlotAttribute for graph plottings and SetTraceAttribute for strip chart traces...
Don't bother to ask again if you need more details...
Roberto