I am trying to change the theme of my R Shiny application to "Minty" from the bootswatch theme website: https://bootswatch.com/. However, when I use the shinythemes argument in my code, the theme is not adjusted when I run the application. Any help appreciated.
Update: I was able to get the theme working using the suggestions below, but it doesn't really look similar in terms of color and the navigation bar.

Minty isn't included in
shinythemesso something likefluidPage(theme = shinytheme("minty"), ...)won't work. You can add a theme to your app manually by:1) Downloading the .css file from bootswatch
2) Placing that .css file in the www/ directory associated with your app as follows:
myapp
|-- server.R
|-- ui.R
|-- www/ > mytheme.css
3) Modifying your ui code to include this:
Adapted from here (scroll down)