Establish the ODS path and create the White style. The ODS PATH statement specifies the locations to write to or read from when creating the PROC TEMPLATE templates. The PROC TEMPLATE statement, DEFINE STYLE statement, and collection of STYLE statements create the style template White. The ODS NOPROCTITLE statement suppresses the writing of the title of the FREQ procedure.
ods path (prepend) work.templat(update);
ods noproctitle;
proc template;
define style white;
parent=styles.default;
style body /
backgroundcolor=white;
style systemtitle /
backgroundcolor=white
fontsize=6
fontweight=bold
fontstyle=italic;
style systemfooter /
backgroundcolor=white
fontsize=2
fontstyle=italic;
style proctitle /
backgroundcolor=white
color=#6078bf
fontweight=bold
fontstyle=italic;
end;