This example generates ODS style definition BLUEBG. It is based on
the DEFAULT style definition but with a light blue (9B BC FF) background.
This style is used for all the sample HTML pages displayed in the Mainframe section
of the SAS web site.
|
ods path sasuser templat(update) sashelp.tmplmst(read);
proc template;
'fgB2' = cx0066AA
/* changed from cxE0E0E0 */
'bgA' = cx9BBCFF;
end;
run; |