Hi all,
With the below code, I am getting the default colour as grey (main page). Is there a way to change this white instead of grey?
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody()
)
server <- function(input, output) { }
shinyApp(ui, server)