fresh (version 0.1.0)

use_vars_template: Use a template to define SCSS variables

Description

Open a SCSS template to modify variable, after use vars_file to import variables and create a theme.

Usage

use_vars_template(output_file, theme = c("default", "cerulean", "cosmo",
  "cyborg", "darkly", "flatly", "journal", "lumen", "paper", "readable",
  "sandstone", "simplex", "slate", "spacelab", "superhero", "united",
  "yeti"), open = interactive())

Arguments

output_file

Path where to create the template, use ".scss" as file extension.

theme

Base theme to use, e.g. "cosmo" to start modifying the cosmo theme.

open

Open the newly created file for editing? Happens in RStudio, if applicable, or via utils::file.edit() otherwise.

Examples

Run this code
# NOT RUN {
# this will open a template
# to modify variables of the flatly theme
use_vars_template(
  output_file = "custom.scss",
  theme = "flatly"
)

# after use vars_file() to use the template

# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace