A customized shinydashboard theme based on the Nord color palette.
library(devtools)
install_github("nik01010/dashboardthemes")
library(dashboardthemes)
Create a new script with your custom theme and/or logo. Then at the top of the app.R file (or in UI file), source the script.
source("./Covid19Dash/theme_diy.R")
To add a custom logo to dashboard
### calling custom logo object in shinydashboard
...
### ui
ui <- dashboardPage(
### ui header
dashboardHeader(
### changing logo
title = logo_blue_gradient
...
To add a custom theme
### calling custom theme object in shinydashboard
...
### ui body
dashboardBody(
### changing theme
theme_blue_gradient
### ui tabs
,tabItems(
tabItem(
...
Based on the dashboardthemes package by nik01010 and the Nord color palette.