In ODS HTML output, how can I modify the background color of the table of contents?


Specify a new argument to the BACKGROUND= attribute within the style element Contents. Below is an example.

   proc template;
      define style styles.test;
      parent=styles.default;
         style contents from contents /
               background=red;
      end;
   run; 

See also the full SAS Notes and Concepts for ODS.