auto_resolve_theme | R Documentation |
Resolves 'auto'
values based on the current execution environment
and configuration (i.e., auto_config_get()
).
auto_resolve_theme(theme)
theme |
a |
The theme
object with resolved 'auto'
values.
auto_config_set()
old_config <- auto_config_set(auto_config(bg = "black", fg = "white"))
# Resolving auto values in local theme objects
theme <- thematic_theme()
theme[c("bg", "fg")]
theme <- auto_resolve_theme(theme)
theme[c("bg", "fg")]
# By default, auto values are resolved when accessing
# global theme options
thematic_on()
thematic_get_option("bg", resolve = FALSE)
thematic_get_option("bg")
thematic_off()
auto_config_set(old_config)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.