render_sass <- function(file, output = NULL, outdir = "dist") { if (is.null(output)) { output <- fs::path_file(file) fs::path_ext(output) <- "rstheme" } output <- fs::path(outdir, output) # cliapp::cli_alert_success("{path {fs::path_rel(file, getwd())}}") sass::sass(sass::sass_file(paste(file)), output = output) } get_theme_name <- function(file) { x <- readLines(file, warn = FALSE) x <- grep("rs-theme-name", x, value = TRUE) if (!length(x)) return("") x <- sub("^\\s*/\\*\\s*rs-theme-name:\\s", "", x) x <- sub("\\s*\\*/\\s*$", "", x) x } cp_to_rstudio <- function(file) { # cliapp::cli_alert("{arg \"{get_theme_name(file)}\"}") fs::file_copy( file, fs::path_home_r(".R", "rstudio", "themes", fs::path_file(file)), overwrite = TRUE ) } make_base16_theme <- function(palette_file) { base16_palette <- fs::path_file(palette_file) base16_info <- get_base16_theme_info(palette_file) base16_attribution <- base16_info$attribution base16_rstudio_style <- base16_info$rstudio_style base16_name <- base16_info$name base16_theme <- whisker::whisker.render( readLines(here::here("src/base16/base16_template.scss"), warn = FALSE) ) base16_theme_file <- sub("^_", "", base16_palette) # cliapp::cli_alert("Creating src/{arg {base16_theme_file}}") writeLines(base16_theme, fs::path(here::here("src", base16_theme_file))) } get_base16_theme_info <- function(palette_file) { info <- list() base16_meta <- readLines(palette_file, n = 2) info$attribution <- base16_meta[1] info$rstudio_style <- base16_meta[2] if (base16_meta[2] == "") { info$rstudio_style <- "/* rs-theme-is-dark: TRUE */" } info$name <- stringr::str_match(info$attribution, "\\s*([\\w ]+) by")[1, 2] info }