Create the MyStyle style template. The MyStyle style templates modifies the Usertext style element to change the font color of text created by the TEXT= statement to red.


proc template;
   define style mystyle;
   parent=styles.default;
   style usertext from usertext /
      foreground=red;
   end;
run;