Full RStudio port of Mattia Astorino's Material Theme.
Material: Material Darker: Material Palenight: Material Ocean: Material Lighter:To install, download the folder, unzip, and open RStudio. From RStudio click Preferences, Appearance, Add, and then navigate to the rstheme for the theme that you'd like to install. Click apply.
If you're comfortable installing from the console and have Devtools installed then you can copy the following into your console:
Material:
rstudioapi::addTheme("https://raw.githubusercontent.com/lusignan/RStudio-Material-Theme/main/material.rstheme", apply = TRUE)
Darker:
rstudioapi::addTheme("https://raw.githubusercontent.com/lusignan/RStudio-Material-Theme/main/material-darker.rstheme", apply = TRUE)
Palenight:
rstudioapi::addTheme("https://raw.githubusercontent.com/lusignan/RStudio-Material-Theme/main/material-palenight.rstheme", apply = TRUE)
Ocean:
rstudioapi::addTheme("https://raw.githubusercontent.com/lusignan/RStudio-Material-Theme/main/material-ocean.rstheme", apply = TRUE)
Lighter:
rstudioapi::addTheme("https://raw.githubusercontent.com/lusignan/RStudio-Material-Theme/main/material-lighter.rstheme", apply = TRUE)
- Theme by Mattia Astorino
- RStudio port was largely built using Garrick Aden-Buie's rsthemes package
- Sample code comes from R for Data Science