An Rstudio version of @dempfi simple ayu sublime theme.
- Have yet to implement any ui components
Run in Rstudio
- Install
rstudioapi
install.packages("rstudioapi")
- Install desired themes. mirage is my personal favorite :)
library(rstudioapi)
# mirage
addTheme("https://raw.githubusercontent.com/davidgibsonp/ayu-rstudio/master/rstheme/ayu-mirage.rstheme",
apply = TRUE, force = TRUE)
# light
addTheme("https://raw.githubusercontent.com/davidgibsonp/ayu-rstudio/master/rstheme/ayu-light.rstheme",
apply = TRUE, force = TRUE)
# dark
addTheme("https://raw.githubusercontent.com/davidgibsonp/ayu-rstudio/master/rstheme/ayu-dark.rstheme",
apply = TRUE, force = TRUE)