fresh (version 0.1.0)

vars_file: SCSS variables from a file

Description

SCSS variables from a file

Usage

vars_file(input_file)

Arguments

input_file

Path to SCSS file containing variables to use for creating a theme.

Value

a list that can be used in create_theme.

Examples

Run this code
# NOT RUN {
# Open template and edit variables
use_vars_template(
  output_file = "custom.scss",
  theme = "flatly"
)

# Create new theme based on the modified template
create_theme(
  theme = "flatly",
  vars_file(input_file = "custom.scss"),
  output_file = "mytheme.css"
)

# }

Run the code above in your browser using DataCamp Workspace