Home > other >  R presentation (rpres) goes black in full screen mode
R presentation (rpres) goes black in full screen mode

Time:08-12

Whenever I take an .Rpres file full screen under the latest RStudio (v0.99.902) on macOS every slide after the intro has a black overlay that does not disappear.

While the window is minimized we have:

[Windowed Rpres]

Under full screen mode (press f), switching from the title slide to the subsequent slides yields:

enter image description here

This made my slides full-screen (with the nice white background), then I could use F11 to toggle off the full-screen option. Does this work for other folks?

CodePudding user response:

Explicitly adding font and background colors in custom.css worked for me.

.reveal .state-background {
  background: white;
} 
.reveal {
  color: black;
}

(You also obviously have to add css: custom.css under the title slide's title.)

  • Related