Use a Custom Style for Your Output

When you need to use a custom ODS style such as a corporate style for your results in SAS Studio, you must open your own ODS destination. You cannot specify a custom style for the default results. Use the STYLE= option in your ODS statement to specify your custom style. Here is an example:
filename odsout ="&_SASWS_/charts";
ods _all_ close;
ods html path=odsout file="filename.htm" style=style-name;
To create a custom style, use the ODS TEMPLATE procedure, CSSStyles, or the STYLE= option. For more information, see SAS Output Delivery System: User's Guide.