create_pretty: Create a custom CSS file for pretty-checkbox

Description Usage Arguments Value Examples

View source: R/create_pretty.R

Description

This allow you to change colors of prettyCheckbox, prettyRadioButtons

Usage

1
2
3
4
5
6
7
8
9
create_pretty(
  output_file,
  default = NULL,
  primary = NULL,
  success = NULL,
  info = NULL,
  warning = NULL,
  danger = NULL
)

Arguments

output_file

Specifies path to output file for compiled CSS.

default

Default color.

primary

Primary color.

success

Success color.

info

Info color.

warning

Warning color.

danger

Danger color.

Value

If output_file = NULL, the function returns a string value of the compiled CSS. If the output path is specified, the compiled CSS is written to that file and invisible() is returned.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Temporary file
tmp <- file.path(tempdir(), "my-pretty.css")

# Create the new theme
create_pretty(
  output_file = tmp,
  primary = "#FFFF00"
)

# Clean
unlink(tmp)

fresh documentation built on July 2, 2020, 1:59 a.m.