BLUEBG Style Definition

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;
define style bluebg;
parent = styles.default;
replace color_list /

'fgB2' = cx0066AA
'fgB1' = cx004488
'fgA4' = cxAAFFAA
'bgA4' = cx880000
'bgA3' = cxD3D3D3
'fgA2' = cx0033AA
'bgA2' = cxB0B0B0
'fgA1' = cx000000
'bgA1' = cxF0F0F0
'fgA' = cx002288

/* changed from cxE0E0E0 */

'bgA' = cx9BBCFF;

end;

run;