auto_resolve_theme {thematic} | R Documentation |
Resolve auto values
Description
Resolves 'auto'
values based on the current execution environment
and configuration (i.e., auto_config_get()
).
Usage
auto_resolve_theme(theme)
Arguments
theme |
a |
Value
The theme
object with resolved 'auto'
values.
See Also
Examples
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)
[Package thematic version 0.1.6 Index]