I am trying to change the color of the action button from gray to orange.
actionButton(\"run\",\"Run Analysis\")
(This is in server.R
server.R
You can use boostrap colors in the class attribute:
class
actionButton("run","Run Analysis", class = "btn-warning")
These are basic colors only but really usefull for graphic standards.