EVOLUTION-MANAGER
Edit File: app.R
library(shiny) library(bslib) library(ggplot2) library(lattice) library(thematic) library(rlang) library(curl) library(DT) library(knitr) library(reactable) theme <- bs_theme( bg = "#202123", fg = "#B8BCC2", primary = "#EA80FC", secondary = "#00DAC6", success = "#4F9B29", info = "#28B3ED", warning = "#FD7424", danger = "#F7367E", base_font = font_google("Open Sans"), heading_font = font_google("Proza Libre"), code_font = font_google("Fira Code") ) old_theme <- bs_global_get() bs_global_set(theme) onStop(function() bs_global_set(old_theme)) bslib:::as_themer_app( system.file("themer-demo", package = "bslib") )