/***************************************************************/ /* This program changes the default window color preferences */ /* to the default colors for Release 6.09. */ /* */ /* You can change the colors to reflect your own personal */ /* preferences. You can return to the SAS System default */ /* values by deleteing the .WSAVE entries from your */ /* SASUSER.PROFILE catalog. */ /***************************************************************/ dm 'manager; color banner white; color command white; color message white;'; dm 'manager; color mark white reverse; color text white; color background black;'; dm 'manager; wsave; manager off'; dm 'var; color banner white; color command white; color message white;'; dm 'var; color mark white reverse; color text yellow; color background blue; wsave; end'; dm 'notepad; color banner white; color command white; color message white; color mark white reverse;'; dm 'notepad; color text white; color nums white; color background red; wsave; end'; dm 'title; color banner white; color command white; color message white;'; dm 'title; color mark white reverse; color text yellow; color background green; wsave; end'; dm 'footnote; color banner white; color command white; color message white;'; dm 'footnote; color mark white reverse; color text yellow; color background green; wsave; end'; dm 'keys; color banner white; color command white; color message white;'; dm 'keys; color mark white reverse; color text yellow; color background magenta; wsave; end'; proc gtestit pic=1; run; dm 'graph1; color banner white; color command white; color message white;'; dm 'graph1; color mark white reverse; color background black; wsave; cancel'; dm 'output; color banner white; color command white; color message white; color mark white reverse; color byline white'; dm 'output; color data black; color footn blue; color header blue;'; dm 'output; color title blue; color error white; color background cyan; wsave'; dm 'log; color banner white; color command white; color message white; color mark blue reverse; color error red;'; dm 'log; color note black; color source blue; color warning yellow; color data blue; color backg gray; wsave;'; dm 'pgm; color banner white; color command white; color message white; color mark white reverse;'; dm 'pgm; color text white; color nums white; color background blue; wsave';