<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Changing ODS Html background color in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Changing-ODS-Html-background-color/m-p/649825#M194854</link>
    <description>&lt;P&gt;Here is an example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
	define style Styles.Custom;
	parent = Styles.Default;
	style data / backgroundcolor=yellow; /*&amp;lt;- to be customized */
	end;
run;

ods html file="your_path/your_report.html" style=custom;
	proc print data=sashelp.class;
	run;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 22 May 2020 10:12:19 GMT</pubDate>
    <dc:creator>ed_sas_member</dc:creator>
    <dc:date>2020-05-22T10:12:19Z</dc:date>
    <item>
      <title>Changing ODS Html background color</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-ODS-Html-background-color/m-p/649771#M194838</link>
      <description>&lt;P&gt;I am pointing a report from PROC REPORT to the HTML destination.&amp;nbsp; How do I change the background color of the HTML page?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods html file='path';&lt;/P&gt;&lt;P&gt;title&amp;nbsp;&amp;nbsp;&amp;nbsp; 'title';&lt;/P&gt;&lt;P&gt;Proc Report data=...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2020 03:37:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-ODS-Html-background-color/m-p/649771#M194838</guid>
      <dc:creator>Sarah-R</dc:creator>
      <dc:date>2020-05-22T03:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Changing ODS Html background color</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-ODS-Html-background-color/m-p/649821#M194853</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/326171"&gt;@Sarah-R&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use PROC TEMPLATE to define your own style options, and then use this style in the ODS HTML statement.&amp;nbsp;Here is an example:&amp;nbsp;&lt;A href="https://support.sas.com/kb/23/420.html" target="_blank"&gt;https://support.sas.com/kb/23/420.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2020 10:05:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-ODS-Html-background-color/m-p/649821#M194853</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-22T10:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Changing ODS Html background color</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-ODS-Html-background-color/m-p/649825#M194854</link>
      <description>&lt;P&gt;Here is an example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
	define style Styles.Custom;
	parent = Styles.Default;
	style data / backgroundcolor=yellow; /*&amp;lt;- to be customized */
	end;
run;

ods html file="your_path/your_report.html" style=custom;
	proc print data=sashelp.class;
	run;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 May 2020 10:12:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-ODS-Html-background-color/m-p/649825#M194854</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-22T10:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Changing ODS Html background color</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-ODS-Html-background-color/m-p/649938#M194884</link>
      <description>&lt;P&gt;ODS Html comes with a pre-defined set of styles.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here they are:&lt;/P&gt;&lt;P&gt;default&lt;/P&gt;&lt;P&gt;statistical&lt;/P&gt;&lt;P&gt;analysis&lt;/P&gt;&lt;P&gt;journal&lt;/P&gt;&lt;P&gt;journal2&lt;/P&gt;&lt;P&gt;rtf&lt;/P&gt;&lt;P&gt;listing&lt;/P&gt;&lt;P&gt;htmlblue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way you use it is:&lt;/P&gt;&lt;P&gt;ods html style=default; (example using the first listed style)&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2020 15:46:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-ODS-Html-background-color/m-p/649938#M194884</guid>
      <dc:creator>Sarah-R</dc:creator>
      <dc:date>2020-05-22T15:46:28Z</dc:date>
    </item>
  </channel>
</rss>

