How can we change the color of the icon in the upper right corner that hides and displays dashboardControlbar() in shinydashboardPlus()?
## app.R ##
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
ui <- dashboardPage(
dashboardHeader(
),
dashboardSidebar(),
dashboardBody(
),
controlbar = dashboardControlbar()
)
server <- function(input, output) {
}
shinyApp(ui = ui, server = server)