Questions tagged [shinythemes]

shinythemes is an R package that makes it easy to alter the overall appearance of your Shiny applications

16 questions
14
votes
3 answers

Shinydashboard and shinytheme?

I've made a dashboard with shinydashboard and really like the ease of making a layout with the package! However, I'd like to use one of the themes from the shinythemes package. I'm familiar with the shinydashboard skins, but they aren't nearly as…
grapher
  • 165
  • 1
  • 1
  • 6
5
votes
2 answers

How do I use the Bootswatch theme "Minty" in my R Shiny application?

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…
AyeTown
  • 831
  • 1
  • 5
  • 20
3
votes
2 answers

How to modify the themes of shinythemes?

How to modify the themes of shinythemes? For example, let us assume I want to change darkly's background black. library(shiny) library(shinythemes) ui <- fluidPage( theme = shinytheme("darkly"), "How to change this black?") server <-…
Joe
  • 1,628
  • 3
  • 25
  • 39
2
votes
1 answer

DataTable in Shiny with shinytheme cyborg

trying to get a dark theme to work with datatables (DT) package in a shiny application. I've tried shinytheme("cyborg") and also downloading the cyborg CSS sheet from Bootswatch, (for call in datatables, style="bootstrap") but it doesn't seem to…
anweb
  • 63
  • 8
2
votes
1 answer

Overriding CSS in Shiny progress bar

I am trying to understand why there is a gray background in my progress bar (created using timer.js). I've tried changing the background-color, background-style to none or #FFFFFF, but the gray background is still there. server.R function(input,…
Ketty
  • 811
  • 10
  • 21
2
votes
1 answer

shinythemes not kicking in

I am using the library shinythemes and creating an UI with theme "united" For some reason I cannot see this theme applied to my Shiny UI, below is my UI code. ui = shinyUI(fluidPage(theme=shinytheme("united"), title =…
Heather Keturah
  • 139
  • 1
  • 9
1
vote
2 answers

How to change the color of the Shinymanager Login Page?

I am trying to change the color tone of the login page from the shinymanager package. I have seen these posts: Change Text and Colors in Shinymanager Login Page Change the color tone of a shinytheme How to style shimymanager login screen with CSS…
emr2
  • 1,436
  • 7
  • 23
1
vote
1 answer

Shiny app with theme can't change button background color

I'm trying to change the background color of a button in a Shiny app, but for some reason I can't make the color change. When I look at the html, I can't even find an id for the button, I only see an id for the text inside the button. I think this…
Frank
  • 952
  • 1
  • 9
  • 23
1
vote
1 answer

How to apply bootstrap theme to buttons in a DT table

I have a shiny app that presents data in a DT-Table. I use the Buttons extension in order to include a "Select All" and a "Deselect All" button and shinythemes to apply a bootstrap theme. I assign a class to the two DT-buttons in order to format…
Stibu
  • 15,166
  • 6
  • 57
  • 71
1
vote
1 answer

Change the color tone of a shinytheme

Friends, is it possible to change the color tone of a shinytheme used? In my case I am using "united" which uses orange and gray. However I would like to make a slightly darker orange, is it possible to make this change? If so, can you please help…
Antonio
  • 1,091
  • 7
  • 24
1
vote
1 answer

Formatting RHandsontable with ShinyThemes

I am trying to format a dropdown list in RHandsontable to no avail. Here is some reproduceable code: library(shiny) library(dplyr) DF <- data.frame(Value = 1:10) choices <- 1:20 ui <- shinyUI(fluidPage(theme = shinytheme("darkly"), …
Caleb
  • 91
  • 10
0
votes
1 answer

R Shiny App : override button background color while using a shinytheme

Does anyone know how I can override background color of buttons in a R Shiny App while using shinythemes ? I have tried tons of css since hours without success... I am getting crazy... I would be very grateful if anyone could help. Here below an…
mazu
  • 147
  • 6
0
votes
0 answers

Is there a way of getting renderValueBox() to be compatible with Shiny Theme?

I'm currently developing a dashboard that displays value boxes that are either green or red depending if they're positive/negative. This functions perfectly without using shiny themes but as soon as I use it I lose the color in the value box and it…
0
votes
1 answer

Having trouble running Shiny app script for mini meta analysis

I'm trying to load a script from a seminar on meta analysis, which supposedly gives you an app/tool to run meta analysis. The script looks like…
Shawn Hemelstrand
  • 2,676
  • 4
  • 17
  • 30
0
votes
0 answers

Warning: Error in library: there is no package called ‘shinythemes’ when trying to deploy shinyapp in ec2 aws

I´m deploying a shiny app using docker in aws but I can´t access to it because the error "Warning: Error in library: there is no package called ‘shinythemes’" keeps showing up. the…
1
2