The color currently being used for functions in the code box makes them look like errors.
Instead of this dark red (https://www.colorbook.io/hexcolors/view/dd4a68) can we update the CSS file https://communities.sas.com/html/assets/prism.css to use a different color?
.token.function,
.token.class-name {
color: #DD4A68;
}
Better now @Tom ?
(And @novinosrin ? -- you had a similar comment recently.)
/* Establish date ranges to query - month ranges */
data ranges(keep=start_date end_date);
start_date = '01jun2019'd;
end_date = intnx('month',start_date,0,'E');
format start_date YYMMDD10. end_date YYMMDD10.;
do until (intnx('month',start_date,0,'B') > today());
output;
start_date = intnx('month',start_date,1,'B');
end_date = intnx('month',start_date,0,'E');
end;
run;
Better now @Tom ?
(And @novinosrin ? -- you had a similar comment recently.)
/* Establish date ranges to query - month ranges */
data ranges(keep=start_date end_date);
start_date = '01jun2019'd;
end_date = intnx('month',start_date,0,'E');
format start_date YYMMDD10. end_date YYMMDD10.;
do until (intnx('month',start_date,0,'B') > today());
output;
start_date = intnx('month',start_date,1,'B');
end_date = intnx('month',start_date,0,'E');
end;
run;
Thank you Sir @ChrisHemedinger . Yes indeed. In my humble opinion, it's not satisfactory to have red fonts and if we possible can we please replicate just the same font as it exists in SAS EG code editor environment or at least something like NOTEPAD++ (Sql font) which is closer and cleaner. Thank you for your attention.
Still looks RED to me. (2020-05-20 12:09)
In IE 11 the color is different.
Probably a cache delay. Our community site assets are served via a CDN for faster delivery, and sometimes these nodes take a bit of time to invalidate/fetch new content.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.