View source: R/xlsx_color_theme.R
xlsx_color_theme | R Documentation |
xlsx_color_theme()
(alias xlsx_colour_theme()
returns the names and RGB
values of theme colours defined in xlsx (Excel) files. For example,
"accent6"
is the name of a theme colour in Excel, which could resolve to
any RGB colour defined by the author of the file. Themes are often defined
to comply with corporate standards.
xlsx_color_theme(path, check_filetype = TRUE)
xlsx_colour_theme(path, check_filetype = TRUE)
path |
Path to the xlsx file. |
check_filetype |
Logical. Whether to check that the filetype is xlsx (or xlsm) by looking at the file itself, rather than using the filename extension. |
A data frame, one row per colour, with the following columns.
name
The name of the theme.
rgb
The RGB colour that has been set for the theme in this file.
examples <- system.file("extdata/examples.xlsx", package = "tidyxl")
xlsx_color_theme(examples)
xlsx_colour_theme(examples)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.