BookmarkSubscribeRSS Feed

It would be nice to have some dark or customizable themes for SAS Studio. Since it works in the browser some browser extensions can be used, but having customizable settings in the IDE would help for programmers moving from other IDE's. 

 

 

 

2 Comments
ChrisHemedinger
Community Manager
Status changed to: Under Consideration

Hi @Reeza - marking this Under Consideration now, but some of it is actually delivered already:

  • SAS Studio v5.x (for SAS Viya) has two themes, and a 3rd is planned (dark theme called Ignite).
  • Themes will also be part of the new SAS Enterprise Guide
  • The SAS Studio code editor options have/will have ability to customize colors/styles
  • SAS provides a Theme Builder for its latest HTML5-based apps (include SAS Studio, SAS Visual Analytics, etc.)
RobP
Quartz | Level 8

If you don't have access to these, and happen to be using Studio in Chrome, and are lazy like me, then in the meantime I've found that the Dark Reader plugin does an excellent job of applying a dark theme to Studio.  You do need to make a couple of tweaks though, place these styles into the top of the custom configuration section (by clicking on the dev tools button):

 

https://yoursasstudiodomain/SASStudio

CSS
::-moz-selection {
background: rgb(220, 220, 220) !important;
color: white !important;
}
::selection {
background: rgb(220, 220, 220) !important;
color: white !important;
}

.matchingSearch {
background: rgb(0, 56, 168) !important;
}

==================