Closed cpsievert closed 3 years ago
BS3's .navbar-inverse is based on the $success theme color
.navbar-inverse
$success
ui <- navbarPage( inverse = TRUE, theme = shinythemes::shinytheme("darkly"), tabPanel("A", "a") ) shinyApp(ui, function(...) {})
However, with bslib, it's currently based on $light:
$light
ui <- navbarPage( title = "foo", inverse = TRUE, theme = bslib::bs_theme(version = 5, bootswatch = "darkly"), tabPanel("A", "a"), tabPanel("B", "b") ) shinyApp(ui, function(...) {})
This issue has been automatically locked. If you believe you have found a related problem, please open a new issue (with a reproducible example or feature request) and link to this issue.
BS3's
.navbar-inverse
is based on the$success
theme colorHowever, with bslib, it's currently based on
$light
: